/*
 Theme Name: Kaboz Theme
 Author: Douxtech
 Description: A custom WordPress theme kaboz online store
 Version: 1.0
 Text Domain: kaboz-theme
*/
:root {
    --primary-color: #005E7A;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

/*--------------------------------------------------------------
2. Base Setup
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
3. Typography
--------------------------------------------------------------*/

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

/* Paragraphs */
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Blockquotes */
blockquote {
  font-style: italic;
  color: #666;
  padding-left: 1rem;
  border-left: 3px solid #ccc;
}

/*--------------------------------------------------------------
4. Navbar Styling
--------------------------------------------------------------*/

.navbar,
.navbar * {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
}

.navbar .nav-link {
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #007bff;
  text-decoration: none;
}

/*--------------------------------------------------------------
5. Buttons
--------------------------------------------------------------*/

button,
input[type="submit"],
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  transition: background 0.3s, color 0.3s;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
  opacity: 0.9;
  cursor: pointer;
}

/*--------------------------------------------------------------
6. Forms
--------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
7. Footer (Optional styling)
--------------------------------------------------------------*/

footer {
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #777;
  font-size: 14px;
}

/*--------------------------------------------------------------
8. Responsive Typography (Optional Enhancements)
--------------------------------------------------------------*/

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .navbar .nav-link {
    font-size: 14px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

@media (min-width: 769px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }
}


/* Hero Carousel */
.hero-slide {
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color), #004499);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #004499) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--accent-color), #1e7e34) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color), #e0a800) !important;
}
.bg-grey
{
	background-color: #4a4a4a;
}
/* Feature Boxes */
.feature-box {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}
.wd-50 {
    width: 120px;
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: auto;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-card2 {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height:auto;
}

.category-card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-card:hover img {
    transform: scale(1.1);
}
.small-grey, .small-grey a
{
	font-size: 12px;
	color: #d4d4d4;
	text-decoration: none;
}
#search-button
{
	height: 40px;
	border: #000 solid 1px;
	padding-top:3px;
}
#ajax-product-search
{
    height:40px;
}

/* Product Cards */
.product-card {
    background: white;
    overflow: hidden;

}

.product-card:hover {
    transform: translateY(-1px);

}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 0.9rem;
}

.price {
    font-size: 1.1rem;
}

/* Navigation */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Buttons */
.btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}


/* Search Bar */
.input-group .form-control {
    border-radius: 0;
}

.input-group .btn {
    border-radius: 0;
	padding:0 20px; 
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .category-card {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004499;
}

/* ========= Mega Menu Styles ========= */

/* Navbar Base */
.navbar {
    background-color: #005E7A;
    font-weight: 600;
    padding:0;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 1.4rem 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #000 !important;
    background-color: #fff !important;
}
.navbar .dropdown-toggle::after {
    display: none;
}

/* Dropdown full-width container */
.navbar .dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0;
    border: none;
    padding: 2rem 2rem 1rem;
    background-color: #f8faff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

/* Column section for menu */
.mega-menu .column {
    flex: 1;
    padding: 0 1rem;
    min-width: 180px;
}

/* Headings */
.mega-menu h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000;
}

/* Links */
.mega-menu a {
    display: block;
    color: #333;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-menu a:hover {
    color: var(--primary-color);
    padding-left: 0.25rem;
}

/* Image box */
.mega-menu .image-box {
    flex: 1;
    text-align: center;
}

.mega-menu .image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Brand logos row */
.mega-menu-brands {
    background: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid #ddd;
}

.mega-menu-brands img {
    height: 40px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.mega-menu-brands img:hover {
    filter: grayscale(0%);
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu.mega-menu {
    display:inline-block;
  }

  .navbar .dropdown-menu.mega-menu {
    display: none;
    position: absolute;
  }
}
/* Parent container */
.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
}

/* Common styles for each icon block */
.header-icons .icon-block {
    color: #000;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease;
}

.header-icons .icon-block i {
    font-size: 1.5rem;

}

/* Cart badge */
.header-icons .cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.50rem;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Dropdown arrow */
.header-icons .dropdown-toggle::after {

    font-size: 0.65rem;
    margin-left: 4px;
}

/* Hover effect */
.header-icons .icon-block:hover {

}
.cart-acount-dropdown
{
	background: #000;
	color: #fff;
	border-radius: 0;
	border: none;
}
.cart-acount-dropdown li
{
	font-size: 12px;
	text-transform: uppercase;

}
.cart-acount-dropdown li a
{
	color: #fff;

}
/* Wrapper for both selectors */
/* Optional: Add spacing between them if needed */
.currency-switcher-wrap {
    margin-right: 8px;
}
/* Common select styling */
.currency-selector,
.language-selector {
	background:#000;
    color: #fff;
    border: 1px solid #444;
    font-size: 12px;
    padding: 2px 20px; /* extra right padding for arrow */
    border-radius: 0px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23fff' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    cursor: pointer;
}

/* Wrapper for inline layout */
.currency-switcher-wrap,
.language-switch {
    display: inline-block;
    margin-left: 10px;
}
.top-right small
{
	font-size: 12px;
	color: #d4d4d4;
}
.top-right small a
{
	color: #d4d4d4;
	text-decoration: none;
}
.simple-dropdown
{
	background: #4a4a4a;
	padding: 0;
	border-radius: 0;
}
.simple-dropdown li a {
    color: #fff;
    border-radius: 0;
    padding: 5px 8px;
    font-size: 14px;
}
a.dropdown-item {
   
}
 #featuredProducts3-wrapper::-webkit-scrollbar, #featuredProducts4-wrapper::-webkit-scrollbar, #featuredProducts5-wrapper::-webkit-scrollbar, #featuredProducts6-wrapper::-webkit-scrollbar,#featuredProducts7-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
/* Category Page Specific Styles */

.category-header {
    background: #000;
}

.category-stats .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}


.filter-content .form-check {
    margin-bottom: 0.75rem;
}

.filter-content .form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.filter-content .form-check-input {
    margin-top: 0.2rem;
}

/* Products Grid */
.products-grid .product-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.products-grid .product-card:hover {
    transform: translateY(-1px);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.product-badges .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.25rem;
}

