#logo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensure it's on top of everything */
  opacity: 1;
  transition: opacity 0.5s ease;
  /* Transition for fade-out effect */
}

#logo {
  max-width: 500px;
  /* max-height: 90%; */
  /* animation : logoAnimation 2s ease-in-out; Apply the animation */
}

/* Keyframes for the logo animation */
@keyframes logoAnimation {
  0% {
    transform: scale(1);
    /* Initial size */
  }

  50% {
    transform: scale(1.1);
    /* Scale up slightly */
  }

  100% {
    transform: scale(1);
    /* Return to original size */
  }
}

/* ======= header ========= */

header {
  color: #fff;

  .main-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-header {
    padding: 10px 0px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    background-color: #222a92;
  }

  .shop-details {
    display: flex;
    gap: 20px;
    align-items: center;

    a {
      display: flex;
      gap: 10px;
      align-items: center;
    }
  }

  .shop-product-icon {
    display: flex;
    gap: 20px;
    font-size: 20px;
  }

  a {
    color: #fff;
  }

  .main-bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    img {
      width: 300px;
    }
  }

  .bottom-header {
    border-bottom: 2px solid #ccc;
    background: #f4f4f4;
    transition: all 0.3s linear;
  }

  .primary-menu {
    display: flex;
    align-items: center;
    gap: 20px;

    ul {
      display: flex;
      gap: 10px;

      a {
        padding: 8px 15px;
        color: #000;
      }
    }
  }

  .social-media {
    display: flex;
    align-items: center;
    gap: 20px;

    img {
      width: 26px;
    }
  }

  .bottom-header {
    padding: 15px 0px 15px;
  }

  .left {
    display: flex;
    gap: 40px;
  }

  .header-cart-info {
    display: flex;
    gap: 20px;
    font-size: 20px;
    justify-content: center;
    align-items: center;
  }

  .header-cart {
    position: relative;
  }

  #cartCount {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1f2795;
    border-radius: 50px;
    padding: 2px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.mobile-view-1 {
  display: none;
}

/* ========== banner ========= */

.hero-section {
  padding: 40px 0px;

  .main-hero-section {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .banner {
    width: 65%;
    /* height: 100%; */
  }

  /* .phone-banner{
        display: none;
    } */

  /* .phone-view {
        display: none !important;
    } */

  .banner-item {
    height: 100%;
    position: relative;

    .item {
      height: 100%;
      overflow: hidden;

      a {
        display: block;
        height: 100%;
      }

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all 0.2s linear;
      }
    }

    .item:hover img {
      /* transform: scale(1.3); */
    }

    .owl-dots {
      position: absolute;
      top: 0;
      background-color: #fff;
      margin-top: 0px !important;
      display: flex;
      flex-direction: column;
      padding: 10px;

      .owl-dot span {
        width: 28px;
        height: 5px;
        /* background-color: #0f0c29; */
      }

      .owl-dot.active span {
        background-color: #1f2795;
      }
    }

    .owl-carousel .owl-stage-outer {
      height: 100%;
    }

    .owl-carousel .owl-stage {
      height: 100%;
    }

    .owl-carousel.owl-drag .owl-item {
      height: 100%;
    }
  }

  .popular-categories {
    width: 35%;

    .popular-items {
      display: grid;
      grid-template-rows: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .item {
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;

      a {
        display: flex;
      }

      .item-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        padding: 20px;
        width: 100%;
        height: 100%;
        gap: 10px;

        /* background: #00000042; */
        a {
          color: #ffffff;
        }

        h6 {
          font-weight: 600;
          font-size: 26px;
          text-shadow: 0px 2px 10px #222;
        }

        .po-cate-btn {
          background-color: #1f2795;
          padding: 5px 10px;
          color: #fff;
          transition: all 0.2s linear;
        }

        .po-cate-btn:hover {
          background-color: var(--secondary-color);
        }
      }

      img {
        transition: all 0.2s linear;
      }
    }

    .item:hover img {
      transform: scale(1.1);
    }
  }
}

/* ========== support_block =========== */

.main-support {
  display: flex;
  gap: 30px;

  .support-item {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px 20px;
    border-right: 1px solid #ccc;
  }

  .icon img {
    width: 54px;
  }

  .support-item:nth-last-child(1) {
    border: none;
  }

  .support-item-content {
    span {
      color: #848484;
      font-size: 14px;
    }
  }
}

/* ========== Categories ========= */

.home-shop-categories {
  padding: 80px 0px 0px;

  h3 {
    text-align: center;
  }

  .main-categories {
    margin-top: 40px;
  }

  .single-item-img {
    display: flex;

    img {
      transition: all 0.2s linear;
    }
  }

  .categorie-single-item {
    overflow: hidden;
  }

  .categories-items {
    display: flex;

    .item {
      position: relative;
    }

    .single-item-content {
      position: absolute;
      bottom: 50px;
      width: 100%;
      text-align: center;
    }
  }

  .categorie-single-item:hover img {
    transform: scale(1.1);
  }
}

