/* ==========================================================================
   BASE RESET & ROOT VARIABLES
   ========================================================================== */
:root {
    --site-max-size: 1300px;
}
body, h1, h2, h3, p, div, form, input, a, button, ul, li, aside, main, header, footer, section, nav, span, strong {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
main.container {
    flex: 1;
    max-width: var(--site-max-size);
    margin: 20px auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font: inherit; }

/* ==========================================================================
   HEADER - TWO ROW LAYOUT (logo+nav on line 1, categories on line 2)
   ========================================================================== */
/*header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}*/
header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    width: 100%;
    max-width: var(--site-max-size);
    margin: 0 auto;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    display: flex;
    justify-content: center;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--site-max-size);
    padding: 10px 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

header .header-top {
    position: relative;
}

.header-top a.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.header-top {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.header-top-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: var(--site-max-size);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-search {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    min-width: 200px;
}

.header-search-form {
    width: 100%;
    max-width: 400px;
}

.header-search-wrapper {
    width: 100%;
}

.header-top .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-search {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.header-search-form {
    width: 100%;
    max-width: 400px;
}

.header-search-wrapper {
    width: 100%;
}

.header-top a.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.header-top a.logo img {
    height: 60px;
}
.header-top a.logo span.calligraphic-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #3e2723;
}
.header-top .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.header-top .desktop-nav > a {
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.header-top .desktop-nav > a:hover {
    background: #f0f0f0;
    color: #000;
}
.header-top .desktop-nav > a.active {
    font-weight: 600;
    color: var(--primary);
}
.header-top .header-search-form {
    flex: 1;
    max-width: 320px;
    margin: 0 20px;
}
.header-top .header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.header-top .header-search-icon {
    position: absolute;
    left: 12px;
    color: #999;
    pointer-events: none;
}
.header-top .header-search-input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.88rem;
    background: #f8f8f8;
    transition: border-color 0.2s, background 0.2s;
}
.header-top .header-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-primary);
}
.header-top .header-search-input::placeholder {
    color: #999;
}
.header-categories {
    width: 100%;
    max-width: var(--site-max-size);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: var(--bg-primary);
    border-bottom: 2px solid var(--border-color);
}
.category-nav-wrapper {
    width: 100%;
    max-width: var(--site-max-size);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.category-nav-wrapper .category-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}
.header-categories .category-nav::-webkit-scrollbar {
    display: none;
}
.header-categories .category-nav a {
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.header-categories .category-nav a:first-child {
    font-weight: 600;
    color: var(--primary);
}
.header-categories .category-nav a:hover {
    background: #f0f0f0;
    color: #000;
}
.header-categories .category-nav a.active {
    font-weight: 600;
    color: #000;
    background: #f5f5f5;
}

/* Cart badge */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    transition: transform 0.2s ease;
}

.cart-icon.bounce {
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: var(--text-inverse);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    line-height: 1;
}
.cart-count-badge[data-count="0"],
.cart-count-badge:empty {
    display: none;
}

/* Language dropdown */
.lang-dropdown {
    position: relative;
}
.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: 0;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    transition: background 0.2s;
}
.lang-dropdown-btn:hover {
    background: #f5f5f5;
}
.lang-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    min-width: 140px;
    z-index: 1100;
    overflow: hidden;
}
.lang-dropdown-menu.is-open {
    display: block;
}
.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.15s;
}
.lang-dropdown-menu a:hover {
    background: #f5f5f5;
}
.lang-dropdown-menu a.active {
    font-weight: 600;
    background: #f0f0f0;
}
.lang-dropdown-menu a.active::before {
    content: '✓ ';
    font-weight: 700;
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 1000;
    padding: 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.mobile-menu.is-open {
    display: flex;
}
.mobile-menu > * {
    width: 100%;
    text-align: center;
}
.mobile-menu a.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 10px;
}
.mobile-menu a.logo img {
    height: 80px;
}
.mobile-menu a.logo span.calligraphic-text {
    font-size: 1.8rem;
}
.mobile-menu > a:not(.logo) {
    display: block;
    padding: 14px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}