.product-category {
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-features {
    margin-bottom: 1rem;
    min-height: 2rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    border-radius: 6px;
}

/* View Options */
.view-options .btn {
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
}

.view-options .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Results Info */
.results-info {
    font-size: 0.9rem;
}

/* Pagination */
.pagination .page-link {
    border-radius: 6px;
    margin: 0 2px;
    border: 1px solid #dee2e6;
    color: #000;
}

.pagination .page-item.active .page-link {
    background-color: #000;
    border-color: #000;
	color: #fff;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    border-color: #000;
}

/* List View Styles */
.products-grid.list-view .row {
    flex-direction: column;
}

.products-grid.list-view .col-lg-4,
.products-grid.list-view .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
}

.products-grid.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-grid.list-view .product-title {
    height: auto;
    -webkit-line-clamp: 1;
}
.quick-links li a
{
	color: rgb(33, 37, 41);
	text-decoration: none;
}
/* Responsive Design */
@media (max-width: 992px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .category-header .row {
        text-align: center;
    }
    
    .category-header .col-md-4 {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .filters-sidebar {
        padding: 1rem;
    }
    
    .filter-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 180px;
    }
    
    .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: stretch;
        gap: 0rem;
    }
    
    .d-flex.align-items-center.gap-3 {
        justify-content: space-between;
    }
}

/* Loading States */
.product-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Filter Animation */
.filter-content {
    max-height: 300px;
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.filter-content::-webkit-scrollbar {
    width: 4px;
}

.filter-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.filter-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.filter-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size:13px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Price Styling */
.price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price .text-primary {
    font-size: 1.25rem;
}

.price .text-muted {
    font-size: 1rem;
}

/* Rating Styling */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    font-size: 0.9rem;
}

/* Stock Status */
.stock-status {
    font-size: 0.85rem;
    font-weight: 500;
}

.stock-status.in-stock {
    color: var(--accent-color);
}

.stock-status.low-stock {
    color: var(--warning-color);
}

.stock-status.out-of-stock {
    color: var(--danger-color);
}
.filter-section input[type="number"] {
width: 100px;
    border-color: #d6d6d6;
    border-radius: 0;
}
.filter-content a
{
color:#444;
}
.bg-grey
{
	background-color: #333333;
	
}
.breadcrumb li a, .breadcrumb-item.active
{
	color: #fff !important;
}
   .thumbnail.active {
      border: 2px solid black;
    }
    .modal-img {
      max-height: 80vh;
      object-fit: contain;
    }
.thumb-img {
    width: 80px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid transparent;
    height: 80px;
}
  .thumb-img:hover {
    transform: scale(1.05);
  }

  .thumb-img.active {
    border: 2px solid #000;
  }

  .zoomable {
    cursor: zoom-in;
  }

  .zoom-modal {
    display: none;
    position: fixed;
    z-index: 1055;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.96);
    overflow: auto;
    text-align: center;
  }

  .zoom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: none !important; /* Removes drop shadow */
  }

  .zoom-close, .zoom-prev, .zoom-next {
    position: absolute;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1056;
    user-select: none;
  }

  .zoom-close {
    top: 20px;
    right: 35px;
  }

  .zoom-prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }

  .zoom-next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .zoom-prev:hover, .zoom-next:hover, .zoom-close:hover {
    color: #ccc;
  }
@media (max-width: 767.98px) {
  /* Center each column on mobile */
  header .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.2rem;
  }

  /* Make header icons inline (row) instead of stacked */
  .header-icons {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Optional: Align dropdown and icons nicely */
  .icon-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    text-decoration: none;
  }
	.feature-box {
    padding: 1rem 1rem;

}
	footer .row > [class*="col-"] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer h6 {
    margin-top: 1rem;
  }

  footer .footer-btn-app-download {
    align-items: center;
  }

  footer .form-control,
  footer form {
    width: 100%;
  }

  footer form {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  footer .form-control {
    margin-right: 0 !important;
  }

  footer .border-top .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  footer .d-flex.gap-3 {
    justify-content: center;
  }
	 .currency-switcher-wrap,
  .language-switch {
    display: inline-block;
    vertical-align: middle;
  }

  .currency-selector,
  .language-selector {
    display: inline-block;
    width: auto;
  }

  .flex-column {
   /* flex-direction: row !important; */
    justify-content: center;
    gap: 0.5rem;
  }
	.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
	.navbar-toggler:focus
	{
		box-shadow: none;
	}
/* Slide animation override for Bootstrap collapse */
#mainNavbar.collapse {
  transition: max-height 0.4s ease-in-out;
  overflow: hidden;
}

#mainNavbar.collapsing {
  max-height: 0;
}

#mainNavbar.collapse.show {
  max-height: 500px; /* adjust as needed */
}
	.mega-menu {
    max-height: 400px; /* Adjust as per your design */
    overflow-y: auto;
  }

  .mega-menu .row {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .mega-menu .col-md-2,
  .mega-menu .col-md-4 {
    width: 100% !important;
  }

  .mega-menu img.img-fluid {
    max-width: 100%;
    height: auto;
  }

  .mega-menu .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.currency-selector,
.currency-selector:focus,
.currency-selector:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
/* Sidebar container */
.filters-sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* Heading */
.filters-sidebar h4 {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #222;
}

/* Parent category link */
.filters-sidebar ul > li > a, .filter-title {
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.filters-sidebar ul > li > a:hover {
    color: #007bff;
}

/* Subcategory checkbox list */
.filters-sidebar ul ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 0px;
}

/* Each checkbox item */
.filters-sidebar label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    cursor: pointer;
}

.filters-sidebar input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #007bff;
}

/* Dark theme support (if used) */
body.dark-theme .filters-sidebar {
    background-color: #2c2c2c;
    color: #eee;
}

body.dark-theme .filters-sidebar h4 {
    color: #fff;
    border-color: #444;
}

body.dark-theme .filters-sidebar ul > li > a {
    color: #ccc;
}

body.dark-theme .filters-sidebar ul > li > a:hover {
    color: #fff;
}

body.dark-theme .filters-sidebar label {
    color: #ddd;
}
/* Grid View Example */
    .grid-view .product-item {
        width: 23%;
        margin: 1%;
        display: inline-block;
        vertical-align: top;
    }

    /* List View Example */
    .list-view .product-item {
        width: 100%;
        margin-bottom: 15px;
        display: block;
    }
/* Product Grid (Ensures 3 products per row) */
.products-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.products-grid .col-12,
.products-grid .col-sm-6,
.products-grid .col-lg-4 {
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
	box-shadow: none;
	border: none;
}
@media (min-width: 992px) {
    .products-grid .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
.products-grid .product-card {
    display: flex;
}
.products-grid .product-card > a {
    width: 100%;
}

/* Other Existing Styles (Header, Footer, Cart, Checkout) */
/* My Account Navigation Styles */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 100%;
    padding: 20px;
}
.my-account .list-group.list-group-flush {
    background: none; /* Light grey background */
    border-radius: 0px;
}

