/* Product styles - import from main styles */
:root{
scroll-padding-top: 100px; /* Adjust this value as needed */
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  :root {
    scroll-padding-top: 100px; /* Adjusted for mobile header height */
  }
}
/* Home Button */
.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--button-radius);
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 100;
}

.home-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.home-button svg {
    width: 20px;
    height: 20px;
}

/* Search Section */
.search-section {
    padding: 2rem;
    background: transparent;
    position: relative;
    z-index: 1005; 
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--button-radius);
    font-size: var(--body-size);
    background: var(--card-bg-secondary);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: var(--shadow-sm);
}

.search-btn {
    padding: 0.75rem;
    background: var(--primary);
    border: none;
    border-radius: var(--button-radius);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Filter Dropdown Styles */
.filter-dropdown {
    position: relative;
    z-index: 5000; 
}

.filter-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: var(--button-radius);
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    white-space: nowrap;
    position: relative;
    z-index: 10000;
}

.filter-icon-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.filter-icon-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Active filter button state */
.filter-icon-btn.filter-active {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.filter-icon-btn.filter-active i {
    color: var(--secondary);
}

.filter-icon-btn.filter-active:hover {
    background: var(--primary-light);
}

.filter-dropdown-content {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 220px;
    background: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow for better visibility */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000; 
    border: 1px solid var(--border-color);
    transform: translateY(-10px); /* Start slightly above for animation */
    pointer-events: none; /* Ensure no pointer events when hidden */
}

.filter-dropdown.active .filter-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Reset position when visible */
    pointer-events: all; /* Enable pointer events when visible */
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background: var(--secondary-light);
    color: var(--primary);
}

.filter-option.active {
    background: var(--primary);
    color: var(--secondary);
}

.filter-option i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.filter-option:hover {
    background: var(--secondary-light);
    color: var(--primary);
}

.filter-option.active {
    background: var(--primary);
    color: var(--secondary);
}

.filter-option i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .search-filter-container {
        flex-direction: column;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .filter-dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .filter-icon-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-dropdown-content {
        width: 100%;
        right: 0;
    }
    
    .filter-option {
        padding: 1rem;
    }
}

/* Product Categories Section */
.product-categories {
    padding: 2rem;
    background: var(--card-bg);
}

.category-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1.5rem;
    justify-content: center;
}

.category-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-content {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.modal.modal-show {
    opacity: 1;
    visibility: visible;
}

.modal-content {    background: var(--card-bg);
    border-radius: var(--button-radius);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal.modal-show .modal-content {
    transform: scale(1);
}

.modal-sm {
    max-width: 400px;
}

.modal-lg {
    max-width: 800px;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-main);
    font-size: var(--h3-size);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--body-size);
}

.btn.primary-btn {
    background: var(--primary);
    color: var(--text-light);
}

.btn.primary-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.secondary-btn {
    background: var(--card-bg-secondary);
    color: var(--text-secondary);
}

.btn.secondary-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.view-details-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Product Details Styles */
.product-details {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--card-bg);
}

.product-details h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-light);
}

.product-details h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
}

.product-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    padding: 0 1rem;
    font-size: 1rem;
}

.product-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.variant-card {
    background: var(--card-bg-secondary);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--secondary-light);
    transition: all 0.3s ease;
}

.variant-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.variant-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--secondary-light);
}

.variant-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.category-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.category-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Product text alignments */
.product-card h3,
.product-card p,
.product-card .price {
    text-align: left;
}

.product-category,
.product-description,
.product-features li {
    text-align: left;
}

.search-section h2,
.filter-section h3,
.category-title {
    text-align: left;
}

/* Product grid layout - maintain grid but align content left */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Search and filter elements */
.search-container,
.filter-container {
    align-items: flex-start;
}

/* Product details */
.product-details {
    align-items: flex-start;
}

/* Category headers */
.category-header {
    text-align: left;
    justify-content: flex-start;
}

/* Product tags and badges */
.product-tag,
.product-badge {
    text-align: left;
}

/* Product Details Page Styles */
.product-details-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.breadcrumb {
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-header {
    display: grid;
    grid-template-columns: 1fr 2fr;    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.product-image {
    width: 100%;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-sm);
}

.product-info h2 {
    margin: 0 0 1rem;
    color: var(--text-main);
    font-size: var(--h2-size);
}

.product-info p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: var(--body-size);
}

.variant-selector {
    margin: 1.5rem 0;
}

.variant-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: var(--body-size);
    background: var(--card-bg);
}

/* Product Tabs */
.product-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg-secondary);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--text-light);
}

.tab-panel {
    display: none;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-md);
}

.tab-panel.active {
    display: block;
}

/* Order Form */
.order-section {
    max-width: 800px;
    margin: 4rem auto;    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-md);
}

.order-section h3 {
    margin: 0 0 2rem;
    color: var(--text-main);
    font-size: var(--h3-size);
    text-align: center;
}

.user-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--card-bg-secondary);
    border-radius: 25px;
}

.user-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: var(--body-size);
    background: var(--card-bg);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    border-radius: 25px;
}

.file-preview {
    margin-top: 1rem;
}

.file-preview img {
    max-width: 200px;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-sm);
}

