/*
 Theme Name:   lusion Child
 Theme URI:    https://rthquick.com/
 Description:  Child theme for lusion
 Author:      Rubina
 Author URI:   https://rthquick.com/
 Template:     lusion
 Text Domain: rthquick
 Version:      1.0.0
*/



/* HEADER */
#nav-belt {
  display: flex;
  align-items: center;
  background: #131921 !important;
  padding: 10px;
  gap: 15px;
}

/* LEFT */
.nav-belt-left,
.nav-belt-right {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

/* CENTER SEARCH */
.nav-belt-center {
  flex: 1;
}

.nav-searchbar {
  display: flex;
  height: 45px;
  max-width: 900px;
  margin: auto;
}

/* SEARCH LEFT */
.search-left {
  background: #f3f3f3;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 4px 0 0 4px;
  position: relative;
}

.search-dropdown {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* SEARCH INPUT */
.search-input {
  flex: 1;
  border: none;
  padding: 0 10px;
  font-size: 14px;
  
}

.search-input:focus {
  outline: none;
}

/* SEARCH BUTTON */
.search-btn {
  background: #febd69;
  border: none;
  padding: 0 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
.search-input {
  flex: 1;
  border: none;
  padding: 0 12px;
  font-size: 14px;
  height: 44px;
  line-height: 44px;
  box-sizing: border-box;
}


/* CART */
.nav-cart {
  background: #febd69;
  color: #000;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
}







@media (max-width: 991px) {
  #nav-belt {
    flex-wrap: wrap;
  }

  .nav-belt-center {
    order: 3;
    width: 100%;
  }

  .nav-searchbar {
    margin-top: 10px;
  }
}




@media (max-width: 576px) {

  #nav-belt {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-belt-left,
  .nav-belt-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-belt-right {
    gap: 10px;
    font-size: 12px;
  }

  .nav-belt-center {
    width: 100%;
    margin-top: 8px;
  }

  .search-left {
    display: none; /* hide category on mobile */
  }

  .search-input {
    width: 100%;
  }

  .search-btn {
    padding: 0 12px;
  }
}


/* ===== MOBILE HEADER ===== */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #131921;
  z-index: 9999;
  padding: 10px;
  color: white;
}

/* Top row */
.mobile-top {
  padding-bottom: 5px;
}

.mobile-logo {
  height: 35px;
}

/* Cart badge */
.cart-count-mobile {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #febd69;
  color: #000;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Hamburger button style */
.mobile-top .btn {
  font-size: 20px;
  background: none;
  border: none;
  color: white;
}

/* ===== SEARCH BAR ===== */
.mobile-search form {
  width: 100%;
}

.mobile-search-input {
  flex: 1;
  height: 40px;
  border: none;
  padding: 0 10px;
  border-radius: 4px 0 0 4px;
}

.mobile-search-input:focus {
  outline: none;
}

.mobile-search-btn {
  background: #febd69;
  border: none;
  padding: 13.5px 35px;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
}

/* ===== OFFCANVAS ===== */
.offcanvas {
  z-index: 11000 !important; /* Above fixed header */
}

/* Add offset so content does not hide behind fixed header */
@media (max-width: 991px) {
  body {
    padding-top: 110px; /* adjust according to your mobile header height */
  }
}






/* =========================================
  hero SECTION
   ========================================= */
.amazon-quad-wrapper {
  background: #eaeDED;
  padding: 40px 0;
}

.amazon-quad-container {
  display: flex;       /* horizontal layout */
  flex-wrap: wrap;     /* allow wrapping for smaller screens */
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.quad-card {
  flex: 1 1 calc(25% - 20px); /* 4 cards horizontal on desktop */
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.quad-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Inner grid for 4 images inside each card */
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quad-grid a {
  text-decoration: none;
  color: #0f1111;
}

.quad-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.quad-grid span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.quad-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #007185;
  text-decoration: none;
}

.quad-more:hover {
  text-decoration: underline;
}

/* Tablet: 2 cards per row */
@media (max-width: 1200px) {
  .quad-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 576px) {
  .quad-card {
    flex: 1 1 100%;
  }
}


* =========================================
  hero SECTION
   ========================================= */
.product-img {
  width: 100%;
  height: 200px;      /* Fixed height for all images */
  object-fit: cover;   /* Makes image cover the area without stretching */
}

.card-img-top {
    height: 250px;}
    
    
   * =========================================
  Nous Telos SECTION
   ========================================= */ 
    .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee h1 {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
  
  
  
  .footer-logo .custom-logo {
    max-width: 160px !important;
    height: auto;
}








/* Full background gradient */
.terms-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #35c9a5, #20b2aa) !important;
  padding: 40px 15px;
}

/* White Card */
.terms-card {
  background: #ffffff;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

/* Left Sidebar */
.terms-sidebar {
  background: #f7f7f7;
  border-right: 1px solid #e5e5e5;
}

/* Tab Links */
.terms-sidebar .nav-link {
  color: #666;
  font-weight: 500;
  margin-bottom: 15px;
  background: transparent;
  border-radius: 30px;
  transition: 0.3s;
}

.terms-sidebar .nav-link.active {
  background: #35c9a5;
  color: #fff;
}

/* Number Circle */
.tab-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: #dff6f0;
  color: #35c9a5;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
}

.nav-link.active .tab-number {
  background: #fff;
  color: #35c9a5;
}


 * =========================================
   CATEGORY RIBBON 
   ========================================= */ 
   
   .category-ribbon {
    background: #232f3e;
    padding: 8px 0;
}

.ribbon-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.ribbon-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.ribbon-menu li a:hover {
    color: #ff9900;
}