.my-account .list-group-item {
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
}

.my-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.my-account .woocommerce-MyAccount-navigation-link a {
    color: #6c757d; /* Muted grey text */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.my-account .woocommerce-MyAccount-navigation-link a:hover,
.my-account .woocommerce-MyAccount-navigation-link.is-active a,
.my-account .woocommerce-MyAccount-navigation-link a[aria-current="page"] {
    color: #C40233; /* Primary color for hover/active */
    padding-left: 1rem;
}

.my-account .woocommerce-MyAccount-navigation-link.is-active a {
    font-weight: 600; /* Bolder text for active link */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .my-account .woocommerce-MyAccount-navigation-link a {
        font-size: 0.95rem;
    }
}
/* My Account Login and Register Form Styles 
.my-account .card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}*/

.my-account .card h5 {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.my-account .woocommerce-form-login,
.my-account .woocommerce-form-register {
    max-width: 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.my-account .form-row {
    margin-bottom: 1rem;
}

.my-account .form-row label {
    color: #212529;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.my-account .form-row .required {
    color: #dc3545;
    font-weight: 600;
}

.my-account .woocommerce-Input--text {
    border: 1px solid #6c757d;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.95rem;
    color: #212529;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.my-account .woocommerce-Input--text:focus {
    border-color: #C40233;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
    outline: none;
}

.my-account .woocommerce-form__label-for-checkbox {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

.my-account .woocommerce-form-login__submit {
    background-color: #ffc107;
    color: #212529;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.my-account .woocommerce-form-login__submit:hover {
    background-color: #e0a800;
}

.my-account .woocommerce-LostPassword a {
    color: #C40233;
    font-size: 0.9rem;
    text-decoration: none;
}

.my-account .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .my-account .woocommerce-form-login,
    .my-account .woocommerce-form-register {
        max-width: 100%;
    }
    .my-account .card h5 {
        font-size: 1.1rem;
    }
    .my-account .form-row label,
    .my-account .woocommerce-Input--text {
        font-size: 0.9rem;
    }
}
.woocommerce-account .addresses .title .edit
{
	float: none;
	color: #C40233;
}
.woo-sidebar-account li a
{
	color: #000;
}
.my-account .list-group-item
{
	border-bottom: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.bg-yellow
{
	background: #005E7A;
}
.text-yellow
{
	color: #005E7A;
}
.bg-grey
{
	background: #333333;
}
.woocommerce-info {
    border-top-color:  #005E7A;
}
.woocommerce-info::before {
    color: #005E7A;
}
.woocommerce-privacy-policy-link
{
	color: #005E7A;
}
/* === Cart Table === */
.woocommerce-cart .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.woocommerce-cart .shop_table thead th {
    background-color: #343a40;
    color: #fff;
    font-weight: 600;
}

.woocommerce-cart .product-name a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-cart .product-name a:hover {
    text-decoration: underline;
}

/* === Quantity Input === */
.woocommerce .quantity .qty {
    width: 80px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 0px;
	height: 36px;
	  font-size: 13px;
}
.add-cart-btn
{
    	 font-size: 13px !important;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1 !important;
}

/* === Remove Button === */
.woocommerce-cart .product-remove a {
    color: red;
    font-size: 25px;
	background: none;
	border: none;
}

.woocommerce-cart .product-remove a:hover {
    color: #a71d2a;
}

/* === Cart Totals Box === */
.cart-collaterals .cart_totals {
    border: 1px solid #dee2e6;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 30px;
}

.cart-collaterals h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th,
.cart_totals td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

/* === Buttons === */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #C40233;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #145c32;
}

/* === Responsive Table === */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.shop_table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    .woocommerce-cart table.shop_table td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }

    .woocommerce-cart .cart-collaterals {
        margin-top: 20px !important;
    }
}
.checkout-wrapper {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
        padding: 2rem;
    }

    .checkout-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #333;
    }

    .woocommerce-checkout .form-row {
        margin-bottom: 1rem;
    }

    .woocommerce-checkout input,
    .woocommerce-checkout select,
    .woocommerce-checkout textarea {
        border-radius: 0px;
        border: 1px solid #000;
        padding: 8px 15px;
        width: 100%;
    }

    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .woocommerce-checkout .woocommerce-checkout-review-order {
        margin-top: 2rem;
    }

    .woocommerce-checkout-payment {
        margin-top: 2rem;
    }

    .place-order button {
        width: 100%;
        border-radius: 8px;
        padding: 12px;
    }
/* WooCommerce main action buttons - default style */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
#respond input#submit.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
a.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
button.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
input.button.alt, 

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce #respond input#submit.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce a.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce button.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce input.button.alt {
    background-color: #000;
    color: #fff;
    border-color: #000;
    transition: all 0.3s ease;
}

/* Hover / focus styles */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
#respond input#submit.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
a.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
button.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
input.button.alt:hover, 

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce #respond input#submit.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce a.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce button.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) 
.woocommerce input.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
#respond input#submit.alt:focus, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
a.button.alt:focus, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
button.button.alt:focus, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) 
input.button.alt:focus {
    background-color: #C40233;
    color: #000;
    border-color: #C40233;
}
/* Container padding */
/* Table styling */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
}

