
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* --- 2. Main Navigation Bar --- */
.main-nav {
  height: 90px;
  background-color: #F9D8E2;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-logo {
    height: 80px;
}
.nav-right {
    position: absolute;
    right: 2rem;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Creates space between user button and cart */
}
#user-status-container .cl-button {
    background-color: #F9D8E2 !important; /* Your brand pink */
    color: #1f2937 !important;           /* Dark text for contrast */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Style for the hover state */
#user-status-container .cl-button:hover {
    opacity: 0.9;
}

/* This targets the User button (the circle avatar when logged in) */
#user-status-container .cl-userButton-root {
    margin: 0 !important;
}

/* --- 3. Hamburger Menu --- */
.hamburger-menu {
  position: absolute;
  left: 2rem;
  cursor: pointer;
}

.hamburger-icon {
  font-size: 1.5rem;
  z-index: 1003; /* Higher z-index */
}

.menu-items {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%); /* Hides the menu */
  width: 450px;
  max-width: 80vw;
  height: 100vh;
  background-color: #F9D8E2;
  padding: 120px 2rem;
  transition: transform 0.4s ease;
  z-index: 1003; /* Same level as cart panel */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-items.active {
  transform: translateX(0); /* Slides menu into view */
}

.menu-link {
  display: block;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  transition: transform 0.3s ease;
}

.menu-link:hover {
  transform: translateX(10px);
}


/* --- 4. Unified Overlay for Menus & Cart --- */
/* We use one set of rules for both overlays */
.menu-overlay, 
.cart-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(25, 25, 25, 0.4); 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.4s ease; 
    z-index: 1000; /* Sits below the panel but above the page */ 
    backdrop-filter: blur(5px);
} 

.menu-overlay.active, 
.cart-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

/* New styles for the content wrapper */
.content-wrapper {
    transition: filter 0.4s ease;
}

.content-wrapper.blurred {
    filter: blur(6px); /* Set to the stronger blur value from the hamburger menu */
    pointer-events: none; /* Prevents interaction with blurred content */
}

/* --- 5. Cart Icon --- */
.cart-icon-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cart-icon {
  width: 24px;
  height: 24px;
  color: #333;
  transition: transform 0.2s ease;
}
.cart-icon:hover {
  transform: scale(1.1);
}


/* --- 6. The Cart Panel --- */
/* All existing styles from your file should be here */
/* ... */

/* --- 6. The Cart Panel --- */
.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 520px;
    max-width: 90vw;
    height: 100%;
    background: #ffffff; /* Changed to pure white */
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.1);
}
.cart-panel.active {
    right: 0;
}

/* --- 7. Cart Header (Updated) --- */
.cart-header {
    height: 70px; /* Adjusted for mobile */
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0; 
}
.cart-title {
    font-size: 1.1rem; /* Adjusted */
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* NEW: Item count badge */
.cart-item-count {
    background-color: #e5e7eb;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem; /* Made slightly larger */
    line-height: 1;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}
.close-cart:hover {
    color: #111827;
}

/* NEW: Shipping Banner */
.cart-banner {
    padding: 0.8rem 1rem;
    background-color: #f9fafb;
    text-align: center;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #e5e7eb;
}
.cart-banner p { margin: 0; }
.progress-bar-container {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 99px;
    height: 6px; /* Thinner bar */
    margin-top: 0.5rem;
    overflow: hidden;
}
.progress-bar {
    width: 0%; /* Start at 0 */
    height: 100%;
    background-color: #111827;
    border-radius: 99px;
    transition: width 0.4s ease; /* Animate progress */
}

/* --- 8. Cart Content Area & Items (Updated) --- */
.cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}
.cart-item {
    display: grid; /* Use grid for better control */
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Inter', sans-serif;
}
.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    grid-row: 1 / span 2; /* Image spans both rows */
}
.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center details */
    grid-column: 2;
    grid-row: 1;
}
.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.cart-item-size {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.cart-item-price {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
    margin-top: auto; /* Push price to the bottom */
}


/* --- 9. Cart Quantity Selector & Remove Button (Updated) --- */
.cart-item-actions {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 4px; /* More modern squared look */
}
.quantity-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    font-weight: 400; /* Thinner + and - */
    color: #6b7280;
}
.quantity-btn:hover {
    background-color: #f9fafb;
}
.quantity {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    padding: 0 0.2rem;
}
/* Style the remove button like the reference */
.remove-item {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: #6b7280;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem;
}
.remove-item:hover {
    color: #ef4444;
}