.whatsapp-help {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.whatsapp-help a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 25px;
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.popup.popup-show {
    transform: translateX(0);
}

.popup-success {
    background: var(--primary-light);
    color: var(--text-light);
}

.popup-error {
    background: var(--primary);
    color: var(--text-light);
}

.popup-warning {
    background: var(--secondary-light);
    color: var(--text-main);
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-header {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .user-type {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-top: 2rem;
    }

    /* Responsive Styles */
    .product-categories {
        padding: 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .category-card {
        max-width: 100%;
        width: 100%;
        max-width: 320px;
    }

    .category-content {
        padding: 1.25rem;
    }

    .category-content h3 {
        font-size: 1.25rem;
    }

    .category-content p {
        font-size: 0.9rem;
    }

    .product-section {
        padding: 1.5rem;
    }

    .contact-section {
        padding: 2rem 1.5rem;
    }
}

/* Additional mobile responsive styles */
@media (max-width: 480px) {
    .intro-header .bread-crumbs {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .intro-header .bread-crumbs a,
    .intro-header .bread-crumbs span {
        font-size: 0.75rem;
    }
    
    .bread-crumbs {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        gap: 0.3rem;
    }
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .icon-attribution {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
  text-align: center;
}

.footer .icon-attribution a {
  color: var(--text-light);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer .icon-attribution a:hover {
  opacity: 1;
}

/* Product Grid */
.product-grid {
    padding: 2rem;
    position: relative;
    z-index: 1; /* Lower z-index for product grid */
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .product-info {
    padding: 1.5rem;
}

.product-card h3 {
    margin: 0 0 1rem;
    color: var(--text-main);
    font-size: var(--h3-size);
}

.product-card p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.product-card .rx-required {
    color: var(--primary);
    font-weight: 500;
}

.btn.primary-btn{
    
    text-decoration: none;
}

.revert-back{
    color: var(--primary);
    text-decoration: none;
}

.star-symbol{
    color: var(--primary);
}


.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spread content from top to bottom */
    background: var(--card-bg);
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures card fills the grid cell */
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
}

.view-details-btn {
    margin-top: auto;
    width: fit-content;      /* Button wraps text */
    min-width: 140px;        /* Optional: set a min-width */
    padding: 0.5rem 1rem;    /* Adjust padding to reduce size */
    font-size: 1rem;
    align-self: center;
      /* Optional: adjust font size */
      text-align: center !important; /* Center text in button */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}
.product-card {
    height: 100%;
}

.product-info p{
    text-align: left !important;
    margin-bottom: 20px !important;
}

.product-card .product-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  background-color: var(--secondary-light);
  padding: 5px 10px;
  border-radius: 20px;
  width: fit-content;
}

.product-card .product-category i {
  color: var(--primary);
  font-size: 0.85rem;
}

.product-card .product-category span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.product-detail .product-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0;
  background-color: var(--secondary-light);
  padding: 8px 16px;
  border-radius: 20px;
  width: fit-content;
}

.product-detail .product-category i {
  color: var(--primary);
  font-size: 1rem;
}

.product-detail .product-category span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bread-crumbs-product {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--primary);
    position: relative;
    text-align: left !important;
    padding: 0.75rem 1rem !important;
    padding-bottom: 2rem !important;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.bread-crumbs-product a {
    color: var(--primary);
    text-decoration: none;
}


.bread-crumbs {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bread-crumbs a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bread-crumbs a:hover {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
}

.bread-crumbs span {
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none;
}

.bread-crumbs > * {
    margin: 0;
}

/* Single separator between breadcrumb items */
.bread-crumbs a:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--primary);
    font-weight: normal;
}

.bread-crumbs span:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.active-link {
  color: #333 !important;
  font-weight: bold !important;
  text-decoration: none !important;
  cursor: pointer; /* Change from default to pointer */
}

/* Specific styling for active breadcrumb spans */
.bread-crumbs span.active-link,
.bread-crumbs-product span.active-link {
  color: #333 !important;
  font-weight: bold !important;
  background-color: rgba(var(--primary-rgb, 74, 144, 226), 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  cursor: pointer; /* Ensure it's clickable */
}

/* Active links in breadcrumbs should be distinguishable but clickable */
.bread-crumbs a.active-link,
.bread-crumbs-product a.active-link {
  color: #333 !important;
  font-weight: bold !important;
  text-decoration: none !important;
  cursor: pointer; /* Make it clickable */
}

/* Breadcrumbs within intro-header */
.intro-header .bread-crumbs {
    align-self: flex-start;
    margin-bottom: 3rem !important;
    padding: 0.75rem 16rem;
}

.intro-header .bread-crumbs a,
.intro-header .bread-crumbs span {
    font-size: 0.9rem;
}

/* Mobile responsive breadcrumbs */
@media (max-width: 768px) {
    .intro-header .bread-crumbs {
        margin-left: 0;
        margin-bottom: 1rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        max-width: 100%;
        align-self: stretch;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        justify-content: center;
        text-align: center;
    }
    
    .intro-header .bread-crumbs a,
    .intro-header .bread-crumbs span {
        font-size: 0.8rem;
    }
    
    .bread-crumbs {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        justify-content: flex-start;
    }
    
    .bread-crumbs-product {
        padding-right: 0 !important;
        padding-bottom: 2rem !important;
        text-align: left !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.25rem;
        width: 100%;
        margin: 1rem 0;
        background: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 1rem !important;
        border-radius: 8px;
    }

    .bread-crumbs-product a,
    .bread-crumbs-product span {
        display: inline;
        margin: 0;
        font-size: 0.8rem;
    }
}

/* Single separator between breadcrumb items
.bread-crumbs a:not(:last-child)::after,
.bread-crumbs span:not(:last-child)::after,
.bread-crumbs-product a:not(:last-child)::after,
.bread-crumbs-product span:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--text-secondary);
    font-weight: normal;
}

/* Ensure active breadcrumb links have proper contrast */
/* .bread-crumbs .active-link,
.bread-crumbs-product .active-link {
    background-color: rgba(74, 144, 226, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    color: #333 !important;
} */