/* Table headers */
.woocommerce-orders-table th {
    background-color: #000;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

/* Table rows */
.woocommerce-orders-table tr {
    border-bottom: 1px solid #f0f0f0;
}

/* Table data cells */
.woocommerce-orders-table td {
    padding: 12px 15px;
    vertical-align: middle;
    font-size: 15px;
}
.woocommerce-orders-table__cell-order-number {
    background: none !important;
    border: none !important;
}
/* Hover effect */
.woocommerce-orders-table tr:hover {
    background-color: #f9f9f9;
}

/* Currency & price style */
.woocommerce-Price-amount {
    font-weight: bold;
    color: #000;
}

/* Action Button */
.woocommerce-orders-table__cell-order-actions a.button {
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.woocommerce-orders-table__cell-order-actions a.button:hover {
    background-color: #C40233;
    color: #fff;
}
.woo-multi-currency.wmc-sidebar.wmc-right {
    right: -202px;
    display: none;
}
/* Container spacing */

/* Form row styling */
.woocommerce form .form-row {
    margin-bottom: 20px;
}

/* Label style */
.woocommerce form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    color: #333;
    font-size: 14px;
}

/* Input fields */
.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 42px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Focus state */
.woocommerce form input:focus {
    border-color: #000;
    outline: none;
}

/* Display name description text */
#account_display_name_description {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}

/* Fieldset legend */
.woocommerce form fieldset legend {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* Submit button */
.woocommerce form .woocommerce-Button.button {
    background-color: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.woocommerce form .woocommerce-Button.button:hover {
    background-color: #C40233;
    color: #fff;
}

/* Responsive layout */
@media (min-width: 768px) {
    .woocommerce-form-row--first,
    .woocommerce-form-row--last {
        width: 48%;
        float: left;
    }

    .woocommerce-form-row--first {
        margin-right: 4%;
    }

    .clear {
        clear: both;
    }
}
/* Section headings */
.woocommerce-order-details__title,
.woocommerce-column__title {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 16px;
    color: #000;
}

/* Table base style */
.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.woocommerce-table th,
.woocommerce-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 15px;
    vertical-align: middle;
}

/* Currency and price styling */
.woocommerce-Price-amount {
    font-weight: 600;
    color: #000;
}

/* Product link styling */
.woocommerce-table__product-name a {
    color: #000;
    text-decoration: none;
}

.woocommerce-table__product-name a:hover {
    text-decoration: underline;
}

/* Tfoot rows bold */
.woocommerce-table tfoot th,
.woocommerce-table tfoot td {
    font-weight: 600;
    background: #f8f9fa;
}

/* Billing section */
.woocommerce-customer-details address {
    font-style: normal;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.woocommerce-customer-details p {
    margin: 6px 0;
    color: #555;
}
/** Two-column layout */
.woocommerce-Addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.woocommerce-Address {
    flex: 1 1 45%;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 20px;
    background: none;
	width:50%;
}

/* Title and Edit link */
.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
}

.woocommerce-Address-title h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.woocommerce-Address-title .edit {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.woocommerce-Address-title .edit:hover {
    text-decoration: underline;
}

/* Address content */
.woocommerce-Address address {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-top: 10px;
}
.cont-main .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #dee2e6;
  margin-bottom: 30px;
}

.cont-main .woocommerce-MyAccount-content table.shop_table thead {
  background-color: #000;
  color: #fff;
}

.cont-main .woocommerce-MyAccount-content table.shop_table thead th {
  color: #fff;
  padding: 12px;
  font-weight: bold;
}

.cont-main .woocommerce-MyAccount-content table.shop_table tbody td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.cont-main .woocommerce-MyAccount-content a.button,
.cont-main .woocommerce-MyAccount-content button.button,
.cont-main .woocommerce-MyAccount-content input.button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cont-main .woocommerce-MyAccount-content a.button:hover,
.cont-main .woocommerce-MyAccount-content button.button:hover,
.cont-main .woocommerce-MyAccount-content input.button:hover {
  background-color: #C40233;
  color: #fff;
}
/* --- WooCommerce Address Form Styling using Bootstrap --- */

.woocommerce-address-fields__field-wrapper .form-row {
	margin-bottom: 1rem;
}

.woocommerce-address-fields__field-wrapper label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.woocommerce-address-fields__field-wrapper input.input-text,
.woocommerce-address-fields__field-wrapper select {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 0.375rem;
	font-size: 1rem;
	background-color: #fff;
	box-shadow: none;
	transition: border-color 0.2s ease-in-out;
}

.woocommerce-address-fields__field-wrapper input.input-text:focus,
.woocommerce-address-fields__field-wrapper select:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
}

.woocommerce-address-fields .form-row .optional {
	font-style: italic;
	font-size: 0.875rem;
	color: #888;
}

/* Save Button - Styled as Bootstrap Primary */
.woocommerce-address-fields button.button {
	background-color: #000;
	color: #fff;
	border: none;
	padding: 0.6rem 1.2rem;
	border-radius: 0.375rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.woocommerce-address-fields button.button:hover {
	background-color: #0056b3;
}
#ajax-search-results a.list-group-item {
    background-color: #C40233;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

#ajax-search-results a.list-group-item:hover {
    background-color: #000;
    color: #fff;
}

#ajax-search-results .list-group-item:last-child {
    border-bottom: none;
}
.compare-table th,
.compare-table td {
    vertical-align: middle !important;
}
.compare-table th {
    font-size: 1.1rem;
}
#compare-popup .btn {
  border-radius: 0;
  background: black;
  color: white;
}
.remove-product {
  cursor: pointer;
  color: red;
  font-weight: bold;
}
/*---------------------------------Mega Menu---------------------------*/
/* Make mega menu full width */
/* Full-width mega menu */


.mega-brand-logo {
    height: 80px;
    width: auto;
}
/* Optional: Mega Menu Image Styling */
.mega-menu-left-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}
  #dailyOffersWrapper::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    width: 85vw;
    max-width: 260px;
  }

  @media (min-width: 576px) {
    .product-card {
      width: 48%;
    }
  }

  @media (min-width: 768px) {
    .product-card {
      width: 230px;
    }
  }
.contact-section .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.contact-section textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-section input[type="submit"],
.contact-section button[type="submit"] {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
}

.wishlist-popup {
    z-index: 9999;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}
.heart-icon {
    color: black;
    transition: color 0.3s;
    background: none;
    border: none;
}
.heart-icon.active {
    color: red;
}
.wishlist-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #C40233;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
}

.wishlist-icon {
    z-index: 5; /* Higher than image or other elements */
}

.product-card {
    position: relative;
    overflow: visible !important; /* Ensure absolute child is visible */
}

.wishlist-icon .wishlist-btn {
    background: none;
    border: none;
    outline: none;
}

.heart-icon {
    color: black;
    transition: color 0.3s ease;
}

.heart-icon.added {
    color: red;
}
.checkout-button.button.alt.wc-forward {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
	text-decoration: none !important;
}

.checkout-button.button.alt.wc-forward:hover {
    background-color: #C40233 !important;
	
}
.woocommerce-ordering select {
    width: auto;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}
.toggle-collapse-btn {
    border: none;
    background: none;
    font-size: 18px;
    line-height: 1;
    padding: 0 5px;
}
/* Toggle Button Style */
.toggle-collapse-btn {
    border: none;
    background: none;
    font-size: 20px;
    line-height: 1;
    padding: 0 5px;
    font-weight: bold;
    color: #333;
    transition: transform 0.2s ease;
}

