:root {
    --pry-color: #002d4b;
    --border-color: #002d4b;
    --text-color: #002d4b;
}

.menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Shared styling for both the static box and the details blocks */
.menu-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

/* Styling for the first box (Static) and summaries (Toggle) */
.header-link,
summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
}

summary {
    list-style: none;
    cursor: pointer;
}

/* Hide native disclosure markers across browsers */
summary::-webkit-details-marker { display: none; }
summary::marker { content: ''; }

/* Link inside summary */
summary a {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

/* Small subtle chevron — matches Figma */
summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

details[open] summary::after {
    transform: rotate(-135deg) translateY(-2px);
}

/* Highlighted/Selected States */
.menu-item.highlight,
.menu-item.selected {
    background-color: var(--pry-color);
    border-color: var(--pry-color);
}

.menu-item.highlight .header-link,
.menu-item.highlight summary,
.menu-item.selected summary {
    color: #ffffff;
}

/* Dropdown Content Area */
.content {
    padding: 15px 18px;
    background-color: #fafafa;
    border-top: 1px solid #eeeeee;
    font-size: 0.95rem;
    color: #444;
}


.shopping-header {
    /* Layout */
    display: flex;
    justify-content: space-between; 
    align-items: center;
    /* Styling */
    background-color: var(--pry-color);    
    padding: 15px 30px;            
    width: 100%;                  
    box-sizing: border-box;    
    /* margin-block: 40px; */
  }

  .header-text {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .cart-icon {
    width: 35px;
    height: 35px;
    fill: white;
  }




  /* Container */
.category-menu-container {
    /* width: 320px; */
    border: 1px solid #0b4a6f;
    font-family: Arial, sans-serif;
    /* border: 1px solid red; */
}

/* Header */
.category-menu-header {
    background: #063a5b;
    color: #fff;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: bold;
     /* border: 1px solid red; */
}

/* Each item */
.category-menu-item {
    border-top: 1px solid #0b4a6f;
}

/* Button */
.category-menu-button {
    width: 100%;
    background: #fff;
    border: none;
    padding: 14px 16px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #063a5b;
}

/* Plus icon */
/* .category-menu-button::after {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    color: #063a5b;
} */

/* Optional hover effect */
.category-menu-button:hover {
    background: #f2f7fb;
}

/* Natural stones sidebar: filter links (no accordion chevrons) */
.menu-container--stone-filters summary::after,
.menu-container--stone-filters summary::-webkit-details-marker {
    display: none !important;
}

.menu-container--stone-filters a.menu-item--stone-link {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
}

.menu-container--stone-filters a.menu-item--stone-link:hover {
    background: #f8fafc;
}

.menu-container--stone-filters a.menu-item--stone-link.highlight {
    background-color: var(--pry-color);
    border-color: var(--pry-color);
    color: #ffffff;
}

.menu-container--stone-filters a.menu-item--stone-link.highlight:hover {
    background-color: var(--pry-color);
    color: #ffffff;
}