
/**************************************************************************************************************************************************/
/********************************************************************* Common CSS *****************************************************************/
/**************************************************************************************************************************************************/
  :root {
    --primary-color: #f6562f;
    --primary-hover: #e8441b;
    --secondary-color: #3e257f;
    --secondary-hover: #2e1868;
    --secondary-footer: #130732;
    --brand-purple: #1A1053;
    --brand-orange: #f6562f;
    --brand-text-light: #F4F4F6;
    --hash-color: #404040;
    --hash-hover: #303030;
    --gold-primary: #C5A059;
    --gold-dark: #9E7D3B;
    --gold-darker: #72551a;
    --gold-light: #F4EFE4;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 600;
  }
  body {
    background-color: #f7fafc !important;font-family: inter_bold, fallback-inter_bold, Arial, sans-serif;
  }
  img {
    width: 100%;
  }
  a { text-decoration: none !important; }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .hide {
    display: none !important;
  }
  .form-control {
    font-size: 14px !important;
  }
  .btn.btn-xs {
    padding: 2px 8px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    body {
      padding-bottom: 60px;
    }
    .md-hide {
      display: none !important;
    }
    .container-mm0 {
      margin: 0px !important;
    }
  }
/**************************************************************************************************************************************************/
/********************************************************************* Toster CSS *****************************************************************/
/**************************************************************************************************************************************************/
  #toast-container {
    margin-top: 4rem;
  }
  #toast-container>div {
    padding: 8px 8px 8px 12px;
    width: 22em;
  }
  .toast-container.ada-extra {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }
  .toast.toast-extra {
    background-color: #ffffff;
    color: #333333 !important;
    padding: 1rem 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
    border-left: 8px solid #ff4d4d;
    display: flex;
    align-items: center;
    min-width: 250px;
    max-width: 350px;
    max-height: 40px;
    animation: slideIn 0.3s ease forwards, fadeOut 29.5s ease forwards 3.5s;
  }
  .toast.toast-extra.toast-success {
    border-left: 8px solid #28a745 !important;
  }
  .toast-message.toast-message {
    font-size: 14px;
    font-weight: 500;
  }
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(20px);
    }
  }
  @media (max-width: 768px) {
    #toast-container {
      margin-top: 0.5rem;
    }
    #toast-container>div {
      padding: 8px 8px 8px 12px;
      width: 22em;
    }
  }
/**************************************************************************************************************************************************/
/********************************************************************* Navbar CSS *****************************************************************/
/**************************************************************************************************************************************************/
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 4rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo img {
    height: 100%;
    width: 100%;
    max-width: 160px;
  }
  .nav-links a {
    text-decoration: none !important;
    color: var(--secondary-color);
    margin: 0 18px;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
  }
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav-icons i {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-hover);
  }
  .notification-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-hover);
  }
  .nav-mobile-link {
    display: none;
  }
  .nav-mobile-link a {
    margin-right: 1.5rem;
  }
  .nav-mobile-link a {
    color: var(--secondary-hover);
  }
  .navbar .nav-icons a {
    text-decoration: none !important;
    color: var(--primary-color);
    font-weight: 600;
  }
  .navbar .nav-icons a:hover {
    color: var(--primary-hover) !important ;
  }
  @media (max-width: 1200px) {
    .navbar { padding: 1rem 3rem !important; }
  }
  @media (max-width: 768px) {
    .navbar { padding: 1rem 2rem !important; }
    .nav-links, .nav-icons { display: none; }
    .menu-btn { display: block; }
    .notification-btn { display: block; }
    .nav-mobile-link {
      display: flex;
    }
  }
  @media (max-width: 576px) {
    .navbar { padding: 1rem 1rem !important; }
    .logo img { max-width: 150px;  }
  }
/**************************************************************************************************************************************************/
/**************************************************************** Mobile Drawer CSS ***************************************************************/
/**************************************************************************************************************************************************/
  .sidebar {
    position: fixed;
    top: 0;
    left: -300px; /* Kept off-screen completely until triggered */
    width: 290px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 1.5rem;
  }
  .sidebar.active { left: 0; }
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 18px;
  }
  .sidebar-logo img { max-width: 150px; }
  .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-hover);
  }
  .sidebar-links {
    padding: 1rem 0;
  }
  .sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--secondary-color);
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
  }
  .sidebar-links a:hover {
    background-color: #f7fafc;
    color: var(--secondary-hover);
  }
  .sidebar-links i {
    width: 20px;
    font-size: 16px;
  }
  .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(1px);
      z-index: 1999;
      display: none;
  }
  .sidebar-overlay.active { display: block; }
  .sidebar-links hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