/* Smooth Collapse Animation */
.sidebar-collapse {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

/* Optional: Smooth Fade */
.sidebar-collapse.fade {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.sidebar-collapse.fade.show {
    opacity: 1;
}
.slide-panel {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    max-height: 0;
    display: block !important;
}

.slide-panel.open {
    opacity: 1;
    max-height: 500px; /* enough height for your filters */
}

.slide-toggle-header {
    cursor: pointer;
    user-select: none;
}

.toggle-icon {
    font-weight: bold;
    font-size: 20px;
    margin-left: 8px;
}

.gt_selector option[value=""] {
    display: none;
}
.dropdown-menu[data-bs-popper] {
    top: 95%;
}
 #compare-table th, #compare-table td {
        vertical-align: middle;
        text-align: center;
        padding: 10px;
        overflow-wrap: break-word;
    }
    #compare-table th:not(:first-child), #compare-table td:not(:first-child) {
        width: 30%; /* Equal width for product columns */
        min-width: 200px; /* Minimum width to prevent squeezing */
    }
    #compare-table th:first-child, #compare-table td:first-child {
        width: 10%; /* Narrower first column for labels */
        font-weight: bold;
    }
    #compare-table img {
        width: 100px;
        height: 100px;
        object-fit: contain; /* Maintain aspect ratio */
    }
    #compare-table .badge {
        margin: 2px;
        display: inline-block;
    }
    #compare-table .product-name {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 3em; /* Approx. 2 lines */
    }
    #compare-table .action-buttons {
        display: flex;
        gap: 5px;
        justify-content: center;
    }
  footer.bg-light {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    footer .bg-dark.w-100 {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    footer.bg-light .badge {
        background-color: #343a40 !important;
        color: #fff !important;
        border-color: #6c757d !important;
    }
    footer.bg-light .list-unstyled a {
        color: #212529 !important;
    }
    footer.bg-light .list-unstyled a:hover {
        color: #495057 !important;
    }
  .wishlist-product-card {
        border: 1px solid #ddd;
        padding: 15px;
        text-align: center;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .wishlist-product-card img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        margin-bottom: 10px;
    }
    .wishlist-product-card .product-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .wishlist-product-card .price {
        font-weight: bold;
        color: #28a745;
        margin-bottom: 10px;
    }
    .wishlist-product-card .remove-wishlist {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        color: #dc3545;
        font-size: 1.2rem;
    }
    .wishlist-product-card .btn {
        margin-top: auto;
    }
.custom-select-style {
    min-width: 200px;
}
/* Filter Sections and Toggle Button CSS for Mobile */
@media (max-width: 767.98px) {
	.woocommerce-Address
	{
		width:100%;
	}
    .filter-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 12px;
        background:none;
        border: none;
        border-radius: 6px;
        margin-bottom: 0;
        text-align: center;
        padding-bottom:0;
     
    }
    .filter-section .filter-title {
        font-size: 14px;
        font-weight: 400;
        color: #000;
        margin-bottom: 8px;
        width: 100%;
    }

    .filter-section .filter-title a {
        color: #000;
        text-decoration: none;
    }

    .filter-section .d-flex.justify-content-between.align-items-center {
        width: 100%;
        flex-wrap: nowrap; /* Prevent wrapping to keep h5 and a inline */
        align-items: center;
        justify-content: space-between;
    }

    .filter-section .filter-title.mb-0 {
        /* Ensure h5 doesn’t take too much space */
        font-size: 14px; /* Slightly smaller for mobile */
        margin: 0;
        flex-grow: 1; /* Allow h5 to take available space */
        flex-shrink: 1;
        white-space: nowrap; /* Prevent title from wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Truncate long titles */
        max-width: 80%; /* Limit h5 width to avoid pushing a element */
    }

    .filter-section a[data-bs-toggle="collapse"] {
        font-size: 0.85rem;
        color: #000;
        padding: 4px;
        flex-shrink: 0; /* Prevent a from shrinking */
        display: inline-flex;
        align-items: center;
        white-space: nowrap; /* Keep icon inline */
    }

    .filter-section a[data-bs-toggle="collapse"] i {
        transition: transform 0.2s ease;
    }

    .filter-section a[data-bs-toggle="collapse"].collapsed i.fa-plus::before {
        content: "\f067";
    }

    .filter-section a[data-bs-toggle="collapse"]:not(.collapsed) i.fa-plus::before {
        content: "\f067";
    }

    .filter-section .collapse {
        width: 100%;
        margin-top: 8px;
    }

    .filter-section .woo-sidebar {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .filter-section .woo-sidebar li {
        margin-bottom: 6px;
    }

    .filter-section .woo-sidebar li a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 4px 0;
    }

    .filter-section .woo-sidebar li a:hover {
        color: #FFA500;
    }

    .filter-section .form-check {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
        padding-left: 0;
        min-height: auto;
    }

    .filter-section .form-check-input {
        margin-right: 6px;
        width: 16px;
        height: 16px;
        margin-top: 0;
    }

    .filter-section .form-check-label {
        font-size: 0.9rem;
        color: #6c757d;
        margin: 0;
        line-height: 1.2;
    }

    .filter-section .d-flex.align-items-center {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 6px;
        width: 100%;
    }

    .filter-section .form-control {
        font-size: 0.85rem;
        padding: 4px 8px;
        height: 30px;
        border-radius: 4px;
        max-width: 100px;
        text-align: center;
    }

    .filter-section .btn-sm {
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 4px;
        height: 30px;
        line-height: 1.2;
    }

    .filter-section .sidebar-bottom,
    .filter-section .filter-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
    }

    .filter-section .sidebar-bottom a,
    .filter-section .sidebar-bottom button,
    .filter-section .filter-actions a,
    .filter-section .filter-actions button {
        display: inline-block;
        padding: 6px 10px;
        background-color: #000;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 0.85rem;
        border: none;
        transition: background-color 0.3s ease;
    }

    .filter-section .sidebar-bottom a:hover,
    .filter-section .sidebar-bottom button:hover,
    .filter-section .filter-actions a:hover,
    .filter-section .filter-actions button:hover {
        background-color: #FFA500;
    }

    .btn.btn-dark.btn-sm.d-lg-none {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        padding: 6px 12px;
        font-size: 0.85rem;
        line-height: 1.2;
        min-width: 120px;
        text-align: center;
    }

    .btn.btn-dark.btn-sm.d-lg-none i.fas.fa-filter {
        margin-left: 6px;
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
    }

    .btn.btn-dark.btn-sm.d-lg-none span,
    .btn.btn-dark.btn-sm.d-lg-none i {
        white-space: nowrap;
    }
}

