 /* pp  Thumbnail styles */
    .product-thumbnail:hover {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Dot indicator styles */
    .dot {
        transition: all 0.3s ease;
    }
    
    .dot:hover, .dot.active {
        background: #007bff !important;
        transform: scale(1.2);
    }
    
    /* Main image track styles */
    .main-image-track {
        height: 100%;
    }
    
    .main-image-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .product-thumbnail {
            width: 70px !important;
            height: 70px !important;
        }
        
        .main-product-image {
            max-height: 350px !important;
        }
    }
    
    @media (max-width: 576px) {
        .product-thumbnail {
            width: 60px !important;
            height: 60px !important;
        }
        
        .dot-indicators {
            margin-top: 10px;
        }
        
        .dot {
            width: 10px !important;
            height: 10px !important;
        }
    }
/* Main Image Carousel Variables end */


/* Like System Container */
.like-system {
    display: inline-block;
    margin: 5px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Button Styles */
.like-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background-color: #f8f8f8;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Hover State */
.like-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Liked State */
.like-btn.liked {
    background-color: #fff0f0;
    border-color: #ffcccc;
    color: #d32f2f;
}

.like-btn.liked .like-icon {
    color: #d32f2f;
    animation: heartBeat 0.6s;
}

/* Login Required State */
.like-btn.login-required {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.like-btn.login-required:hover {
    background-color: #f0f0f0;
    transform: none;
}

/* Icon Styles */
.like-icon {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Counter Styles */
.like-counter {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .like-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .like-icon {
        font-size: 16px;
    }
}

/* Like System Container pp end */

/* stock System Container pp end */
.stock-info {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.stock-info span {
    font-weight: 600;
    margin-right: 5px;
}

.stock-info.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.stock-info.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.stock-info.variation-stock {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;

}

/* stock System Container pp end */

/* price exchange  System Container pp  */
.price-list {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    
    .original-price {
        color: #6c757d;
        font-size: 1rem;
    }
    
    .current-price {
        color: #28a745;
        font-size: 1.5rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .discount-percentage {
        background: #ffc107;
        color: #212529;
        font-size: 0.85rem;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-weight: 600;
    }
    
    .price-savings {
        color: #dc3545;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .price-list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }
        
        .current-price {
            font-size: 1.3rem;
        }
    }




    .product-detail-container {
        margin-top: 0.5rem; /* Default for mobile */
        padding-left: 0.2rem; /* Default for mobile */
    }
    
    @media (min-width: 576px) {
        .product-detail-container {
            padding-left: 0.75rem;
        }
    }
    
    @media (min-width: 768px) {
        .product-detail-container {
            margin-top: 1.5rem;
            padding-left: 1rem;
        }
    }
    
    @media (min-width: 992px) {
        .product-detail-container {
            padding-left: 1.5rem;
        }
    }

    /* price exchange  System Container pp end */



      .product-meta-container {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 1.5rem;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    .category-box, .social-share-box {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 1rem 1.5rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .category-label, .share-label {
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .category-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .category-link {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: #e9ecef;
        color: #212529;
        text-decoration: none;
        border-radius: 20px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .category-link:hover {
        background: #dee2e6;
        color: #000;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    .social-icon.facebook {
        background: #3b5998;
    }

    .social-icon.twitter {
        background: #1da1f2;
    }

    .social-icon.whatsapp {
        background: #25d366;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .product-meta-container {
            flex-direction: column;
            gap: 1rem;
        }
        
        .category-box, .social-share-box {
            padding: 0.75rem 1rem;
        }
    }

    /* fecebook whhat   System Container pp end */


     /* STYLES FOR BOX-TYPE ATTRIBUTE SELECTORS */
    .product-attribute-box {
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        background: #f9f9f9;
    }
    
    .attribute-title {
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    /* COLOR BOX STYLES */
    .color-options-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .color-box {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #fff;
        text-shadow: 0 0 2px #000;
    }
    
    .color-box:hover {
        border-color: #333;
        transform: scale(1.1);
    }
    
    .color-box.active {
        border-color: #000;
        box-shadow: 0 0 5px rgba(0,0,0,0.3);
    }
    
    /* SIZE BOX STYLES */
    .size-select-box {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .size-select-box:hover {
        border-color: #999;
    }
    
    .size-select-box:focus {
        outline: none;
        border-color: #333;
        box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
    }


  /* have nice day  System Container pp end */

    .mini-deal-heading {
    display: inline-block;
    padding: 8px 12px;
    background: #fff9f9;
    border-radius: 6px;
    border: 1px solid #ffebee;
    margin: 10px 0;
}

.section-heading {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e53935;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.fire-icon {
    font-size: 1rem;
}

.heading-text {
    flex-grow: 1;
}

.friendly-badge {
    background: #4caf50;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    animation: gentleBounce 3s infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .section-heading {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .friendly-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}


/* Sidebar Styles */
#sidenav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  z-index: 1001;
  transition: left 0.3s ease-out;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

#sidenav.active {
  left: 0;
}

/* Overlay Styles */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent scrolling when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}



/* cegory side cagory page css Header Styles */
  
  

  /* Sidebar Styles */
  .sidenav {
    position: fixed;
    top: 60px;
    left: -300px;
    width: 280px;
    height: calc(100vh - 60px);
    background: white;
    z-index: 1001;
    transition: left 0.3s ease-out;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }

  .sidenav.active {
    left: 0;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .sidebar-header {
    margin-bottom: 20px;
    text-align: center;
  }

  .sidebar-title {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
  }

  .divider {
    border: none;
    height: 1px;
    background: #eee;
    margin: 10px 0;
  }

  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-item {
    text-align: center;
  }

  .category-link {
    text-decoration: none;
    color: #333;
    display: block;
  }

  .category-image {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 4px;
  }

  .category-name {
    display: block;
    font-size: 14px;
  }

  .category-divider {
    border: none;
    height: 2px;
    background: #346aff;
    width: 0;
    margin: 5px auto 0;
    transition: width 0.3s ease var(--animation-delay);
  }

  .category-item:hover .category-divider,
  .category-item.active .category-divider {
    width: 80%;
  }

  /* Overlay Styles */
  .overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Body padding to prevent content jump */
  body {
    padding-top: 60px;
  }



  