.mobile-menu > a:not(.logo):last-of-type {
    border-bottom: none;
}
.modal-close-btn {
    background: 0;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    align-self: flex-end;
    color: #888;
}
.mobile-lang-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%;
}
.mobile-lang-links a {
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .header-top-inner {
        flex-wrap: wrap;
    }
    .header-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-shrink: 0;
    }
    .desktop-nav,
    .header-top .desktop-nav,
    header .desktop-nav {
        display: none !important;
    }
    .hamburger-btn {
        display: block;
    }
    .header-top a.logo span.calligraphic-text {
        font-size: 1.5rem;
    }
    .header-top a.logo img {
        height: 50px;
    }
    .header-search {
        order: 10;
        width: 100%;
        padding: 10px 0 0;
    }
    .header-search-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .header-search-wrapper {
        width: 100%;
    }
    .header-search-input {
        font-size: 16px;
    }
}

/* ==========================================================================
   FOOTER (copied from style.css to ensure display on all pages)
   ========================================================================== */
.site-footer {
    background-color: #1a1a1a;
    color: var(--text-muted);
    padding: 40px 0 0;
    font-size: 0.9rem;
    margin-top: 60px;
}
.footer-column h3 {
    color: var(--text-inverse);
    margin: 0 0 15px;
    font-size: 1.05rem;
}
.footer-column address a:hover {
    color: var(--text-inverse);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    max-width: var(--site-max-size);
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.footer-column {
    padding: 0 10px;
}
.footer-column h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 1.05rem;
}
.footer-column p {
    line-height: 1.6;
    max-width: 100%;
    overflow-wrap: break-word;
}
.footer-column address {
    font-style: normal;
    line-height: 1.6;
}
.footer-column address a {
    color: #ccc;
}
.footer-column address a:hover {
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.footer-links li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 7px 0;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-links li a:hover {
    color: #fff;
}
.footer-links li a::before {
    content: '\203A ';
    margin-right: 5px;
    font-weight: 700;
}
.collaboration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.collab-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}
.collab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collab-text h4 {
    color: #fff;
    margin: 0 0 4px;
    font-size: 0.95rem;
}
.collab-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
}
.footer-map {
    margin-top: 15px;
}
.footer-map img,
.footer-map iframe {
    width: 100%;
    border-radius: 8px;
}
.footer-bottom {
    background-color: #111;
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}
.footer-bottom p {
    text-align: center;
}
.tinymce-content {
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer-about-title-content {
    font-size: 0.9rem;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-overlay.is-visible {
    display: flex;
}
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
}
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 0px;
    background: 0;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
}
.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .site-footer {
        padding: 30px 0 0;
    }
}
.search-results-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.search-results-header h1 {
    margin-bottom: 8px;
}
.search-results-header p {
    color: #666;
    margin-bottom: 12px;
}
.clear-search-link {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: underline;
}
.clear-search-link:hover {
    text-decoration: none;
}


/* ==========================================================================
   Contact Icons in Footer
   ========================================================================== */
.contact-icons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-icon i {
    line-height: 1;
}

.contact-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.contact-icon.email {
    background: #EA4335;
}

.contact-icon.email:hover {
    background: #D33426;
}

.contact-icon.phone {
    background: #0F9D58;
}

.contact-icon.phone:hover {
    background: #0B7A43;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.whatsapp:hover {
    background: #128C7E;
}

.contact-icon.messenger {
    background: #0084FF;
}

.contact-icon.messenger:hover {
    background: #0066CC;
}

.contact-link {
    margin: 15px 0;
}

.contact-link .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   MEGAMENU - Category Preview Dropdown
   ========================================================================== */
.header-categories .category-nav {
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}

.category-nav-item-wrapper {
    position: relative;
}

.category-nav-item {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.category-nav-item:hover,
.category-nav-item.active {
    color: var(--accent-primary);
}

.category-nav-item-wrapper:hover .category-nav-item {
    color: var(--accent-primary);
}

/* Megamenu Debug - Fixed overlay for testing */
.megamenu-debug {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 10000;
    padding: 20px;
    display: none;
    max-height: 70vh;
    overflow-y: auto;
}

.category-nav-item-wrapper:hover .megamenu-debug,
.category-nav-item-wrapper:focus-within .megamenu-debug,
.category-nav-item-wrapper.megamenu-open .megamenu-debug {
    display: block !important;
}

.megamenu-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    padding: 24px;
}

.megamenu-header {
    padding-right: 24px;
    border-right: 1px solid var(--border-color);
}