/* Larger screens */
@media (min-width: 768px) {
    .filter-section {
        text-align: left;
        padding: 15px;

    }

    .filter-section .filter-title {
        font-size: 14px;
        margin-bottom: 10px;
        font-weight:400 !important;
    }

    .filter-section .filter-title.mb-0 {
        font-size: 14px; /* Slightly smaller for consistency */
        max-width: none; /* Remove mobile width constraint */
        white-space: normal; /* Allow wrapping if needed */
        font-weight:400 !important;
    }

    .filter-section .form-check {
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

    .filter-section .form-check-input {
        margin-right: 8px;
    }

    .filter-section .d-flex.align-items-center {
        gap: 8px;
    }

    .filter-section .form-control {
        max-width: 120px;
        height: 34px;
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .filter-section .btn-sm {
        padding: 6px 12px;
        height: 34px;
    }

    .filter-section .sidebar-bottom,
    .filter-section .filter-actions {
        justify-content: flex-start;
        gap: 10px;
    }

    .btn.btn-dark.btn-sm.d-lg-none {
        display: none;
    }
}
.social-links {
    justify-content: center;
}
.quick-links h6,
.quick-links ul,
.quick-links li {
    text-align: right !important;
}
.footer-widget-left {
    text-align: left !important;
}

.footer-widget-left * {
    text-align: left !important;
}
  .product-title-h {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.6em;
  }
  .delivery-font
  {
      font-size:12px;
  }
  .footer-widget-left p
  {
      font-size:12px;
      text-align: justify !important;
          margin-bottom: 0;
  }
 .wp-block-image .alignleft
 {
     display:none;
 }
 nav.breadcrumb-main {
    margin-left: 18px;
}
.product-spacing-left
{
    padding-left:20px;
}
.normal-price {
    font-weight: normal !important;
}
.woocommerce-Price-amount
{
    font-weight:400;
}
.main-box
{
    border-left:solid 1px #d3d3d3;
}
.custom-thead th {
  background-color: #d6d6d6 !important;
  color: #212529 !important;
}
.product-table-main tr
{
    font-size:13px;
}
input.qty {
    width: 70px;
    text-align: center;
    margin: auto;
}
tr.cart-subtotal {
    display: none !important;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width:30%;
    background: no-repeat;
    border: 0;
}
.cart_totals h2
{
    display:none;
}
.product-spacing-left p, .product-spacing-left ul
{
    font-size:13px;
}
.woocommerce-cart .cart_totals table {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce-cart .cart_totals table tr,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    border: none !important;
    box-shadow: none !important;
}
.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table th {
    padding: 4px 10px !important;
}
.woocommerce-cart .cart_totals table th {
    text-align: left !important;
}
/* Make "Total" label font-weight 400 */
.woocommerce-cart .cart_totals .order-total th {
    font-weight: 400 !important;
}

/* Make the amount bold (font-weight 700) */
.woocommerce-cart .cart_totals .order-total td .amount,
.woocommerce-cart .cart_totals .order-total td bdi {
    font-weight: 700 !important;
}
/* Align amount text (like AED 301.00) to the right */
.woocommerce-cart .cart_totals .order-total td {
    text-align: right !important;
}
/* Headings ko center align kare */
.custom-thead th:nth-child(2), /* Price */
.custom-thead th:nth-child(3), /* Quantity */
.custom-thead th:nth-child(4)  /* Subtotal */ {
    text-align: center;
}

/* Table row cells alignment */
.woocommerce-cart-form__cart-item td:nth-child(2), /* Price */
.woocommerce-cart-form__cart-item td:nth-child(4)  /* Subtotal */ {
    text-align: right;
}

.woocommerce-cart-form__cart-item td:nth-child(3) { /* Quantity */
    text-align: center;
}
.woocommerce-cart h1 {
    display: none !important;
}
/* Make table scrollable on small screens */
@media (max-width: 767px) {
  .woocommerce-cart-form__contents {
    font-size: 14px;
  }

  .woocommerce-cart-form__contents thead {
    display: none; /* Hide the table header on small devices */
  }

  .woocommerce-cart-form__contents tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
  }

  .woocommerce-cart-form__contents td {
    display: flex;
    justify-content: space-between;
    padding: 8px 5px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .woocommerce-cart-form__contents td::before {
    content: attr(data-title);
    font-weight: 600;
    flex: 1;
  }

  .woocommerce-cart-form__contents .product-remove {
    justify-content: center;
  }

  .woocommerce-cart-form__cart-item img {
    width: 50px !important;
    height: auto;
  }

  .woocommerce-cart-form .btn {
    width: 100%;
  }

  .woocommerce-cart-form .d-flex.justify-content-between {
    flex-direction: column;
    gap: 10px;
  }
}
.quantity input.qty {
  border: 1px solid #ccc !important; /* Light gray border */
  outline: none;
  box-shadow: none;
  transition: none;
  border-radius: 4px;
}

.quantity input.qty:hover,
.quantity input.qty:focus,
.quantity input.qty:active {
  border: 1px solid #ccc !important; /* Keep it same on all states */
  box-shadow: none !important;
  outline: none !important;
}
.woocommerce-info {
  background: #fff !important;        /* Plain white background */
  border: none !important;            /* Remove border */
  box-shadow: none !important;        /* Remove any shadow */
  padding: 15px;                      /* Optional: keep padding for spacing */
  color: #333;                        /* Optional: ensure text is readable */
}
.woocommerce-info::before {
    display:none;
}
.woocommerce-info
{
    margin-bottom:0;
    padding-bottom:0;
}
.woocommerce-form__input.input-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #333;
}
/* ✅ Prices & totals right aligned */
.woocommerce table.shop_table td:not(.product-name),
.woocommerce table.shop_table tfoot td {
  text-align: right;
}

/* ✅ Shipping methods right aligned */
.woocommerce-shipping-methods,
.woocommerce-shipping-methods li,
.woocommerce-shipping-methods label {
  text-align: right;
  display: block;
}

/* ✅ Product name force left align just in case */
.woocommerce table.shop_table td.product-name {
  text-align: left !important;
}
.woocommerce-shipping-methods label {
  visibility: hidden;
}

.woocommerce-shipping-methods label .woocommerce-Price-amount {
  visibility: visible;
  display: inline-block;
}

.woocommerce-shipping-methods .woocommerce-Price-amount {
  position: relative;
  top: -5px;
}
tr.woocommerce-shipping-totals.shipping th,
tr.woocommerce-shipping-totals.shipping td,
tr.woocommerce-shipping-totals.shipping label,
tr.woocommerce-shipping-totals.shipping .woocommerce-Price-amount {
  font-weight: 400 !important;
}
th.product-total {
  text-align: right;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment
{
    background:#d6d6d6 !important;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
     border: 1em solid #C40233;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em;
}
.payment_box
{
background: #C40233 !important;
    color: #fff !important;
}
.woo-sidebar {
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .filter-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 12px;
        background: none;
        border: none;
        border-radius: 6px;
        margin-bottom: 0;
        text-align: center;
        padding-bottom:0;
    }
    .filter-section .filter-title {
        font-size: 14px;
        font-weight: 400;
        color: #000;
        margin-bottom: 8px;
        width: 100%;
    }
    .filter-section .d-flex.justify-content-between.align-items-center {
        width: 100%;
        flex-wrap: nowrap; /* Prevent wrapping to keep h5 and a inline */
        align-items: center;
        justify-content: space-between;
    }
    .filter-section .filter-title.mb-0 {
        font-size: 14px;
        margin: 0;
        flex-grow: 1;
        flex-shrink: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80%;
    }
    .filter-section a[data-bs-toggle="collapse"] {
        font-size: 0.85rem;
        color: #000;
        padding: 4px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    .filter-section .woo-sidebar li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* optional spacing between items */
  text-align: center;
}
.gtranslate_wrapper {
    padding: 10px;
    text-align: center;
}
.gtranslate_wrapper a {
    font-size: 15px !important;
}
}
.toggle-collapse-btn {
    border: none;
    background: none;
    font-size: 20px;
    line-height: 1;
    padding: 0 5px;
    font-weight: bold;
    color: #333;
}
.sidebar-collapse {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    /* Ultra-specific selector to override all conflicts */
    .filters-sidebar .filter-section .d-flex.justify-content-between.align-items-center.filter-section-mobile-inline {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 55% !important;
        gap: 6px !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        min-height: 24px !important; /* Ensure enough height for alignment */
    }
    .filters-sidebar .filter-section .filter-section-mobile-inline .filter-title.mb-0 {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 70% !important; /* Prevent overflow */
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        vertical-align: middle !important;
    }
    .filters-sidebar .filter-section .filter-section-mobile-inline .filter-title.mb-0 a.text-decoration-none {
        color: #000 !important;
        font-weight: 400 !important;
        display: inline !important;
        line-height: 1.2 !important;
    }
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 4px !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none i.fas.fa-plus,
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none i.fas.fa-minus {
        display: inline-block !important;
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: middle !important;
        color: #000 !important;
        width: auto !important;
        height: auto !important;
    }
    /* Override any inherited or conflicting styles */
    .filters-sidebar .filter-section .filter-section-mobile-inline * {
        box-sizing: border-box !important;
        flex: none !important; /* Prevent unexpected flex behavior */
    }
}
@media (max-width: 767.98px) {
    /* Target the filter-section container with filter-section-mobile-inline */
    .filters-sidebar .filter-section .d-flex.justify-content-between.align-items-center.filter-section-mobile-inline {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 55% !important;
        gap: 6px !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
        min-height: 24px !important;
    }
    /* Style the h5 */
    .filters-sidebar .filter-section .filter-section-mobile-inline .filter-title.mb-0.fw-bold.text-dark {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        font-weight: 400 !important; /* Match category style */
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 70% !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        vertical-align: middle !important;
    }
    /* Style the toggle link with icon */
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
        padding: 0 4px !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    /* Style the plus/minus icons */
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none i.fas.fa-plus,
    .filters-sidebar .filter-section .filter-section-mobile-inline a[data-bs-toggle="collapse"].text-decoration-none i.fas.fa-minus {
        display: inline-block !important;
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: middle !important;
        color: #000 !important;
    }
    /* Prevent inherited conflicts */
    .filters-sidebar .filter-section .filter-section-mobile-inline * {
        box-sizing: border-box !important;
        flex: none !important;
    }
}
@media (max-width: 576px) {
  .product-card {
    width: 100% !important;
    max-width:100%;
  }
  .product-title-h
  {
      min-height:auto;
  }
}
.cart-account-dropdown {
    padding: 0;
    border-radius: 0;
    border: none;
    background: #000;
    color: #fff;
}
.cart-account-dropdown a
{
     color: #fff;
}
.cart-account-dropdown a:hover
{
    background-color: #C40233;
}
/* Enable hover dropdown only on desktop */
@media (hover: hover) and (pointer: fine) {
    .nav-link.dropdown-toggle:hover + .dropdown-menu,
    .dropdown-menu:hover {
        display: block !important;
    }
    
    /* Prevent immediate close when moving from toggle to menu */
    .dropdown-menu {
        margin-top: 0; /* Remove gap if exists */
    }
}
/* Default Bootstrap behavior (click on all devices) */
.nav-link.dropdown-toggle {
  cursor: pointer;
}

/* Add hover-open only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  
  .dropdown > .dropdown-toggle:active {
    /* Disable the click behavior on desktop */
    pointer-events: none;
  }
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current
{
    background:#C40233;
    color:#fff;
}
@media (max-width: 767.98px) {
    .woocommerce-cart-form__cart-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .woocommerce-cart-form__cart-item td {
        display: block;
        width: 100% !important;
        padding: 8px 0 !important;
        border: none !important;
    }
    
    .woocommerce-cart-form__cart-item .product-name {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .woocommerce-cart-form__cart-item .product-name .d-flex {
        justify-content: center;
        text-align: center;
    }
    
    .woocommerce-cart-form__cart-item .product-quantity .quantity {
        justify-content: center;
        display: flex;
    }
    
    .woocommerce-cart-form__cart-item .product-quantity .quantity input {
        margin: 0 auto;
        text-align: center;
    }
    
    .woocommerce-cart-form__cart-item .product-remove {
        margin-top: 10px;
    }
     /* Center both price and subtotal cells */
    .woocommerce-cart-form__cart-item .product-price,
    .woocommerce-cart-form__cart-item .product-subtotal,
    .woocommerce-cart-form__cart-item .product-price .amount,
    .woocommerce-cart-form__cart-item .product-subtotal .amount,
    .woocommerce-cart-form__cart-item .product-price bdi,
    .woocommerce-cart-form__cart-item .product-subtotal bdi {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Fix currency symbol spacing for both */
    .woocommerce-cart-form__cart-item .product-price .woocommerce-Price-currencySymbol,
    .woocommerce-cart-form__cart-item .product-subtotal .woocommerce-Price-currencySymbol {
        margin-right: 3px;
    }
    .woocommerce-cart .product-remove a
    {
        padding:0;
    }
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals
    {
        width:100%;
    }
  tr.order-total th {
        font-weight: 400 !important;
    }
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before
    {
         font-weight: 400 !important;
    }
    tr.vat-note td {
        text-align: left !important;
    }
}
.page-font h2 {
    font-size: 20px;
}
.ul-list-tick ul {
  list-style: none; /* Default bullets hata do */
  padding-left: 0; /* Extra padding remove kar do */
}

.ul-list-tick ul li {
  position: relative;
  padding-left: 25px; /* Tick ke liye space */
  margin-bottom: 8px;
}

.ul-list-tick ul li::before {
  content: "✔"; /* Tick sign */
  color: green; /* Tick ka color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
/* Extra styling only for overlay with category-extra */
.category-overlay.category-extra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Title small and clean */
.category-overlay.category-extra h5,
.category-overlay.category-extra h6 {
  font-size: 1.1rem;   /* smaller font */
  font-weight: 600;
  margin-bottom: 8px !important;
}

/* Shop button style */
.category-overlay.category-extra .btn {
  font-size: 0.75rem;   /* smaller button */
  padding: 4px 14px;
  border-radius: 2px;  /* rounded pill */
  transition: all 0.3s ease;
	background: rgba(114, 28, 184, 0.6)  /* 20% opacity */
}

/* Hover effect */
.category-overlay.category-extra .btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

h3#ship-to-different-address, .input-text  {
    border: #C40233 solid 1px !important;
    padding: 0 20px 6px 20px;
    border-radius: 5px;
}
 .contact-header {
    background-color: #c21f22;
    color: #fff;
    text-align: center;
    padding: 60px 20px 40px;
  }
  .contact-header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  .contact-header p {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .contact-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
    flex-wrap: wrap;
  }
  .contact-info, .contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1 1 400px;
  }
  .contact-info h2, .contact-form h2 {
    margin-top: 0;
    color: #c21f22;
  }
  .contact-info p { margin: 10px 0; }
  .contact-info a {
    color: #c21f22;
    text-decoration: none;
  }
  .contact-form input, .contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
  }
  .contact-form button {
    padding: 10px;
    background-color: #c21f22;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
  }
  .contact-form button:hover { background-color: #C40233; }
  .social-icons { margin-top: 20px; }
  .social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #c21f22;
    font-size: 1.5rem;
    transition: 0.3s;
  }
  .social-icons a:hover { color: #C40233; }
  .map {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .contact-container { flex-direction: column; }
  }
.woocommerce nav.woocommerce-pagination ul li
{
	border-right: none;
}
.woocommerce nav.woocommerce-pagination ul {
    border: 1px solid #C40233;
}
@media="only screen and (max-width: 768px)" {
    .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
        content: attr(data-title) " " !important;
    }
	.woocommerce-shipping-totals.shipping label[for*="free_shipping"] {
    display: inline !important;
    font-weight: 600;
    color: #222;
}
/*===================================================homepage css============================================*/
	.hh-badge {
    background: #eaf7e6;
    color: #41B51F;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.hh-title {
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0 0;
    color: #10231c;
}

.hh-view-link {
    color: #00586A;
    font-weight: 700;
    text-decoration: none;
}

.hh-cat-card {
    display: block;
    background: #fff;
    border: 1px solid #edf3ed;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    color: #10231c;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    transition: .25s;
}

.hh-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.hh-cat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #eaf7e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00586A;
    font-size: 30px;
}