/**************************************************************************************************************************************************/
/****************************************************************** Bottombar CSS *****************************************************************/
/**************************************************************************************************************************************************/
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: none; /* Hidden on desktop screens */
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0rem;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
    z-index: 9;
  }
  .bottom-nav-item {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    text-decoration: none !important; 
    color: var(--secondary-color);
    font-size: 12px; 
    font-weight: 600; 
    gap: 5px; 
    flex: 1;
  }
  .bottom-nav-item:hover, .bottom-nav-item.active { color:  var(--primary-color); }
  .bottom-nav-item i { font-size: 20px; }
  @media (max-width: 768px) {
    .bottom-nav { display: flex; }
    .bottom-nav { display: flex; }
  }
/**************************************************************************************************************************************************/
/******************************************************************** Footer CSS ******************************************************************/
/**************************************************************************************************************************************************/
  .custom-footer {
    background-color: var(--secondary-footer);
    color: #FFF;
    font-size: 0.9rem;
  }
  .custom-footer a {
    color: rgba(244, 244, 246, 0.75);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  .custom-footer a:hover {
    color: var(--brand-orange);
  }
  .footer-heading {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-orange);
  }
  .footer-btn.btn-brand-orange {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .footer-btn.btn-brand-orange:hover {
    background-color: var(--primary-hover) !important;
    color: white;
  }
  .social-icons a {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none !important;
    margin-right: 0.8rem;
  }
  .social-icons a:hover {
    background: var(--brand-orange);
    color: white !important;
  }
/**************************************************************************************************************************************************/
/******************************************************************** Index Page CSS **************************************************************/
/**************************************************************************************************************************************************/
  .hero {
    background: linear-gradient(145deg, #3d257f  0%, #f75b30  100%);
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
  }
  .hero-content h1 { 
    font-size: 38px; 
    font-weight: 800; 
    margin-bottom: 12px; 
  }
  .hero-content p { 
    font-size: 18px; 
    margin-bottom: 24px; 
    opacity: 0.9; 
  }
  .btn {
    display: inline-block;
    background-color: #ffffff;
    color: #3d247d;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .container { 
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 24px;
  }
  .container h2 {
    margin-bottom: 24px; 
    font-size: 26px;
    color: var(--secondary-hover);
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  .product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    height: 100%;
  }
  .product-image img { width: 100%; height: 220px; object-fit: cover; }
  .product-info { padding: 0.4rem 1rem; }
  .product-info h3 { 
    font-size: 14px;
    margin-bottom: 0.2rem;
    text-transform: capitalize;
  }
  .product-info p {
    margin-bottom: 0.6rem;
  }
  .price { 
    color: var(--primary-color);
    font-weight: 600; 
    font-size: 14px;
    margin-bottom: 0.4rem; 
    letter-spacing: 0.6px;
  }
  .price i {
    font-size: 90%;
  }
  .price-cut { 
    color: #999;
    font-weight: 600; 
    font-size: 14px;
    margin-bottom: 0.4rem; 
    margin-right: 3px;
    letter-spacing: 0.6px;
  }
  .price-cut i {
    font-size: 90%;
  } 
  .product-col {margin-top: 1rem;}
  .product-info .prize-money {
    text-align: center;
    background-color: var(--gold-light);
    border: 1px solid var(--gold-primary);
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }
  .product-info .prize-money small {
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .product-info .prize-money h3 {
    color: var(--gold-darker);
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
    font-size: 16px;
    font-weight: 700;
  }
  .product-info .prize-money h3 i {
    font-size: 90%;
  }
  .product-info .product-info-sub {
    min-height: 60px;
  }
  .categories .category-main {
    padding: 0.4rem;
    margin: 0px;
  }
  .categories .category-main .category-single {
    background-color: #FFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
  }
  .categories .category-main .category-single .category-img {
    position: relative;
    padding: 0.4rem;
  }
  .categories .category-main .category-single .category-img img {
    border-radius: 10px;
  }
  .categories .category-main .category-single .category-img a {
    text-align: center;
    display: block;
    color: var(--primary-hover);
    font-size: 14px;
    width: 100%;
    margin-top: 0.2rem;
  }


  @media (max-width: 1200px) { 
    .container {
      margin: 3rem auto;
    }
  }
  @media (max-width: 768px) {
    .hero { min-height: 220px; }
    .hero-content h1 { font-size: 32px; }
    .product-info { padding: 0.8rem; }  
    .container {
      margin: 2rem auto;
    }
  }
  @media (max-width: 576px) {
    .hero-content h1 { font-size: 28px; }
    .product-info { padding: 0.6rem; }
    .product-grid .row {
      padding: 6px;
    }
    .product-image img {
      height: 180px;
    }
    .product-col {
      margin-top: 10px;
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
    .hero { min-height: 180px; }
    .hero-content p { margin-bottom: 0px; }
    .container { margin: 1rem auto; }
    .container h2 {
      margin-bottom: 0.4rem;
      font-size: 18px;
    }
    .product-info .prize-money {
      margin-bottom: 0rem;
    }
    .product-info h3 {
      font-size: 13px;
    }
    .product-info .prize-money small {
      font-size: 12px;
    }
    .product-info .prize-money h3 {
      font-size: 15px;
      margin-top: 0px;
    }
    .categories .category-main {
      padding: 0.2rem;
    }
    .categories .category-main .category-single {
      border-radius: 8px;
    }
    .categories .category-main .category-single .category-img {
      padding: 0.3rem;
    }
    .categories .category-main .category-single .category-img img {
      border-radius: 6px;
    }
    .categories .category-main .category-single .category-img a {
      font-size: 13px;
      margin-top: 0;
    }
  }
  @media (max-width: 400px) {
    .container { margin: 0rem  0rem 1rem 0rem; }
    .product-image img {
      height: 160px;
    }
    .product-col {
      margin-top: 8px;
      padding-left: 4px !important;
      padding-right: 4px !important;
    }
    .categories .category-main .category-single .category-img {
      padding: 0.2rem;
    }
    .categories .category-main .category-single .category-img a {
      font-size: 12px;
    }
    .container h2 {
      margin-bottom: 0.4rem;
      font-size: 16px;
    }
  }
/**************************************************************************************************************************************************/
/****************************************************************** Dashboard CSS *****************************************************************/
/**************************************************************************************************************************************************/
  .dashboard .dashboard-links {
    background-color: #FFF;
    border-radius: 6px;
    padding: 2rem 1.5rem;
  }
  .dashboard .dashboard-links a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
  }
  .dashboard .dashboard-links a:hover {
    color: var(--secondary-hover);
  }
  .dashboard .dashboard-links a.active {
    background-color: var(--secondary-color);
    color: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: block;
  }
  .dashboard .dashboard-links a i {
    width: 20px;
  }
  .dashboard .dashboard-content {
    background-color: #FFF;
    border-radius: 6px;
    padding: 2rem 1rem;
    height: 100%;
  }
  .dashboard .info-box {
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
    border-radius: 8px;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: .5rem 1rem;
    position: relative;
    width: 100%;
  }
  .dashboard .info-box .info-box-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #FFF;
    background-color: var(--secondary-color);
    text-align: center;
    border-radius: 0.4rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px;
    margin: 0px;
  }
  .dashboard .info-box .info-box-content { margin-left: 4rem; }
  .dashboard .info-box b {
    color: #999;
    font-size: 90%;
    font-weight: 600;
    margin-top: -2px;
  }
  .dashboard .info-box h5 {
    color: var(--hash-hover);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 700;
  }
  .dashboard .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 6px 48px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: justify;
    min-width: 280px;
  }
  .dashboard .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .dashboard .active-state {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.15);
  }
  .dashboard .active-state .status-dot {
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
  }
  .dashboard .inactive-state {
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.15);
  }
  .dashboard .inactive-state .status-dot {
    background-color: var(--danger);
    box-shadow: 0 0 8px var(--danger);
  }
  .dashboard .btn-share {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 7px 48px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    min-width: 280px;
  }
  .dashboard .btn-share:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .dashboard .status-pill {
      width: 100%;
    }
    .dashboard .dashboard-content {
      border-radius: 0px;
      padding: 1rem;
    }
    .dashboard h6 {
      font-size: 16px;
      margin-bottom: 0px;
    }
    .dashboard .row-extra {
      padding: 8px;
    }
    .dashboard .col-info-extra {
      margin-top: 16px;
      padding-left: 8px !important;
      padding-right: 8px !important;
    }
    .dashboard .info-box {
      margin-bottom: 0;
      min-height: 60px;
    }
    .dashboard .status-text {
      font-size: 12px;
    }
    .dashboard .btn-share {
      width: 100%;
    }
    .dashboard .md-col-padding {
      padding-left: 0px;
      padding-right: 0px;

    }
  }
  @media (max-width: 576px) {
    .dashboard h6 {
      font-size: 15px;
    }
    .dashboard .info-box b {
      font-size: 12px;
    }
    .dashboard .row-extra {
      padding: 6px;
    }
    .dashboard .col-info-extra {
      margin-top: 12px;
      padding-left: 6px !important;
      padding-right: 6px !important;
    }
    .dashboard .info-box {
      padding: 0.5rem 1rem;
    }
  }
  @media (max-width: 400px) {
    .dashboard h6 {
      font-size: 14px;
    }
    .dashboard .row-extra {
      padding: 5px;
    }
    .dashboard .col-info-extra {
      margin-top: 10px;
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
  }
/**************************************************************************************************************************************************/
/*************************************************************** Product Single CSS ***************************************************************/
/**************************************************************************************************************************************************/
  .container.container-product {
    max-width: 1200px;
    margin: 1rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  }
  .container-product .action-row {
    position: relative;
  }
  .container-product .action-row .btn-share {
    position: absolute;
    padding: 0.5rem;
    border-radius: 6px;
    border: none;
    background-color: #ffdfd7;
    color: var(--primary-hover);
    z-index: 100;
    right: 0px;
    top: 1rem;
    height: 44px;
    width: 44px;
    font-size: 18px;
  }
  .container-product .image-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .container-product .main-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    cursor: zoom-in;
    background-color: #fff;
  }
  .container-product .main-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
  }
  .container-product .thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .container-product .thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: border 0.2s;
  }
  .container-product .thumb.active { border-color: var(--primary); }
  .container-product .details-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .container-product .brand {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
  }
  .container-product .title {
    font-size: 22px;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 0;
    text-transform: capitalize;
  }
  .container-product .sub-title {
    font-size: 12px;
    margin-top: 0.5rem;
    color: var(--hash-color);
    margin-bottom: 0;
  }
  .container-product .price-tag {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
  }
  .container-product .price-tag i { font-size: 90%; }
  .container-product .price-tag .price-cut {
    font-size: 26px;
    margin-right: 1rem;
  }
  .container-product .description { color: var(--hash-color); }
  .container-product p {
    margin-bottom: 0.5rem;
    color: var(--hash-color);
  }
  .container-product .comession {
    color: var(--gold-dark);
    font-size: 17px;
    margin-bottom: 0px;
    line-height: 1;
    font-weight: 700 !important;
  }
  .container-product .specs-list {
    list-style: none;
    padding: 0;
  }
  .container-product .specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
  }
  .container-product .buy-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1rem;
  }
  .container-product .buy-btn:hover {
    background-color: var(--secondary-hover);
    color: #FFF;
  }
  .container-product .rating-summary-box {
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
  }
  .container-product .review-card {
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
  }
  .container-product .review-card .star-rating i {
    color: #CCCCCC;
  }

  .container-product .review-card .star-rating i.active {
    color: #FFD700;
  }

  @media (min-width: 768px) {
    .container.container-product {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 768px) {
    .container.container-product {
      margin-top: 0px;
      margin-bottom: 0px;
    }
    .container-product .title {
      margin-top: 0.2rem;
      font-size: 18px;
    }
    .container-product .price-tag {
      font-size: 24px;
    }
    .container-product .buy-btn {
      margin-bottom: 1rem;
    }
    .container-product .sub-title {
      margin-top: 0.1rem;
    }
  }

/**************************************************************************************************************************************************/
/*************************************************************** Product Category CSS *************************************************************/
/**************************************************************************************************************************************************/
.caregory-list .caregory-list-ul {
  padding: 1rem;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
  margin-top: 1rem;
}
.caregory-list .caregory-list-ul .caregory-list-item .category-name {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
}
.caregory-list .caregory-list-ul .caregory-list-item .category-name.active {
  background-color: var(--secondary-hover);
}
.caregory-list .caregory-list-ul .caregory-list-item .category-name a {
  color: var(--secondary-hover);
}
.caregory-list .caregory-list-ul .caregory-list-item .category-name.active a {
  color: #FFF;
}
.caregory-list .caregory-list-ul .caregory-list-item .category-name a i {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .caregory-list .caregory-list-ul { display: none; }
}
/**************************************************************************************************************************************************/
/************************************************************** Product Purchase CSS **************************************************************/
/**************************************************************************************************************************************************/
.container-purchase .step-card {
  background: #FFF;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.container-purchase .step-header {
  background: #FFF;
  padding: 1rem 2rem 0.5rem 2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-ui);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.container-purchase .step-header h2 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  margin-bottom: 0px;
}
.container-purchase .step-content {
  padding: 0.5rem 2rem;
}
.container-purchase .address-preview {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
.container-purchase .customer-name {
  font-weight: 600;
  margin-bottom: 3px;
  color: #666;
}
.container-purchase .customer-name span {
  font-weight: 700;
}
.container-purchase .address-text {
  color: #666;
  margin-bottom: 3px;
}
.container-purchase .customer-phone {
  color: var(--hash-color);
  margin-bottom: 0.1rem;
}
.container-purchase .action-btn-link {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.container-purchase .action-btn-link:hover {
  color: var(--primary-hover);
}
.container-purchase .product-item-row {
  display: flex;
  margin-bottom: 0px;
}
.container-purchase .image-container {
  background: #FFF;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
  margin-right: 1rem;
}
.container-purchase .product-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.container-purchase .product-details {
  font-size: 13px;
  color: #878787;
  
}
.container-purchase .product-details small { font-weight: 600 !important; }
.container-purchase .variant-info {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.container-purchase .input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--hash-hover);
}
.container-purchase .marketplace-input {
  width: 100%;
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.container-purchase .marketplace-input:focus {
  border-color: #CECECE;
  box-shadow: 0 0 0 2px rgba(40,116,240,0.1);
}
.container-purchase .prime-btn {
  background: var(--secondary-color);
  color: #FFF;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: background 0.15s;
  margin-top: 2rem;
}
.prime-btn:hover {
  background: var(--secondary-hover);
}
.prime-btn.compact {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.order-cta-width {
  width: 100%;
}
.container-purchase .payment-method-tile {
  border: 1px solid #e0e0e0;
  background: #f9f9f9;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.container-purchase .method-main {
  margin-top: 1rem;
}
.container-purchase .method-main label {
  margin-bottom: 0;
}
.container-purchase .method-main a {
  font-size: 13px;
}
.container-purchase .payment-method-tile input[type="radio"] {
  accent-color: var(--primary-color);
  margin-right: 3px;
}
.container-purchase .method-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.container-purchase .method-subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.container-purchase .sticky-sidebar-card {
  background: var(--surface-white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: sticky;
  top: 80px;
  border: 1px solid rgba(0,0,0,0.03);
}
.container-purchase .sidebar-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-ui);
  padding-bottom: 1rem;
  margin: 0;
}

.container-purchase .product-thumb {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.container-purchase .product-details .product-title {
  font-size: 15px;
  color: var(--primary-color);
}
.container-purchase .product-details .variant-info {
  color: #666;
}
.container-purchase .product-details .stock-status {
  font-size: 13px;
  color: #000;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
}
.container-purchase .product-details .stock-delivery {
  margin-top: 0rem;
  margin-bottom: 0rem;
  color: #666;
  font-size: 13px;
}
.container-purchase .product-details .stock-total {
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 13px;
  color: var(--secondary-hover);
}
.container-purchase .account-details {
  margin-top: 1rem;
}
.container-purchase .account-details p {
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .container.container-purchase {
    padding: 0;
  }
  .container-purchase .step-header {
      padding: 1rem 1rem 0rem 1rem;
  }
  .container-purchase .sticky-sidebar-card {
    padding: 1rem;
  }
  .container-purchase .step-content {
    padding: 0.5rem 1rem;
  }
  .container-purchase .col-payment-mobile {
    margin-top: 0.6rem;
  }
  .sticky-sidebar-card {
    position: static;
  }
  .container-purchase .action-btn-link {
    position: relative;
    margin-top: 0.5rem;
  }
  .container-purchase .input-label {
    margin-bottom: 4px;
  }
  .container-purchase .prime-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 1rem;
  }
}

/**************************************************************************************************************************************************/

/************************************************************** Product Purchase CSS **************************************************************/
.profile .form-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px !important;
  color: var(--hash-hover);
  margin-top: 0.6rem !important;
}
.profile .btn-profle {
  background: var(--secondary-color);
  color: #FFF;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: background 0.15s;
  margin-top: 2rem;
}
.profile .btn-profle:hover {
  background: var(--secondary-hover);
  color: #FFF !important;
}




/**************************************************************************************************************************************************/
/******************************************************************** Orders CSS ******************************************************************/
  .orders-content-area {
    border: 1px solid #EFEFEF;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    background-color: #FFF;
    border-radius: 0.5rem;
  }
  .orders-content-area p {
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    color: #888;
    font-weight: 700;
    margin-bottom: 0px;
  }
  .orders-content-area .order-card {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 110px 3fr  2fr;
    gap: 0.6rem;
  }
  .orders-content-area .prod-img-box {
    display: flex;
    border-radius: 6px;
  }
  .orders-content-area .prod-img-box img {
    padding: 2px;
    border-radius: 6px;
  }
  .orders-content-area .prod-details .title {
    font-size: 15px;
    color: var(--secondary-color);
  } 
  .orders-content-area .prod-details .sub-title {
    font-size: 13px;
    color: #888;
    line-height: 1;
  }
  .orders-content-area .prod-details .prod-price {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 0.2rem;
  }
  .orders-content-area .status-text {
    color: #333;
    font-size: 14px;
  }
  .orders-content-area .status-desc {
    color: #999;
    font-size: 13px;
  }
  .orders-content-area .status-container small {
    font-size: 13px;
    font-weight: 600;
    color: #999;
  }
  .orders-content-area .oder-lucky-div {
    background-color: var(--gold-light);
    border-radius: 6px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    position: relative;
  }
  .orders-content-area .oder-lucky-div h6 {
    margin-bottom: 0;
  }
  .orders-content-area .oder-lucky-div a {
    font-size: 14px;
    position: absolute;
    right: 1rem;
    color: var(--gold-dark);
    top: 0.5rem;
  }
  .orders-content-area .oder-lucky-div a:hover {
    color: var(--gold-darker);
  }
  .orders-content-area .review-title {
    display: block;
    font-size: 80%;
  }
  .orders-content-area .review-section i {
    color: #DDDDDD;
    font-size: 18px;
  }
  .orders-content-area .review-section i.active {
    color: #FFD700;
  }


  .orders.review-model .review-model-star {
    font-size: 30px;
    color: #DDDDDD;
    transition: 0.15s;
  }
  .orders.review-model .review-model-star.active {
    color: #FFD700;
  }

@media (max-width: 768px) {
  .orders-content-area .order-card {
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
  }
  .orders-content-area .status-container {
    grid-column: span 2;
  }
  .orders-content-area {
    padding: 1rem;
    margin: 0.5rem;
  }
  .orders-content-area .oder-lucky-div a {
    top: 0.3rem;
  }
}
@media (max-width: 576px) {
  .orders-content-area { padding: 0.8rem; }
}
@media (max-width: 400px) {
  .orders-content-area { padding: 0.6rem; }
}





/**************************************************************************************************************************************************/
/********************************************************************* Card CSS *******************************************************************/
/**************************************************************************************************************************************************/
.dashboard .card-body .table td, .dashboard .card-body .table th {
  font-size: 90% !important;
}
.dashboard .card-body .table td {
  font-weight: 600 !important;
}
.dashboard .card-body .table td b {
  font-weight: 600 !important;
}
.dashboard .card-header {
  padding: 8px 16px;
  background-color: var(--secondary-color) !important;
}
.dashboard .card-header .card-title {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 0;
}
.dashboard .card-body .table {
  margin-bottom: 0;
}
.dashboard .card-body .table th {
  text-align: center !important;
  padding: 6px !important;
}
.dashboard .card-body .table td, .dashboard .card-body .table th {
  padding: 4px;
  vertical-align: middle;
}
.dashboard .btn-primary {
  color: #FFF;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.dashboard .btn-primary:hover {
  background-color: var(--secondary-hover) !important;
  border: 1px solid var(--secondary-hover);
}


/**************************************************************************************************************************************************/
/********************************************************************* Notification CSS ***********************************************************/
/**************************************************************************************************************************************************/
.notification-area {
  padding: 0px 1rem;
  position: relative;
}
.notification-area .title {
  font-size: 18px;
  color:var(--secondary-color);
  margin-bottom: 0.5rem;
}
.notification-area .sub-title {
  font-size: 14px;
  color: #888;
  margin-bottom: 1rem;
}
.notification-area .date {
  position: absolute;
  right: 0;
  top: 0;
  color: #888;
  font-size: 12px;
}
@media (max-width: 768px) {
  .notification .col-md-12 {
    padding: 0;
  }
  .notification-area .date {
    left: 0 !important;
    position: relative;
  }
  .notification-area .title {
    font-size: 16px;
    color:var(--secondary-color);
    margin-bottom: 0.2rem;
  }
  .notification-area .sub-title {
    font-size: 13px;
  }
}

/**************************************************************************************************************************************************/
/********************************************************************* Carousel CSS ***************************************************************/
/**************************************************************************************************************************************************/
#heroCarousel {
  height: 100vh;
}
.carousel-inner, 
.carousel-item {
    height: 100%;
}
.carousel-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: none !important;
}
.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15%;
    right: 15%;
    z-index: 2; /* Ensures text stays above the dim overlay */
}
.animate-text {
    animation: fadeInUp 1s ease-in-out;
}
.carousel .display-3 {
  font-size: 50px;
  font-weight: 600 !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  #heroCarousel {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .carousel .display-3 {
    font-size: 30px;
  }
  #heroCarousel {
    height: 34vh;
  }
}
@media (max-width: 576px) {
  .carousel .display-3 {
    font-size: 22px;
  }
  .carousel .lead {
    font-size: 14px;
  }
  #heroCarousel {
    height: 26vh;
  }
}
@media (max-width: 400px) {
  .carousel .display-3 {
    font-size: 18px;
    font-weight: 600;
  }
  .carousel .lead {
    font-size: 13px;
  }
  #heroCarousel {
    height: 26vh;
  }
}