.megamenu-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.megamenu-header p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.megamenu-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    transition: opacity 0.2s;
}

.megamenu-view-all:hover {
    opacity: 0.8;
}

.megamenu-products {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding-left: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.megamenu-products::-webkit-scrollbar {
    display: none;
}

.megamenu-product {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease;
    flex: 0 0 180px;
    scroll-snap-align: start;
}

.megamenu-product:hover {
    transform: translateY(-3px);
}

.megamenu-product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.megamenu-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.megamenu-placeholder {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
}

.megamenu-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.megamenu-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.megamenu-product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

/* Mobile: Accordion style */
@media (max-width: 768px) {
    .header-categories .category-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-categories .category-nav-item-wrapper {
        border-bottom: 1px solid var(--border-color);
    }
    
    .header-categories .category-nav-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }
    
    .header-categories .category-nav-item-wrapper > .category-nav-item::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        transition: transform 0.2s;
    }
    
    .header-categories .category-nav-item-wrapper.expanded > .category-nav-item::after {
        transform: rotate(45deg);
    }
    
    .megamenu-debug {
        position: fixed;
        top: 100px;
        left: 10px;
        right: 10px;
        width: auto;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        display: none;
        background: #fff;
        border: 1px solid var(--border-color);
        z-index: 10000;
    }
    
    .category-nav-item-wrapper.expanded .megamenu-debug {
        display: block !important;
    }
    
    .megamenu-content {
        grid-template-columns: 1fr;
        padding: 16px;
        background: #fff;
    }
    
    .megamenu-header {
        padding-right: 0;
        padding-bottom: 16px;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        background: #fff;
    }
    
    .megamenu-products {
        padding-left: 0;
        padding-top: 16px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .megamenu-products::-webkit-scrollbar {
        display: none;
    }
    
    .megamenu-product {
        flex: 0 0 140px;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px solid var(--border-color);
        background: #fff;
        border-radius: 8px;
        padding: 10px;
        align-items: center;
    }
}

/* Categories Toggle Button (Mobile) */
.categories-toggle {
    display: none;
    position: absolute;
    left: 10px;
    top: auto;
    bottom: -18px;
    transform: none;
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    z-index: 1001;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .categories-toggle {
        display: flex;
    }
    
    .header-categories {
        display: none;
    }
    
    .header-categories.is-visible {
        display: block;
    }
}

/* Add to Cart Slide-up Panel */
.add-to-cart-panel {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--bg-primary, #fff);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px 24px;
    width: 100%;
    max-width: 500px;
    z-index: 9999;
    animation: slideUpIn 0.4s ease forwards;
    box-sizing: border-box;
}

@keyframes slideUpIn {
    from { transform: translateX(-50%) translateY(100%); }
    to { transform: translateX(-50%) translateY(0); }
}

@keyframes slideUpOut {
    from { transform: translateX(-50%) translateY(0); }
    to { transform: translateX(-50%) translateY(100%); }
}

.add-to-cart-panel.hiding {
    animation: slideUpOut 0.3s ease forwards;
}

.add-to-cart-panel .panel-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.add-to-cart-panel .product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--bg-secondary, #f5f5f5);
}

.add-to-cart-panel .product-info {
    flex: 1;
}

.add-to-cart-panel .product-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.add-to-cart-panel .product-price {
    color: var(--primary, #b07f5e);
    font-weight: 700;
    font-size: 1.1rem;
}

.add-to-cart-panel .added-message {
    color: #28a745;
    font-size: 0.85rem;
    margin-top: 4px;
}

.add-to-cart-panel .panel-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.add-to-cart-panel .btn-view-cart,
.add-to-cart-panel .btn-continue {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.add-to-cart-panel .btn-view-cart {
    background: var(--primary, #b07f5e);
    color: white;
}

.add-to-cart-panel .btn-continue {
    background: var(--bg-secondary, #f5f5f5);
    color: var(--text-primary, #333);
    border: 1px solid var(--border-color, #ddd);
}

.add-to-cart-panel .close-panel {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 4px 8px;
}

@media (max-width: 480px) {
    .add-to-cart-panel {
        border-radius: 12px 12px 0 0;
        padding: 16px;
    }
    .add-to-cart-panel .panel-content {
        gap: 12px;
    }
    .add-to-cart-panel .product-image {
        width: 50px;
        height: 50px;
    }
}