.hh-cat-card h5 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 5px;
}

.hh-cat-card small {
    color: #6b746e;
}

.hh-post-card,
.hh-product-card {
    background: #fff;
    border: 1px solid #edf0ed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    height: 100%;
}

.hh-post-img {
    height: 220px;
    overflow: hidden;
}

.hh-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-post-body {
    padding: 18px;
}

.hh-post-cat {
    background: #41B51F;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.hh-post-body h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 12px 0 8px;
    line-height: 1.3;
    color: #10231c;
}

.hh-post-body p {
    font-size: 14px;
    color: #4f5d55;
}

.hh-meta {
    font-size: 12px;
    color: #888;
}

.hh-scroll-row {
    scrollbar-width: none;
}

.hh-scroll-row::-webkit-scrollbar {
    display: none;
}

.hh-product-card {
    width: 240px;
    padding: 15px;
    position: relative;
    text-align: center;
}

.hh-product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-product-img img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.hh-product-card h3 {
    font-size: 14px;
    font-weight: 800;
    min-height: 42px;
    color: #10231c;
}

.hh-stars {
    color: #f5b400;
    font-size: 13px;
    margin-bottom: 6px;
}

.hh-price {
    font-weight: 800;
    margin-bottom: 10px;
    color: #10231c;
}