.model-address .card-header {
  padding: 8px 16px;
  color: #FFF;
  background-color: var(--secondary-color) !important;
  font-size: 15px;
}
.model-address .card-header h5 {
  font-size: 15px;
}
.model-address .card-body {
  font-size: 13px !important;
}
.model-address .btn {
  background-color: var(--secondary-color) !important;
  color: #FFF;
  margin-top: 2rem;
}









/**************************************************************************************************************************************************/
/********************************************************************* Whatsapp CSS ***************************************************************/
/**************************************************************************************************************************************************/
  .whatsapp-widget-container {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    z-index: 9999;
    font-family: Arial, sans-serif;
  }
  .whatsapp-icon-btn {
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .whatsapp-icon-btn:hover {
    transform: scale(1.08);
  }
@media (max-width: 576px) {
  .whatsapp-widget-container {
    bottom: 5rem;
    right: 1rem;
  }
  .whatsapp-icon-btn {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }
}

/**************************************************************************************************************************************************/
/********************************************************************* Directreferals CSS *********************************************************/
/**************************************************************************************************************************************************/
.dashboard.dr .dashboard-content label {
  font-size: 85%;
}
.dashboard.dr .dashboard-content input, .dashboard.dr .dashboard-content .form-control {
  font-size: 14px;
  line-height: 1;
}
.dashboard.dr .dashboard-content .btn-dashsearch {
  height: 32px; 
  margin-top: 24px; 
  line-height: 1;
}
@media (max-width: 576px) {
  .dashboard.dr .dashboard-content .row.search {
    padding-left: 10px;
    padding-right: 10px;
  }
}