.marquee-tagline {
  padding: 20px 0px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.91));

  .main-marquee {
    display: flex;
    gap: 40px;
    font-size: 40px;
    color: #fff;
    align-items: center;
  }
}

.about-us {
  padding: 100px 0px;

  .main-about-us {
    display: flex;
    align-items: center;
    gap: 50px;

    .about-img {
      width: 50%;
      background: url(../upload/icon/element-1-2.png);
      background-position: center;
      background-size: contain;
      display: flex;
      align-items: center;
      gap: 30px;

      img {
        border-radius: 20px;
      }

      .single-img {
        width: 50%;
      }

      .group-img {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }
    }

    .about-content {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: self-start;
      gap: 20px;
    }
  }
}

.our-products {
  padding: 100px 0px;

  .our-product-heading {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color:#fed400;
  }

  .main-products {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
  }

  .item {
    padding: 20px;
    background: #e7e7e7;
    border-radius: 15px;

    .img-box {
      border-radius: 8px;
      overflow: hidden;
      display: flex;

      img {
        transition: all 0.4s linear;
      }
    }

    .product-content {
      padding: 20px 0px 0px;
      text-align: center;

      .product-title {
        font-size: 22px;
      }
    }
  }

  .item:hover img {
    transform: scale(1.1);
  }
}