.hh-cart-btn {
    display: block;
    background: #00586A;
    color: #fff;
    padding: 9px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: .3s;
}

.hh-cart-btn:hover {
    background: #41B51F;
    color: #fff;
}

.hh-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #41B51F;
    color: #fff;
    border-radius: 50px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
}

.hh-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.hh-left {
    left: -20px;
}

.hh-right {
    right: -20px;
}

.hh-cat-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #edf0ed;
}

.hh-cat-row {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid #edf0ed;
    align-items: center;
}

.hh-small-icon {
    width: 50px;
    height: 50px;
    background: #eaf7e6;
    color: #00586A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-trust-box {
    background: #f8fbf7;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    text-align: center;
}

.hh-trust-box i {
    color: #41B51F;
    font-size: 32px;
}

.hh-trust-box h5 {
    font-weight: 800;
    margin-top: 10px;
    color: #10231c;
}

.hh-trust-box p {
    color: #607066;
    font-size: 14px;
}

.hh-news-box {
    background: linear-gradient(135deg, #00586A, #41B51F);
    border-radius: 18px;
    padding: 35px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.hh-news-form {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-width: 420px;
}

.hh-news-form input {
    border: 0;
    padding: 14px;
    flex: 1;
}

.hh-news-form button {
    border: 0;
    background: #41B51F;
    color: #fff;
    padding: 0 22px;
    font-weight: 800;
}
     