/* --- 10. Cart Sticky Footer (Updated) --- */
.cart-footer {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}
.cart-footer-note {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.cart-footer-note a {
    color: #6b7280;
    font-size: 0.9rem;
    text-decoration: underline;
}
.cart-summary .summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem; 
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.cart-summary .summary-line span:last-child {
    font-weight: 700;
}
.add-note-link, .edit-note-link {
    color: #6b7280;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}
/* Container for the note editor box */
.note-editor-container {
    text-align: left;
}

.note-editor-container h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

/* The text area for writing the note */
.note-textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: vertical; /* Allow user to resize vertically */
    margin-bottom: 1rem;
}

/* The "Save" button */
.save-note-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #111827; /* Solid black */
    color: #ffffff;
    border: 1px solid #111827;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.save-note-btn:hover {
    opacity: 0.85;
}

/* Styles for displaying the saved note */
.saved-note-container {
    text-align: left;
}

.saved-note-container h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #374151;
}

.saved-note-container p.saved-note-text {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    color: #6b7280;
    /* Style for long notes */
    white-space: pre-wrap; /* Respects line breaks */
    word-wrap: break-word; /* Prevents long words from overflowing */
}



/* Updated checkout button style */
.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; 
    width: 100%;
    padding: 0.9rem;
    background-color: #111827; /* Stays black */
    color: #ffffff;
    border: 1px solid #111827;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease; /* Add transition for the grow effect */
}

/* Add subtle grow effect on hover */
.checkout-btn:hover {
     background-color: transparent; /* Makes the background transparent */
    color: #111827;              /* Changes text and icon color to black for visibility */
    transform: scale(1.02);
}

/* This container holds the two icons */
.icon-container {
    position: relative;
    width: 16px;
    height: 16px;
}

/* Position both icons absolutely to overlap perfectly */
.lock-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.lock-icon svg {
    width: 16px;
    height: 16px;
}

/* By default, the unlocked icon is hidden */
.checkout-btn .unlocked {
    opacity: 0;
    transform: scale(0.7);
}

/* On hover, fade out the locked icon */
.checkout-btn:hover .locked {
    opacity: 0;
    transform: scale(0.7);
}

/* On hover, fade in the unlocked icon */
.checkout-btn:hover .unlocked {
    opacity: 1;
    transform: scale(1);
}