.how-we-work {
  padding: 100px 0px;
  background: #000;
  background-image: url(../upload/icon/bg-3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90% auto;
  /*opacity: 0.8;*/
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.we-work-heading {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-call {
  font-size: 14px;

  a {
    color: #000;
  }

  a:hover {
    color: #222a92;
  }
}

.main-how-we-work {
  display: flex;
  gap: 50px;
  margin-top: 80px;
}

.step {
  border-radius: 20px;
  padding: 0px 20px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #222a92;
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgb(251, 215, 6);

  h5 {
    font-size: 24px;
    color: #fbd706;
    margin: 14px 0px;
  }

  p {
    font-size: 14px;
    color: #fff;
  }

  img {
    width: 80%;
  }

  .step-count {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    padding: 10px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
}

.step-1 {
  .step-count {
    background-color: #000;
  }
}

.step-3 {
  .step-count {
    background-color: #000;
  }
}

.about-us.according {
  .about-img {
    width: 50%;
    background: url(../upload/icon/element-2-2.png);
    background-position: center;
    background-size: contain;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

footer {
  .main-top-footer {
    display: flex;
    gap: 40px;
    padding: 50px 0px;
  }

  .item-box {
    flex: 1;
    flex-shrink: 0;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgb(238, 191, 8);

    h5 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #000000;
    }

    ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    a {
      color: #000000;
    }

    p {
      color: #000;
    }
  }

  .box1 {
    a {
      font-size: 18px;
    }
  }

  .box2 {
    .item-contact {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .item-contact:nth-child(3) {
      margin: 15px 0px;
    }

    .icon {
      width: 50px;
      height: 50px;
      background-color: #000;
      color: #fff;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .content {
      display: flex;
      /* flex-direction: column; */
      font-size: 18px;
      color: #000;

      a {
        font-size: 16px;
      }
    }
  }

  .box3 {
    ul {
      margin-top: 15px;
      font-size: 18px;
      justify-content: center;
    }
  }

  .bottom-footer {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 15px 0px;

    a {
      color: #fff;
    }
  }

  .main-bottom-footer {
    text-align: center;

    img {
      width: auto;
      margin-top: 10px;
    }
  }
}

.prodcut-section {
  padding: 100px 0;

  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .section-title h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .section-title p {
    font-size: 1.1rem;
    color: #fed400;
    max-width: 700px;
    margin: 0 auto;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4858d6, #1f2795);
    margin: 15px auto;
    border-radius: 2px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .product-content {
    padding: 20px;
  }

  .product-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }

  .product-description {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .product-features {
    margin-bottom: 20px;
  }

  .product-features li {
    list-style: none;
    padding: 5px 0;
    color: #34495e;
  }

  .product-features li i {
    color: #4555d5;
    margin-right: 8px;
  }

  .product-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #4858d6, #1f2795);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .product-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  }

  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }

  .product-price {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
  }

  @media (max-width: 768px) {
    .products-grid {
      grid-template-columns: 1fr;
    }

    .section-title h2 {
      font-size: 2rem;
    }
  }

  .inspiration-text {
    text-align: center;
    margin-top: 60px;
    padding: 28px;
    background: #000;
    border-radius: 12px;
    color: white;
  }

  .inspiration-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .inspiration-text p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }
}

.inner-section {
  padding: 150px 0 50px;
  text-align: center;
  background-image: url("../upload/banner/inner-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

.inner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.banner-content h3 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  display: inline-flex;
  background-color: #fff;
  border-radius: 50px;
  padding: 8px 35px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inner-heading {
  list-style: none;
  font-size: 0.9rem;
}

.inner-heading a {
  color: #1f2795;
  text-decoration: none;
  transition: all 0.3s ease;
}

.inner-heading a:hover {
  color: #000;
}

.inner-heading.active {
  color: #000;
}

.inner-heading + .inner-heading::before {
  content: ">";
  padding: 0 10px;
  color: #888;
}

.content-1 {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}

.content__text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  animation: fadeIn 1s ease-out;
}

.content__image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideIn 1s ease-out;
}

.content__image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.heading--secondary {
  color: #000;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #4a6491;
}

.paragraph {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #000;
}

.services {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.services__item {
  background: #f8f9fa;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.services__item:hover {
  background: #e9ecef;
}

.social {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  animation: fadeUp 1s ease-out;
}

.social__title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.social__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social__icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social__icon--facebook {
  background: linear-gradient(45deg, #3b5998, #4a69bd);
}

.social__icon--instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social__icon--twitter {
  background: linear-gradient(45deg, #1da1f2, #0097e6);
}

.social__icon--youtube {
  background: linear-gradient(45deg, #ff0000, #e84118);
}

.social__icon--pinterest {
  background: linear-gradient(45deg, #bd081c, #e84118);
}

.cta {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(to right, #e4c40b, #f7f7f7);
  color: white;
  border-radius: 10px;
  animation: pulse 2s infinite;
}

.cta__button {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: #1f2795;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(44, 62, 80, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .content__image-placeholder {
    height: 300px;
  }
}

/* contact us start here  */
.contact-section {
  padding: 60px 0;
}

.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h3 {
  font-size: 36px;
  color: #1f2795;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-heading h3:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #1f2795;
  bottom: -10px;
  left: 20%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  background: linear-gradient(135deg, #1f2795 0%, #000 100%);
  color: #fff;
  padding: 40px;
  min-width: 300px;
}

.contact-form {
  flex: 1.5;
  padding: 40px;
  min-width: 300px;
}

.info-header {
  margin-bottom: 30px;
}

.info-header h3 {
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.info-header h3:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background: #fff;
  bottom: -8px;
  left: 0;
}

.contact-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.detail-icon {
  margin-right: 15px;
  font-size: 20px;
  color: #fff;
  min-width: 25px;
  text-align: center;
}

.detail-content {
  flex: 1;
}

.detail-content h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.detail-content p,
.detail-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.detail-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.form-title {
  font-size: 24px;
  color: #1f2795;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.form-title:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background: #1f2795;
  bottom: -8px;
  left: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-col {
  flex: 1;
  padding: 0 10px;
  min-width: 250px;
}

.form-col label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.required {
  color: #e74c3c;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #1f2795;
  box-shadow: 0 0 0 2px rgba(31, 39, 149, 0.2);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #1f2795 0%, #000 100%);
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 39, 149, 0.3);
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

/* categories start here  */
/* Categories Toggler Styles */
.categories-toggler {
  position: relative;
  margin-right: 30px;
}

.categories-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgb(0 0 0 / 82%);
  color: #000000;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s;
}

.categories-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.categories-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.categories-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

.categories-toggler:hover .categories-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-item {
  padding: 12px 25px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  color: #333;
  text-decoration: none;
}

.category-item:hover {
  background: #f1f5f9;
  color: #1f2795;
}

.category-item i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  color: #1f2795;
}
.has-submenu {
  position: relative;
}

/* Submenu box */
.submenu {
  display: none;
  position: absolute;
  top: 0; /* align with parent item */
  left: 100%; /* appear to the right */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  z-index: 200;
  padding: 10px 0;
}

/* Submenu links */
.submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.submenu a:hover {
  background: #f1f5f9;
  color: #1f2795;
  border-left: 3px solid #1f2795;
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
  display: block;
}

/* Add right arrow for submenu items */
.has-submenu > .category-item::after {
  content: "\f105"; /* Font Awesome angle-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  color: #1f2795;
}

/* service page start here  */
.services-section {
  padding: 80px 5%;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #1f2795;
  font-size: 2.5rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #000;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(31, 39, 149, 0.8) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover .service-image:after {
  opacity: 1;
}

.service-name {
  /* position   : absolute; */
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #1f2795;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-name {
  transform: translateY(-5px);
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #1f2795;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 20px;
  font-size: 1.5rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: #000;
  transform: rotate(360deg);
}

.read-more {
  display: inline-block;
  color: #1f2795;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.read-more:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #000;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.read-more:hover {
  color: #000;
}

.read-more:hover:after {
  width: 100%;
}

/* service inner page start here  */
.logo-services {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-title {
  font-size: 2.8rem;
  color: #1f2795;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: center;
}

.services-text {
  padding-right: 30px;
}

.services-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
}

.services-highlight {
  background: linear-gradient(135deg, #1f2795 0%, #000 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-highlight p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
}

.portfolio-section {
  margin-top: 80px;
}

.portfolio-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1f2795;
  margin-bottom: 50px;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
  height: 220px;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.05);
}

/* screen printing section start here  */
.screen-printing {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.process-content {
  padding-right: 30px;
}

.strong {
  margin: 10px 0px;
}

.process-content h3 {
  font-size: 2.2rem;
  color: #1f2795;
  margin-bottom: 25px;
  font-weight: 600;
}

.process-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
}

.process-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: floatImage 6s ease-in-out infinite;
}

.process-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.process-image:hover img {
  transform: scale(1.05);
}

.process-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 39, 149, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.features-section {
  margin: 80px 0;
}

.features-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1f2795;
  margin-bottom: 50px;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1f2795 0%, #000 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(15deg) scale(1.1);
  background: linear-gradient(135deg, #000000 0%, #1b1818 100%);
}

.feature-item h3 {
  color: #1f2795;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.printing-types {
  margin: 80px 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
}

/* music page start here  */
.music-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
}

.music-header {
  text-align: center;
  margin-bottom: 60px;
}

.music-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #f9f4f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.artist-name {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.music-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

.artist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.artist-text {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.artist-text p {
  margin-bottom: 20px;
}

.highlight-text {
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 20%) 0%,
    rgb(151 149 149 / 57%) 100%
  );
  padding: 20px;
  border-left: 4px solid #ffffff;
  border-radius: 4px;
  font-weight: 500;
}

.platforms {
  margin-top: 40px;
}

.platforms h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #fffaf6;
}

.platform-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.platform-link {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link:hover {
  background: rgba(54, 50, 50, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.platform-link i {
  font-size: 1.8rem;
  margin-right: 12px;
}

.platform-link span {
  font-weight: 500;
}

.video-section {
  position: relative;
}

.video-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-player {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
}

.now-playing {
  display: flex;
  align-items: center;
}

.track-info h4 {
  margin: 0;
  font-size: 0.9rem;
  color: #f0efee;
  font-weight: 600;
}

.track-info p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* website designing page start here  */
.section-2 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
}

.content-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-2 {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.card-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image-2 {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(31, 39, 149, 0.8) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.card-2:hover .card-image-2:before {
  opacity: 1;
}

.image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card-2:hover .image-2 {
  transform: scale(1.1);
}

.card-content-2 {
  padding: 25px;
  text-align: center;
  position: relative;
}

.card-title-2 {
  color: #1f2795;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.card-2:hover .card-title-2 {
  color: #000000;
}

/* now product section start here  */
.productSection {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: "Segoe UI", sans-serif;
}

.productHeader {
  text-align: center;
  margin-bottom: 50px;
}

.productHeading {
  font-size: 2.5rem;
  color: #1f2795;
  margin-bottom: 15px;
  font-weight: 700;
}

.productSubheading {
  font-size: 1.1rem;
  color: #666;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.productItem {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.productItem:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.productImageContainer {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.productImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.productItem:hover .productImg {
  transform: scale(1.08);
}

.productTag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b6b;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.saleTag {
  background: #38ef7d;
}

.popularTag {
  background: #8e2de2;
}

.productInfo {
  padding: 20px;
}

.productTitle {
  font-size: 18px;
  color: #1f2795;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.productCost {
  font-size: 1.4rem;
  color: #ff6b6b;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.productButtons {
  display: flex;
  gap: 10px;
}

.addCartBtn,
.viewDetailsBtn {
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 12px;
}

.addCartBtn {
  background: #1f2795;
  color: white;
}

.viewDetailsBtn:hover {
  background: #151b6b !important;
}

.addCartBtn:hover {
  background: #151b6b;
}

.viewDetailsBtn {
  background: transparent;
  color: #1f2795;
  border: 2px solid #1f2795;
}

.viewDetailsBtn:hover {
  background: #1f2795;
  color: white;
}

.addCartBtn i,
.viewDetailsBtn i {
  margin-right: 8px;
}

/* Modal Styles */
.productModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modalContent {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modalClose {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6b6b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.modalClose:hover {
  background: #ff5252;
  transform: rotate(90deg);
}

.modalBody {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.modalImageBox {
  height: 400px;
  overflow: hidden;
}

.modalImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.modalDetails {
  padding: 30px;
}

.modalTitle {
  font-size: 2rem;
  color: #1f2795;
  margin-bottom: 15px;
}

.modalPrice {
  font-size: 1.8rem;
  color: #ff6b6b;
  margin-bottom: 20px;
  font-weight: 700;
}

.modalDesc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sizeSelection {
  margin-bottom: 25px;
}

.sizeLabel {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.sizeOptions {
  display: flex;
  gap: 10px;
}

.sizeBtn {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sizeBtn:hover,
.sizeBtn.activeSize {
  border-color: #1f2795;
  background: #1f2795;
  color: white;
}

.modalActions {
  display: flex;
  gap: 15px;
}

.modalCartBtn,
.buyNowBtn {
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.modalCartBtn {
  background: #1f2795;
  color: white;
}

.modalCartBtn:hover {
  background: #151b6b;
}

.buyNowBtn {
  background: #ff6b6b;
  color: white;
}

.buyNowBtn:hover {
  background: #ff5252;
}

.modalCartBtn i,
.buyNowBtn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .modalBody {
    grid-template-columns: 1fr;
  }

  .modalImg {
    border-radius: 12px 12px 0 0;
  }

  .productGrid {
    grid-template-columns: 1fr;
  }

  .productHeading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .productButtons {
    flex-direction: column;
  }

  .modalActions {
    flex-direction: column;
  }

  .productHeading {
    font-size: 1.8rem;
  }

  .modalDetails {
    padding: 20px;
  }

  .modalTitle {
    font-size: 1.6rem;
  }

  .modalPrice {
    font-size: 1.5rem;
  }
}

.user-account {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-account:hover .dropdown-menu {
  display: block;

  /* keeps alignment */
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

/* optional: start hidden */
.user-account .dropdown-menu {
  display: block;
  /* important for alignment */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  align-items: center;
}

.user-account .dropdown-menu a {
  font-size: 12px;
  padding: 0px 10px;
}

.user-account .dropdown-menu a:hover {
  color: #0097e6;
}

.search-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* shop page stat here  */
/* .container_shop {
    max-width: 1450px;
    margin   : 70px auto;
}

.row {
    display  : flex;
    flex-wrap: wrap;
    margin   : 0 -15px;
}

.col-lg-3,
.col-lg-9,
.col-md-4,
.col-md-8 {
    padding: 0 15px;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-9 {
    width: 75%;
}

.col-md-4 {
    width: 33.33%;
}

.col-md-8 {
    width: 66.67%;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-md-row {
    flex-direction: row;
}

@media (max-width: 992px) {

    .col-lg-3,
    .col-lg-9 {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .col-md-4,
    .col-md-8 {
        width: 100%;
    }
}



.pagination {
    margin-top     : 40px;
    display        : flex;
    justify-content: center;
    list-style     : none;
}

.pagination li {
    margin: 0 5px;
}

.page-link {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 40px;
    height         : 40px;
    border-radius  : 5px;
    color          : #2b2d42;
    font-weight    : 600;
    transition     : all 0.3s ease;
}

.page-link:hover {
    background: #3a86ff;
    color     : white;
}

.page-link.active {
    background: #3a86ff;
    color     : white;
}

.search-form {
    position: relative;
}

.search-form input {
    width        : 100%;
    padding      : 12px 15px;
    border       : 1px solid #eee;
    border-radius: 5px;
}

.search-form button {
    position  : absolute;
    right     : 10px;
    top       : 50%;
    transform : translateY(-50%);
    background: none;
    border    : none;
    color     : #8d99ae;
    cursor    : pointer;
}

.price-range {
    width : 100%;
    margin: 15px 0;
}

.filtered-price {
    display    : block;
    text-align : center;
    margin-top : 15px;
    font-weight: 600;
    color      : #3a86ff;
}

.row-cols-1>* {
    width: 100%;
}

.row-cols-sm-2>* {
    width: 50%;
}

.row-cols-lg-3>* {
    width  : 33.33%;
    padding: 5px;
}

@media (max-width: 768px) {

    .row-cols-sm-2>*,
    .row-cols-lg-3>* {
        width: 100%;
    }
}

.g-4 {
    gap: 1.5rem;
}
 */

/* login / register  */

.login-padding {
  padding: 80px 0px;
}

.auth-container {
  width: 400px;
  /* background   : white; */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: auto;
}

.tab-header {
  display: flex;
  justify-content: space-around;
  background: #4156f1;
  color: white;
}

.tab-header div {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.tab-header div.active {
  background: #11195a;
}

.form-container-2 {
  padding: 30px;
}

.form-container-2 form {
  display: none;
}

.form-container-2 form.active {
  display: block;
}

.form-container-2 .form-group {
  margin-bottom: 20px;
}

.form-container-2 label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-container-2 input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-container-2 .theme-btn {
  width: 100%;
  background: #11195a;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.form-container-2 .theme-btn:hover {
  background: #0f0c29;
}

.form-container-2 .extra-links {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.form-container-2 .extra-links a {
  color: #11195a;
  text-decoration: none;
}

/* cart start here  */
.header_cart_ {
  position: relative;
}

.header_cart_ a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  font-size: 20px;
  position: relative;
}

.header_cart_ .detail_ {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cart_container_ {
  display: flex;
  gap: 30px;
  /* width  : 1400px; */
  margin: auto;
  padding: 20px 0px;
}

.cart_items_ {
  flex: 2;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.cart_summary_ {
  flex: 1;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  align-self: flex-start;
}

.section_title_ {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.limited_text_ {
  color: #e74c3c;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.cart_item_ {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.item_image_ {
  width: 100px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
}

.item_image_ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item_details_ {
  flex: 1;
}

.item_name_ {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.item_color_ {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.item_price_ {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.current_price_ {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

.original_price_ {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.item_actions_ {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity_control_ {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 10px;
}

.quantity_btn_ {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #555;
}

.quantity_ {
  font-weight: 500;
}

.remove_btn_ {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.summary_item_ {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary_label_ {
  color: #777;
}

.summary_value_ {
  font-weight: 500;
}

.total_ {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 18px;
  font-weight: 600;
}

.privacy_policy_ {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}

.privacy_policy_ input {
  width: 18px;
  height: 18px;
}

.privacy_policy_ label {
  font-size: 14px;
  color: #555;
}

.cart_buttons_ {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart_btn_ {
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view_cart_ {
  border: 1px solid #2c3e50;
  color: #2c3e50;
  background: white;
}

.checkout_ {
  background: #2c3e50;
  color: white;
  border: none;
}

.view_cart_:hover {
  background: #f8f9fa;
}

.checkout_:hover {
  background: #1a252f;
}

@media (max-width: 768px) {
  .cart_container_ {
    flex-direction: column;
  }

  .cart_items_,
  .cart_summary_ {
    width: 100%;
  }
}

/* Sidebar */
.cart_sidebar_1 {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart_sidebar_1.active {
  right: 0;
}

.cart_header_1 {
  padding: 15px;
  background: #f5f5f5;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart_items_1 {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart_item_1 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart_item_1 img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.cart_item_info_1 {
  flex: 1;
}

.cart_item_info_1 h5 {
  margin: 0 0 5px;
  font-size: 14px;
}

.cart_item_info_1 p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.qty_control_1 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.qty_control_1 button {
  width: 25px;
  height: 25px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
}

.cart_item_1 .remove_btn_1 {
  color: #1f2795;
  cursor: pointer;
  font-size: 14px;
  margin-left: 10px;
}

.cart_footer_1 {
  padding: 22px 3px;
  border-top: 1px solid #eee;
  text-align: center;
}

.cart_footer_1 .total {
  font-weight: bold;
  margin-bottom: 25px;
}

.checkout_btn_1 {
  width: 100%;
  background: #1f2795;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Right */

/* Main Shop Container */
.container_shop {
  max-width: 1450px;
  margin: 70px auto;
  padding: 0 15px;
}

/* Shop Header */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.shop-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-toggle {
  display: none;
  background: #0f0c29;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}

.results-count {
  color: #585858;
  font-size: 0.9rem;
}

.sort-dropdown {
  position: relative;
}

.sort-dropdown select {
  padding: 10px 15px;
  border: 1px solid #0f0c29;
  border-radius: 5px;
  background: #ffff;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Shop Layout */
.shop-layout {
  display: flex;
  gap: 30px;
}

/* Sidebar Filters */
.shop-filters {
  background: #ffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 280px;
  flex-shrink: 0;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0f0c29;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reset-filters {
  color: #0f0c29;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-group ul {
  padding: 0;
}

.filter-group ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.filter-group ul li label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.filter-group ul li label:hover {
  color: #0f0c29;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0f0c29;
  cursor: pointer;
}

/* Sizes */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-options button {
  border: 1px solid #0f0c29;
  background: #ffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-options button:hover,
.size-options button.active {
  background: #0f0c29;
  color: #ffff;
  border-color: #0f0c29;
}

/* Colors */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-options span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #ffff;
  box-shadow: 0 0 0 1px #0f0c29;
  transition: all 0.2s ease;
}

.color-options span:hover {
  transform: scale(1.1);
}

/* Price Range */
.price-range-container {
  padding: 0 5px;
}

.price-range {
  width: 100%;
  margin: 15px 0;
  -webkit-appearance: none;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f0c29;
  cursor: pointer;
}

.price-label {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Products Grid */
.products-container {
  flex: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.productItem {
  background: #ffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.productItem:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.productImageContainer {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.productImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.productItem:hover .productImg {
  transform: scale(1.05);
}

.productInfo {
  padding: 20px;
}

.productTitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.productCost {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f0c29;
  margin-bottom: 15px;
}

.productButtons {
  display: flex;
  gap: 10px;
}

.addCartBtn,
.viewDetailsBtn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.addCartBtn {
  background: #0f0c29;
  color: #ffff;
}

.addCartBtn:hover {
  background: var(--secondary-color);
}

.viewDetailsBtn {
  background: #ffff;
  color: #000000;
  border: 1px solid #0f0c29;
}

.viewDetailsBtn:hover {
  background: var(--light-bg);
}

/* Pagination */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  color: #000000;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #0f0c29;
}

.page-link:hover {
  background: #0f0c29;
  color: #ffff;
  border-color: #0f0c29;
}

.page-link.active {
  background: #0f0c29;
  color: #ffff;
  border-color: #0f0c29;
}

.close-filters {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .shop-layout {
    gap: 20px;
  }

  .shop-filters {
    width: 240px;
  }
}

@media (max-width: 992px) {
  .filter-toggle {
    display: flex;
  }

  .close-filters {
    display: block;
  }

  .shop-filters {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease;
    border-radius: 0;
  }

  .shop-filters.active {
    left: 0;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .close-filters {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
  }
}

@media (max-width: 768px) {
  .shop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-controls {
    width: 100%;
    justify-content: space-between;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .productButtons {
    flex-direction: column;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .inner-section {
    padding: 60px 0 40px;
  }

  .banner-content h3 {
    font-size: 2rem;
  }

  .container_shop {
    margin: 40px auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .productImageContainer {
    height: 220px;
  }
}

/* view collection start here  */

.section-padding {
  padding: 70px 0px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.collection-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.05);
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: white;
}

.collection-card-content {
  padding: 1.5rem;
}

.collection-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.collection-card-desc {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.collection-card-btn {
  display: inline-block;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.collection-card-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(38, 117, 252, 0.3);
}

.collection-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff5252;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 10;
}

.filter-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border-color: transparent;
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
  }

  .page-title h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 80%;
    text-align: center;
  }
}

/* product details page start here  */
.product-details {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Image Gallery Styles */
.image-gallery {
  flex: 1;
  min-width: 300px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.main-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fcfcfc;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 70px;
  height: 70px;
  border: 2px solid #e8e8e8;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f7f7f7;
}

.thumbnail:hover {
  border-color: #3498db;
}

.thumbnail.active {
  border-color: #3498db;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Styles */
.product-info {
  flex: 1;
  min-width: 300px !important;
  padding: 25px;
  border-left: 1px solid #e8e8e8;
}

.product-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: #f39c12;
  margin-right: 10px;
}

.rating-count {
  color: #7f8c8d;
  font-size: 14px;
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: #11195a;
}

.original-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #95a5a6;
  margin-left: 10px;
}

.discount {
  font-size: 16px;
  color: #11195a;
  margin-left: 10px;
  font-weight: 600;
}

.product-description {
  margin-bottom: 25px;
  color: #34495e;
  line-height: 1.8;
}

/* Options Section */
.options {
  margin-bottom: 25px;
}

.option-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}

.size-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.size-option {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option:hover {
  border-color: #3498db;
}

.size-option.selected {
  background-color: #11195a;
  color: white;
  border-color: #3498db;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
}

.color-option.selected {
  border-color: #2c3e50;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Quantity and Actions */
.quantity {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.qty-label {
  margin-right: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e8e8e8;
}

.qty-input {
  width: 50px;
  height: 36px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}

.stock {
  margin-left: 15px;
  color: #11195a;
  font-weight: 500;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.add-to-cart,
.buy-now {
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart {
  background-color: #11195a;
  color: white;
}

.add-to-cart:hover {
  background-color: #25186d;
}

.buy-now {
  background-color: #fb641b;
  color: white;
}

.buy-now:hover {
  background-color: #e55a16;
}

.delivery-options {
  border-top: 1px dashed #ddd;
  padding-top: 20px;
}

.delivery-option {
  display: flex;
  margin-bottom: 10px;
}

.delivery-icon {
  margin-right: 10px;
  color: #11195a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-details {
    flex-direction: column;
  }

  .product-info {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }

  .main-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .action-buttons {
    flex-direction: column;
  }

  .add-to-cart,
  .buy-now {
    width: 100%;
  }

  .main-image {
    height: 250px;
  }
}

/* checkout page start here  */

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.form-section,
.order-summary {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f1;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #34495e;
}

input,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s;
}

input:focus,
select:focus {
  border-color: #3498db;
  outline: none;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.row .form-group {
  flex: 1;
  min-width: 200px;
}

.btn {
  background: #11195a;
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.btn:hover {
  background: #1c2daf;
}

.order-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  flex-wrap: wrap;
  /* responsive support */
}

.item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}

.item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* helps for small screens */
  gap: 15px;
}

.price-item {
  flex: 1;
  min-width: 200px;
}

.item-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.item-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.item-price {
  color: #11195a;
  font-weight: 600;
  margin-bottom: 10px;
}

.details-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 150px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background: #f1f1f1;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 45px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0;
}

.remove-btn i {
  margin-right: 5px;
}

.item-total {
  font-weight: 600;
  color: #2c3e50;
}

/* âœ… Responsive for Tablets & Mobiles */
@media (max-width: 768px) {
  .order-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-img {
    margin-bottom: 10px;
  }

  .item-details {
    flex-direction: column;
    gap: 15px;
  }

  .details-item {
    width: 100%;
    align-items: flex-start;
  }
}

.item-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.item-price {
  color: #11195a;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background: #f1f1f1;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 40px;
  height: 30px;
  text-align: center;
  margin: 0 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
}

.remove-btn {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.remove-btn i {
  margin-right: 5px;
}

.item-total {
  font-weight: 600;
  color: #2c3e50;
  margin-top: 5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 5px 0;
}

.total {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  border-top: 2px solid #f1f1f1;
  padding-top: 15px;
  margin-top: 10px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.payment-method {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 2px solid #f1f1f1;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method:hover {
  border-color: #3498db;
}

.payment-method.active {
  border-color: #3498db;
  background-color: #f4f9ff;
}

.payment-method i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #7f8c8d;
}

.secure-note {
  text-align: center;
  margin-top: 20px;
  color: #7f8c8d;
  font-size: 14px;
}

.secure-note i {
  color: #2ecc71;
  margin-right: 5px;
}

.empty-cart {
  text-align: center;
  padding: 30px;
  color: #7f8c8d;
}

.empty-cart i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ddd;
}

.category-name {
  padding: 1rem;
  background-color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #1f2795;
}

@media (max-width: 768px) {
  .checkout-container {
    flex-direction: column;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .payment-methods {
    flex-direction: column;
  }
}

.school-logo-section {
  padding: 100px 0;
}

.school-logo-section .school-logo-heading {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

/* Glassmorphism + Gradient Background */
.logo-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  border-radius: 12px;

  background: linear-gradient(135deg, #222a92, #8b9ae0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
}

.logo-item img {
  margin-bottom: 15px;
}

.logo-item h3 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 600;
}

.logo-item .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-item .btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Tablet */
@media (min-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.password-form-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gradient + Glass card */
.form-card {
  background: linear-gradient(135deg, #222a92, #8b9ae0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  width: 600px;
  margin: auto;
}

.form-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* Input */
.form-card input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

/* Button */
.form-card button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.form-card button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.price-label {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #0c0b0b;
}

/* model add to cart */
/* Product Options Modal */
.product-options-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.modal-content-options {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #333;
}

.modal-content-options h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  color: #333;
  border-bottom: 2px solid #0f0c29;
  padding-bottom: 10px;
}

.modal-product-info {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-product-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-product-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #333;
}

.modal-price {
  font-size: 18px;
  font-weight: bold;
  color: #0f0c29;
  margin: 0;
}

.option-group {
  margin-bottom: 20px;
}

.option-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.required {
  color: #e74c3c;
}

.size-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-btn {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.size-btn:hover {
  border-color: #0f0c29;
  background: #f8f9fa;
}

.size-btn.selected {
  border-color: #0f0c29;
  background: #0f0c29;
  color: #fff;
}

.color-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.color-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-btn.selected {
  border-color: #0f0c29;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0f0c29;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
}

.quantity-selector button:hover {
  background: #0f0c29;
  color: #fff;
  border-color: #0f0c29;
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
}

.confirm-add-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 10px;
}

.confirm-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(15, 12, 41, 0.4);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  z-index: 10001;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.success {
  background: #27ae60;
}

.notification.error {
  background: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content-options {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }

  .modal-product-info {
    flex-direction: column;
    text-align: center;
  }

  .notification {
    right: 10px;
    left: 10px;
    top: 10px;
  }
}

/* empty cart message */

.empty-cart-message {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-message i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-cart-message h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.empty-cart-message p {
  color: #666;
  margin-bottom: 30px;
}

.empty-cart-message .shop-now-btn {
  display: inline-block;
  padding: 12px 60px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s;
}

.empty-cart-message .shop-now-btn:hover {
  transform: translateY(-2px);
}

.cart_item_.removing {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.fastiable-add {
  .banner {
    display: flex;
  }

  .content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    color: white;
    position: relative;
  }

  .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background: #000;
  }

  .image {
    flex: 1;
    background: url("https://images.unsplash.com/photo-1572860177022-8fda92a90c95?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      center/cover no-repeat;
    position: relative;
    border-radius: 15px;
  }



  h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  .products {
    list-style-type: none;
    position: relative;
    z-index: 1;
  }

  .products li {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
  }

  .products li:before {
    content: "🎃";
    position: absolute;
    left: -10px;
  }

  .highlight {
    color: #ffcc00;
    font-weight: bold;
  }

  .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #fed400;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }

  .cta-button:hover {
    background-color: #222a92;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .banner {
      flex-direction: column;
      height: auto;
    }

    .content,
    .image {
      flex: none;
      width: 100%;
    }

    .image {
      height: 300px;
    }

    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .products li {
      font-size: 1.2rem;
    }
  }
}

.text-white-p p,
.text-white-p h2{
    color:#ffffff !important;
}
