* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}
body{
  background-color: rgba(230,230,250,1) !important;
}
#breadcrumb-main-page,
#breadcrumb-page,
.d-flex.align-items-center span1 {
  font-size: clamp(16px, 2vw, 22px); /* Responsive between 16px–22px */
  color: white;                      /* Ensure white text */
  font-weight: 600;
   white-space: nowrap;
}
.promo-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0c3ef2;
  color: #fffcfc;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* === Promotion Section === */
.promotion-section {
  padding: 60px 20px;
  background: #f9fafc;
  border-radius: 16px;
  position: relative;
}

.promotion-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.p-grid::-webkit-scrollbar { display: none; }

/* === Promotion Cards === */
.p-card {
  min-width: 280px;
  flex: 0 0 auto;
  border: 2px solid #ffd60a;
  border-radius: 16px;
  background: white;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === Promotion Badges === */
.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: white;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.badge-sale { background: linear-gradient(135deg, #ff9800, #ff5722); }
.badge-hot { background: linear-gradient(135deg, #ff3d3d, #b80000); }
.badge-discount { background: linear-gradient(135deg, #00c853, #009624); }
.badge-flash { background: linear-gradient(135deg, #8e24aa, #6a1b9a); }

/* === Arrow Buttons (Updated) === */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd60a;
  color: #000;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background: #ffcc00;
  transform: translateY(-50%) scale(1.1);
}

.left-btn {
  left: 20px;
}

.right-btn {
  right: 20px;
}


@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span1 {
    font-size: 16px;
  }
}


.about-header {
  background: url('/images/cover_img.png') no-repeat center center/cover;
  height: 80vh;
  position: relative;
  color: white;
  
}



.breadcrumbs {
  font-size: 22px;
  color: white;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .breadcrumbs {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}



/* Responsive Styles */

/* Tablet View */
@media (max-width: 991px) {
  .about-header {
    height: 80vh;
  }

  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 {
    font-size: 36px;
  }

  .about-overlay p {
    font-size: 20px;
  }

  .breadcrumbs {
    padding-right: 100px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .about-header {
    height: 70vh;
  }

  .about-overlay {
    padding: 30px 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 16px;
  }

 
}


/* Overlay Text */
.about-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
}

.about-overlay h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-overlay p {
  font-size: 23px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-overlay {
    padding: 50px 30px;
  }

  .about-overlay h1 {
    font-size: 36px;
  }

  .about-overlay p {
    font-size: 20px;
  }
}


@media (max-width: 576px) {
  .about-overlay {
    padding: 50px 20px;
  }

  .about-overlay h1 {
    font-size: 28px;
  }

  .about-overlay p {
    font-size: 16px;
  }
}





/*****************************************************/
.circle {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
   
    
    
  }
  .circle:hover .icon-img {
    transform: scale(1.5);
  }
  .circle:hover .label {
    display: none;
  }
  .icon-img {
   
    transition: transform 0.3s ease;
  }
  .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .featured-title {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
  .circle {
    width: 90px;
    height: 90px;
  }

  .icon-img {
    width: 20px;
    height: 20px;
  }

  .label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 80px;
    height: 80px;
  }

  .icon-img {
    width: 10px;
    height: 10px;
  }

  .label {
    font-size: 0.5rem;
  }
}














/***************************************************/
.p-section {
  padding: 60px 20px;
  text-align: center;
  padding-left: 80px;
  background-color:rgba(230,230,250,1);
}





.sidebar {

  padding: 10px 6px;
  border-radius: 10px;
  border-color: black;
  max-width: 300px;
  width: 100%;
  margin-bottom: 40px;
}

.sidebar label {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: black;
}

.sidebar select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  appearance: none; /* removes default arrow in some browsers */
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.sidebar select:focus {
  border-color: #3b3bf5;
  outline: none;
}

/* Optional: Add arrow icon */
.sidebar select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' stroke='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}



.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
}


.p-card {
  background-color: #f5f2ff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 300px;
  font-family: Arial, sans-serif;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
}

.p-details {
  padding: 16px;
  background-color: #ffffff;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.description {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.stars i {
  color: #ffc107;
  margin-right: 2px;
}

.rating-count {
  color: #888;
  margin-left: 8px;
  font-size: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-size: 16px;
}

.new-price {
  color: red;
  font-weight: bold;
  margin-right: 8px;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 14px;
}

.available {
  color: #5a57ff;
  font-size: 14px;
}

.view-btn {
  display: block;
  text-align: center;
  background-color: rgb(43, 54, 206);
  color: #ffffff;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.5s ease-in;
}

.view-btn:hover {
  color: #fff;
  background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
}





.load-more-button {
  background-color: rgba(65,75,210,1);
  color: white; 
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
   transition: background-color 0.3s ease; 
}
.load-more-button:hover{
  background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
}

/* Center the button container */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
 margin-bottom: 40px;
 
}







@media (max-width: 992px) {
  .p-section {
    padding-left: 20px;
  }

  .p-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .p-card {
    height: auto;
  }

  .p-card img {
    max-height: 180px;
  }

  .p-card h4 {
    font-size: 20px;
  }

  .p-card .description,
  .p-card .price,
  .p-card .available {
    font-size: 14px;
  }
}


/* ===== Phones and small devices (<= 600px) ===== */
@media (max-width: 600px) {
  .p-section {
    padding: 20px 10px;
    padding-left: 10px;
  }

  .p-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .p-card {
    margin: 0 auto;
  }

  .p-card h4 {
    font-size: 18px;
  }

  .p-card .description,
  .p-card .price,
  .p-card .available {
    font-size: 13px;
  }

  .view-btn,
  .load-more-button {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  .sidebar {
    padding: 15px 20px;
  }

  .sidebar label {
    font-size: 1rem;
  }

  .sidebar select {
    font-size: 0.95rem;
  }
}

/* ===========================
   iPad Mini (768px - 820px)
   iPad Air (820px - 834px)
   iPad Pro 11" (834px - 1024px)
   iPad Pro 12.9" (1024px - 1366px)
=========================== */

/* iPad Mini & iPad Air Portrait */
@media (min-width: 768px) and (max-width: 834px) {
  .p-section {
    padding: 40px 30px;
    padding-left: 40px;
  }

  .p-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
  }

  .sidebar {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .p-card {
    width: 100%;
    height: auto;
  }

  .p-card img {
    max-height: 180px;
  }

  .view-btn,
  .load-more-button {
    max-width: 280px;
    margin-bottom: 15px;
  }
}

/* iPad Pro 11" and 12.9" Portrait & Landscape */
@media (min-width: 835px) and (max-width: 1366px) {
  .p-section {
    padding: 50px 30px;
    padding-left: 50px;
  }

  .p-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 0 40px;
  }

  .sidebar {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .p-card {
    max-width: 500px;
    height: 500px;
  }

  .p-card img {
    max-height: 200px;
  }

  .view-btn,
  .load-more-button {
    font-size: 15px;
    padding: 12px 24px;
    margin-bottom: 10px;
  }
}







/***********footer**********************************/

.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 60px;
  font-size: 18px;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 23px;
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.newsletter p {
  color: #8f90a6;
}

.newsletter-form {
  display: flex;
  max-width: 450px;
  width: 450px;
}

.newsletter-form input {
  padding: 16px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 17px;
  width: 100%;
  outline: none;
}

.newsletter-form button {
  padding: 14px 20px;
  border: none;
  background-color: #fcee0a;
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.footer-social-icons i {
  font-size: 22px;
  color: #fff;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
}

.footer hr {
  margin: 30px 0;
  border-color: #2a2a2a;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-brand img {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-brand p {
  color: #cfcfcf;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #8f90a6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}

.badges {
  font-size: 10px;
  background: #e6e6e6;
  color: #000;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 15px;
  color: white;
}

@media (max-width: 768px) {
  .newsletter, .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
}



/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* page background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader container */
.square-loader {
  display: flex;
  gap: 10px;
}

.square-loader div {
  width: 30px;
  height: 60px;
  background-color: #0d6efd; /* blue squares */
  animation: squareAnim 1.2s infinite ease-in-out;
}

/* Staggered animation for each square */
.square-loader div:nth-child(1) { animation-delay: 0s; }
.square-loader div:nth-child(2) { animation-delay: 0.2s; }
.square-loader div:nth-child(3) { animation-delay: 0.4s; }
square-loader div:nth-child(4) { animation-delay: 0.6s; }

/* Keyframes: scale up and down */
@keyframes squareAnim {
  0%, 100% { transform: scale(0); opacity: 0.3; }
  50% { transform: scale(1); opacity: 1; }
}



/* Mobile-friendly search form */
.search-form {
    display: flex;
    max-width: 500px;
    width: 90%;
    margin: 20px auto 0;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.search-button {
    background-color: rgba(65, 75, 210, 1);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 18px;
}

/* For mobile screens */
@media (max-width: 576px) {
    .search-form {
        width: 95%;
        margin: 15px auto 0;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Also fix header height for mobile */
    .about-header {
        height: 60vh !important;
    }
    
    .about-overlay {
        padding: 20px !important;
    }
    
    .about-overlay h1 {
        font-size: 28px !important;
    }
    
    .about-overlay p {
        font-size: 14px !important;
    }
}