/* --- 11. Empty Cart State --- */
.empty-cart-container {
    text-align: center;
    padding: 4rem 1rem;
}
.empty-cart {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.empty-cart-message {
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.start-shopping-btn {
    background-color: #333;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.start-shopping-btn:hover {
    background-color: #444;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}




/* Products Section */




.shop-header {
    padding: 150px 40px 80px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    text-align: left;
    margin-bottom: 2rem;
}
.shop-banner {
    width: 100%;
    height: 500px;  /* Adjust height as needed */
    object-fit: cover;
    margin-bottom: 2rem;
}

.collection-text {
    font-family: 'cinzel', serif;
    font-weight: 500;
    font-size: 40px;
    background: transparent;
    text-align: left;
    margin-left: 25%;
    margin-top: 180px;
    margin-bottom: 80px;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px, rgba(0, 0, 0, 0.6) -1px -1px 1px;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
    margin-bottom: 100px;
}
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-wrapper {
    align-self: center;
    aspect-ratio: 1/1;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3/4;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%; /* Ensure it takes full width */
    justify-content: center;
}

.product-card {
    text-decoration: none;
    width: 100%;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    display: flex; /* Aligns content properly */
    flex-direction: column;
    align-items: center;
    text-align: left;
}


.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 16px;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-container {
    text-decoration: none;
    width: 100%;
    color: inherit;
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}
.product-info {
    padding: 1.5rem 0;
    text-align: left;
    align-self: flex-start; /* Added this line */
    text-align: left;
    width: 100%;
    margin: 0;
    transform: none;

}



.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-price {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For mobile screens */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Quick Shop functionnality */
.product-image-container:hover .quick-shop {
    bottom: 20px;
    opacity: 1;
}
.quick-shop {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    width: auto;
    border-radius: 25px;
    z-index: 2;
}

.product-card:hover .quick-shop {
    bottom: 20px;
    opacity: 1;
}

.quick-add-btn {
    background: white;
    color: black;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.size-selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.quick-add-btn:hover + .size-selector-overlay,
.size-selector-overlay:hover {
    opacity: 1;
    pointer-events: auto;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-option {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover {
    background: #333;
    color: white;
}


/* Footer */
.footer {
  background-color: #F9D8E2;
  padding: 0.4rem 2rem;
  margin-top: auto;
  font-family: 'Roboto', sans-serif;
}

.social-list {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 1rem 0;
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: transform 0.15s ease;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #333;
}

.social-link:hover .social-icon-wrapper {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    margin-bottom: 0.7rem;
    font-family: 'Roboto', sans-serif;
}
.footer-policies {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 0;
    position: relative;
}

.footer-policies::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.2);
}

.footer-policies a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    transition: text-decoration 0.3s ease;
}

.footer-policies a:hover {
    text-decoration: underline;
}


/* Media Queries */
@media (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 4 columns for better fit */
        max-width: 1600px; /* Limit max width */
        margin: 0 auto; /* Center content */
    }
    .product-image-wrapper {
        max-width: 300px; /* Slightly smaller product images */
    }
}
@media screen and (max-width: 1300px) {
    .menu-items {
        width: 40%;
    }
    .cart-panel {
        width: 40%;
    }
    .products-container {
        padding: 3rem;
    }

    .product-card {
        max-width: 100%;
        text-align: center;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .collection-text {
        font-size: 40px;
        margin-top: 160px;
        margin-bottom: 25px;
    }

}
@media screen and (max-width: 1200px) {
    .menu-items {
        width: 40%;
    }
    .cart-panel {
        width: 40%;
    }
    .products-container {
        padding: 2rem;
    }

    .product-card {
        max-width: 100%;
        text-align: center;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .collection-text {
        font-size: 40px;
        margin-top: 160px;
        margin-bottom: 30px;
    }

    
}
@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-container {
        padding: 3rem;
    }

    .menu-items {
        width: 60%;
        max-width: 350px;
    }

    .cart-panel {
        width: 50%;
        max-width: 350px;
    }

    .product-card {
        max-width: 100%;
        text-align: center;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .menu-items {
        width: 50%; /* Reduce width for smaller screens */
    }
    .collection-text {
        font-size: 35px;
        margin-top: 160px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 936px) {
    .menu-items {
        width: 60%;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Ensures two items per row */
        gap: 1rem; /* Reduce the gap for better spacing */
    }
    .product-image-wrapper {
        max-width: 300px; /* Reduce product image size */
    }
    .products-container {
        padding: 2rem;
    }

    .product-card {
        max-width: 100%;
        text-align: center;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .collection-text {
        font-size: 32px;
        margin-top: 15a0px;
        margin-bottom: 30px;
    }
    
}
@media screen and (max-width: 768px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two products per row */
        gap: 1rem; /* Keeps spacing consistent */
        justify-content: center;
    }

    .products-container {
        padding: 2rem;
    }

    .product-card {
        max-width: 100%;
        text-align: center;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .collection-text {
        font-size: 26px;
        margin-top: 140px;
        margin-bottom: 25px;
    }
    .menu-items {
        width: 20%;
    }
    
}
@media screen and (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
        }
        
        .products-container {
            padding: 2rem;
        }
        
        .product-card {
            max-width: 100%;
            text-align: center;
        }
        
        .product-card img {
            max-width: 100%;
            height: auto;
        }
    
        .product-info {
            width: 100%;
            padding: 1rem 0;
            transform: none;
            margin-left: 0;
        }
        .collection-text {
            font-size: 20px;
            margin-top: 130px;
            margin-bottom: 25px;
        }
        .menu-items {
            width: 60%;
        }
        
        
}
@media screen and (max-width: 480px) {
 
    .cart-panel {
        width: 85%; /* Wider on mobile */
        max-width: 100vw;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
    }
    .products-container {
        padding: 2rem;
    }
    
    .product-card {
        max-width: 100%;
        text-align: center;
    }
    
    .product-card img {
        max-width: 100%;
        height: auto;
    }

    .product-info {
        width: 100%;
        padding: 1rem 0;
        transform: none;
        margin-left: 0;
    }
    .collection-text {
        font-size: 20px;
        margin-top: 120px;
        margin-bottom: 20px;
    }
    .product-name {
        font-size: 16px;
    }
    .menu-items {
        width: 60%;
    } 
   
}
@media screen and (max-width: 375px) {
    .menu-items {
        width: 65%;
    }
    .menu-link {
        font-size: 18px;
    }
    .cart-panel {
        width: 45%;
    }

    .cart-title {
        font-size: 1.2rem;
    }
    .product-name {
        font-size: 14px;
    }
}


@media screen and (min-width: 481px) and (max-width: 768px) {
    .menu-items {
        width: 70%;
    }
    
    .cart-panel {
        width: 40%;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Desktop */


/* Additional Fixes */
.product-image-wrapper {
    width: 100%;
    max-width: 100%;
}

.quick-shop {
    width: 80%;
    max-width: 200px;
}

.size-options {
    justify-content: center;
}
