/* ================================
   STORE-SPECIFIC STYLES (Modernized from example_template.html)
   ================================ */

:root {
    --primary-color: #a8ba3c;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --background-color: #FFF8EA;
    --surface-color: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.2s ease-in-out;
}

body, .store-wrapper {
    font-family: "Montserrat", sans-serif;
    background: #E6EBE8;
    color: var(--text-primary);
    line-height: 1.6;
}

.store-main-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.store-sidebar, .sidebar-widget {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.sidebar-header h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #a8ba3c;
    padding-bottom: 0.5rem;
}

.filter-checkbox {
    margin-bottom: 0.75rem;
}

.filter-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.filter-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    border: 2px solid #a8ba3c;
    background: #fff;
    transition: background 0.2s, border 0.2s;
    position: relative;
    margin-right: 0.8em;
    vertical-align: middle;
    outline: none;
    cursor: pointer;
    display: inline-block;
}

.filter-checkbox input[type="checkbox"]:checked {
    background: #a8ba3c;
    border-color: #a8ba3c;
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background: white;
}

.filter-checkbox label:hover {
    color: var(--text-primary);
}

.no-categories, .no-brands, .no-badges {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.filter-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-filter, .btn-clear {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-filter {
    background: #a8ba3c;
    color: white;
}

.btn-filter:hover {
    background: #8fa832;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-clear {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-clear:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

.store-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Clean Search Bar - Completely Rewritten */
.store-search {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background: transparent;
}

.store-search form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

.store-search input[type="text"] {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
    background: white;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.store-search input[type="text"]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.store-search input[type="text"]:focus {
    border-color: #a8ba3c;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.search-btn {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4.5rem;
    justify-items: center;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-width: 300px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    text-align: center;
}

.product-card h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
}

.product-price {
    margin-bottom: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a8ba3c;
}

.old-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.sale-price {
    color: #a8ba3c;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-badges {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background: #166534;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.badge-weight {
    display: none; /* Hide weight badges - they'll be in the modal */
}

.badge-sale {
    background: #fef3c7;
    color: #d97706;
}

/* Weight Selection Modal */
.weight-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.weight-modal.show {
    display: flex;
}

.weight-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.weight-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.weight-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.weight-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.weight-modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.weight-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.weight-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}

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

.weight-option:hover {
    background: #f8fafc;
}

.weight-option.selected {
    background: #f0f9ff;
}

.weight-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.weight-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.price-leva {
    color: #a8ba3c;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-euro {
    color: #64748b;
    font-size: 1.1rem;
}

.price-leva.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
}

.price-leva.sale-price {
    color: #dc2626;
    font-weight: 700;
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.no-products {
    text-align: center;
    padding: 3rem 1rem;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products-content i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.no-products-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-products-content p {
    color: var(--text-secondary);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    margin-top: auto;
    flex-direction: row;
    justify-content: space-between;
}

.btn-view, .btn-cart {
    flex: 1;
    padding: 0.6rem 0.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    border: none;
    font-size: 0.75rem;
    min-width: 0;
    white-space: nowrap;
}

.btn-view {
    background: #2563eb;
    color: white;
}

.btn-view:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-cart {
    background: #a8ba3c;
    color: white;
}

.btn-cart:hover {
    background: #8fa832;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 186, 60, 0.3);
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    margin-bottom: 2rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.cart-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 1rem 0.75rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-dark);
}

.cart-table td {
    background: var(--surface-color);
    color: var(--text-primary);
    padding: 1rem 0.75rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.cart-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    letter-spacing: -1px;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    min-width: 180px;
    text-decoration: none !important;
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--background-color);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--surface-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.order-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.order-form .form-row label,
.order-form .form-row .choice-label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: "Montserrat", sans-serif;
}

.order-form .form-row input,
.order-form .form-row select,
.order-form .form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-color);
    font-family: "Montserrat", sans-serif;
}

.order-summary h2,
.order-summary h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
}

.summary-container .order-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.summary-container .order-details li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-container .cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.summary-container .cart-table th,
.summary-container .cart-table td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.summary-container .cart-table th {
    background-color: var(--primary-color);
    color: #fff;
}

.order-form .form-row .choice-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.store-footer {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    background: #153a5b;
    color: #fff;
    position: relative;
    padding: 2rem 0 1rem 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.store-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.store-footer .footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.store-footer .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.store-footer .footer-links a:hover {
    color: white;
}

.store-footer .footer-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-footer .footer-logos img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.store-footer .footer-logos img:hover {
    opacity: 1;
}

.store-footer .footer-copy {
    text-align: right;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* --- NAVBAR STYLES --- */
.store-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #fff;
    padding: 0.5rem 1rem;
    min-height: 60px;
    box-shadow: 0 2px 8px rgba(21, 58, 91, 0.08);
    z-index: 100;
}

.store-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-right: 0.5rem;
}

.store-hamburger-bar {
    width: 30px;
    height: 4px;
    background: #153a5b;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar-logo {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.store-cart-icon-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1201;
}

.store-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    position: relative;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    transition: background 0.2s;
}

.store-cart-btn:active, .store-cart-btn:focus {
    background: #f9d92322;
}

.store-cart-icon {
    font-size: 1.7rem;
    color: #2563eb;
    margin-right: 0.2rem;
}

.store-cart-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
    margin-left: 0.1rem;
}

.cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    /*top: 2.5rem;*/
    background: #fff;
    color: #153a5b;
    min-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(21, 58, 91, 0.15);
    padding: 1rem;
    z-index: 200;
}

.cart-dropdown.show {
    display: block;
}

/* Slide-in mobile menu */
.store-mobile-slide-menu {
    display: none;
}

@media (max-width: 1024px) {
    .store-hamburger {
        display: flex;
    }

    .navbar-logo {
        flex: 1 1 auto;
        justify-content: center;
    }

    .store-cart-icon-wrapper {
        position: absolute;
        right: 1rem;
        top: 0.5rem;
    }

    .store-mobile-slide-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85vw;
        max-width: 350px;
        background: #fff;
        box-shadow: 2px 0 16px rgba(21, 58, 91, 0.12);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(.77, 0, .18, 1);
        z-index: 1200;
        padding: 2.2rem 1.2rem 1.2rem 1.2rem;
        gap: 2rem;
    }

    .store-mobile-slide-menu.open {
        transform: translateX(0);
    }

    .close-store-mobile-menu {
        background: none;
        border: none;
        font-size: 2.2rem;
        color: #153a5b;
        align-self: flex-end;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .store-mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .store-mobile-nav-links a {
        color: #153a5b;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        padding: 0.7rem 0;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }

    .store-mobile-nav-links a:hover {
        background: var(--primary-color);
        color: #fff;
    }

    .store-mobile-filters {
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .store-mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(21, 58, 91, 0.25);
        z-index: 1199;
        transition: opacity 0.3s;
        opacity: 0;
    }

    .store-mobile-menu-backdrop.show {
        display: block;
        opacity: 1;
    }

    /* Hide desktop nav links on mobile/tablet */
    .navbar-links, .cart-wrapper {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .store-navbar {
        min-height: 48px;
        padding: 0.3rem 0.3rem;
    }

    .navbar-logo img {
        height: 36px;
    }

    .store-hamburger {
        width: 44px;
        height: 44px;
        left: 0.2rem;
        top: 0.2rem;
    }

    .store-hamburger-bar {
        width: 26px;
        height: 4px;
    }

    .store-cart-btn {
        font-size: 1.3rem;
        padding: 0.2rem 0.5rem;
    }

    .store-cart-icon {
        font-size: 1.3rem;
    }

    .store-cart-count {
        font-size: 1rem;
    }

    .cart-dropdown {
        min-width: 90vw;
        left: 0;
        right: 0;
        top: 2.2rem;
        font-size: 0.98rem;
        padding: 0.7rem;
    }

    .store-mobile-slide-menu {
        width: 98vw;
        max-width: 99vw;
        padding: 2.5rem 0.7rem 1.2rem 0.7rem;
    }

    .store-mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.6rem 0;
    }

    .close-store-mobile-menu {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .store-main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-sidebar {
        position: static;
        order: 2;
    }

    .store-right {
        order: 1;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
        gap: 1.25rem;
    }

    .store-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .store-footer .footer-copy {
        text-align: center;
    }

    .store-footer .footer-links {
        justify-content: center;
    }

    .store-navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .navbar-logo {
        padding-left: 0;
    }

    .navbar-links {
        padding-right: 0;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .store-main-content {
        padding: 1rem 0;
    }

    .store-sidebar,
    .store-search {
        padding: 1rem;
    }

    .product-card img {
        height: 150px;
    }

    .product-actions {
        flex-direction: row;
        gap: 0.5rem;
    }

    .store-navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .navbar-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .cart-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .store-main-content {
        padding: 0 0.5rem;
    }

    .store-sidebar,
    .store-search,
    .product-grid {
        padding: 0.5rem;
    }

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

/* Breadcrumbs */
.breadcrumb-container {
    /*max-width: 1400px;*/
    margin: 0 auto;
    padding: 1rem 2rem;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.25rem;
    background-color: #FFF8EA !important;
}

.breadcrumb-item {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: " > ";
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: #a8ba3c;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: #8fa832;
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0.75rem 1rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        gap: 0.2rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-container {
        padding: 0.5rem 1rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.2rem;
    }
}

/* Product Detail Page */
.product-detail-page {
    padding: 1rem 0;
    background: #E6EBE8 !important;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.image-text {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.image-column {
    flex: 0 0 500px;
    max-width: 500px;
}

.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
}

.info-column {
    flex: 1;
    padding: 0.5rem 0;
    width: 100%;
}

/* Product Header */
.product-header {
    margin-bottom: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a8ba3c;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.product-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Product Detail Layout */
.product-detail-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

.purchase-section {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
    min-width: 0;
}

.product-accordion {
    flex: 1;
    margin-bottom: 1.5rem;
    min-width: 0;
}

/* Product Accordion */
.product-accordion {
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: #e2e8f0;
}

.accordion-icon {
    color: #a8ba3c;
    font-size: 1.1rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.accordion-header span {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.accordion-arrow {
    color: #64748b;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

/* Enhanced spacing for wider sections */
.purchase-section .form-group {
    margin-bottom: 1.5rem;
}

.purchase-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding: 0.5rem 0;
}

.nutrition-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.nutrition-list li:last-child {
    border-bottom: none;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.nutrition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nutrition-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-secondary);
}

.nutrition-list li:last-child {
    border-bottom: none;
}

.nutrition-list li strong {
    color: var(--text-primary);
}

/* Purchase Section */
.purchase-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.custom-packaging-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
    transition: var(--transition);
}

.custom-packaging-select:focus {
    outline: none;
    border-color: #a8ba3c;
    box-shadow: 0 0 0 3px rgba(168, 186, 60, 0.1);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    /*background: white;*/
    overflow: hidden;
}

.qty-btn {
    padding: 0.75rem 1rem;
    border: none;
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 50px;
}

.qty-btn:hover {
    background: #e2e8f0;
}

.quantity-controls input[type="number"] {
    flex: 1;
    padding: 0.75rem;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: white;
}

.quantity-controls input[type="number"]:focus {
    outline: none;
}

/* Price Display */
.price-display {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

/*.price-row:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

.price-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.selected-price-display,
.selected-price-display-eur {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
}

.regular-price {
    color: #a8ba3c;
}

.old-price {
    color: #64748b;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.sale-price {
    color: #a8ba3c;
    font-weight: 700;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: #a8ba3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "Montserrat", sans-serif;
}

.btn-add-to-cart:hover {
    background: #8fa832;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 186, 60, 0.3);
}

/* Other Products Section */
.other-products {
    padding: 2rem 0;
}

.other-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.other-products .product-card {
    min-width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.other-products .product-card img {
    height: 200px;
    object-fit: cover;
}

.other-products .product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.other-products .product-card .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.other-products .product-price {
    margin-bottom: 1rem;
}

.other-products .price-row {
    gap: 0.25rem;
}

.other-products .price-row .old-price,
.other-products .price-row .sale-price,
.other-products .price-row .regular-price {
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.btn-add-to-cart-small {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #a8ba3c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-add-to-cart-small:hover {
    background: #8fa832;
    transform: scale(1.1);
}

.no-products {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 2rem;
}

.packaging-options label, .quantity-selector label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-family: "Montserrat", sans-serif;
}

.packaging-options select {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-color);
    font-size: 1rem;
    background: var(--background-color);
    margin-bottom: 1rem;
    transition: border 0.2s;
}

.packaging-options select:focus {
    border: 1.5px solid var(--primary-color);
    outline: none;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.quantity-controls .qty-btn {
    background: #a8ba3c;
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-controls .qty-btn:hover {
    background: #a8ba3c;
    color: #fff;
}

.quantity-controls input[type="number"] {
    width: 60px;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-color);
    font-size: 1rem;
    text-align: center;
    background: var(--background-color);
    transition: border 0.2s;
}

.quantity-controls input[type="number"]:focus {
    border: 1.5px solid var(--primary-color);
    outline: none;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-cart {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    transition: background 0.2s;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-cart:hover {
    background: var(--primary-dark);
}

.nutrition-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

/* --- CART DROPDOWN BUTTON --- */
.btn-cart-dropdown {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    padding: 0.5rem 0;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-cart-dropdown:hover {
    background: var(--primary-dark);
    color: #fff;
}

.cart-dropdown .btn-cart-view {
    display: none;
}

.cart-dropdown .btn-cart-dropdown {
    display: block;
}

/* --- CART PAGE BOTTOM SPACING & LAYOUT --- */
.cart-actions {
    margin-bottom: 2.5rem;
}

.cart-container {
    margin-bottom: 2.5rem;
}

body, html {
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app, .store-wrapper {
    flex: 1 0 auto;
}

/* --- PRODUCT DETAIL PAGE LEFT ALIGN --- */
.product-detail-page .section-container,
.product-detail-page .info-column,
.product-detail-page .product-detail-flex,
.product-detail-page .accordion,
.product-detail-page .add-to-cart-form,
.product-detail-page .packaging-options,
.product-detail-page .quantity-selector {
    align-items: flex-start !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

.product-detail-page .accordion {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.product-detail-page .accordion-header,
.product-detail-page .accordion-content {
    text-align: left;
}

/* --- CART TABLE GRID ALIGNMENT --- */
.cart-table th,
.cart-table td {
    border-radius: 0 !important;
}

/* --- CART DROPDOWN BUTTON WHITE TEXT --- */
.btn-cart-dropdown-white {
    display: block;
    width: 100%;
    background: #a8ba3c;
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    padding: 0.5rem 0;
    transition: background 0.2s;
    text-decoration: none !important;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    border: none;
}

.btn-cart-dropdown-white:hover {
    background: var(--primary-dark);
    color: #fff !important;
}

.cart-dropdown .btn-cart-view,
.cart-dropdown .btn-cart-dropdown {
    display: none;
}

.cart-dropdown .btn-cart-dropdown-white {
    display: block;
}

@media (max-width: 1024px) {
    .product-detail-page, .section-container {
        padding: 1rem;
    }

    .image-text {
        flex-direction: column;
        gap: 1.2rem;
    }

    .product-detail-flex {
        flex-direction: column;
        gap: 1.2rem;
    }

    .product-detail-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .purchase-section {
        flex: none;
        position: static;
        width: 100%;
    }
}

/* Scale down logo and links for better fit on smaller screens */
@media (max-width: 900px) {
    .store-footer .footer-container,
    .navbar-container {
        padding: 0 1rem;
    }

    .store-footer .footer-logos img,
    .navbar-logo img {
        height: 36px;
    }

    .store-footer .footer-links ul,
    .navbar-links {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .store-footer .footer-container,
    .navbar-container {
        padding: 0 0.5rem;
    }

    .store-footer .footer-logos img,
    .navbar-logo img {
        height: 28px;
    }
}

body {
    margin: 0;
}

a:-webkit-any-link {
    text-decoration: none !important;
}

/* Cart items container for better alignment and width control */
.cart-items-box {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    padding: 2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cart-items-box .cart-table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: separate;
    border-spacing: 0;
}

.cart-items-box .cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

@media (max-width: 900px) {
    .cart-items-box {
        padding: 1rem;
        max-width: 100%;
    }
}

.order-title-center {
    text-align: center;
    margin: 0 auto 2rem auto;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    display: block;
    max-width: 700px;
}

.order-summary-box {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: block;
}

.payment-methods-row {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.payment-methods-row label {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    gap: 0.7rem;
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.payment-methods-row input[type="radio"] {
    accent-color: var(--primary-color);
    margin-right: 0.7rem;
    margin-left: 0;
    vertical-align: middle;
    width: 1.1em;
    height: 1.1em;
}

#price-slider .noUi-connect {
    background: #a8ba3c !important;
}

#price-slider .noUi-base {
    background: #e2e8f0 !important;
    border-radius: 8px;
}

#price-slider .noUi-handle {
    border-radius: 50%;
    background: #fff;
    border: 2px solid #a8ba3c;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    width: 28px;
    height: 28px;
    top: -8px;
    cursor: grab;
    transition: border 0.2s;
}

#price-slider .noUi-handle:after, #price-slider .noUi-handle:before {
    display: none;
}

#price-slider .noUi-handle:hover, #price-slider .noUi-handle:focus {
    border-color: var(--primary-dark);
}

#price-slider .noUi-target {
    border-radius: 8px;
    box-shadow: none;
    border: none;
    height: 10px;
}

#price-slider {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.section-container.other-products {
    margin-bottom: 3rem;
}

/* --- Mobile Filter Hamburger & Slide-in Panel --- */
.filter-hamburger {
    display: none;
    align-items: center;
    background: #f9d923;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #153a5b;
    cursor: pointer;
    margin-bottom: 1rem;
    z-index: 1201;
}

.filter-hamburger-bar {
    width: 26px;
    height: 4px;
    background: #153a5b;
    margin: 3px 0;
    border-radius: 2px;
    display: block;
}

.filter-label {
    margin-left: 0.7rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.mobile-filter-slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80vw;
    max-width: 340px;
    background: #fff;
    box-shadow: 2px 0 16px rgba(21, 58, 91, 0.12);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.77, 0, .18, 1);
    z-index: 1200;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-filter-slide-menu.open {
    transform: translateX(0);
}

.close-mobile-filter {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #153a5b;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 1rem;
}

.mobile-filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(21, 58, 91, 0.25);
    z-index: 1199;
    transition: opacity 0.3s;
    opacity: 0;
}

.mobile-filter-backdrop.show {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
    .store-sidebar.sidebar-widget {
        display: none !important;
    }

    .filter-hamburger {
        display: flex;
    }
}

/* Remove mobile filter hamburger and slide-in styles (rollback) */
.filter-hamburger, .mobile-filter-slide-menu, .mobile-filter-backdrop, .close-mobile-filter {
    display: none !important;
}

/* Polish footer and nav for mobile */
@media (max-width: 600px) {
    .store-footer .footer-container, .footer-container {
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
    }

    .store-footer .footer-logos img, .footer-logos img {
        height: 32px !important;
        margin: 0 0.5rem !important;
    }

    .store-footer .footer-links ul, .footer-links ul {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .store-footer .footer-copy, .footer-copy {
        text-align: center !important;
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Hamburger left alignment and cart button logic */
@media (max-width: 1024px) {
    .store-navbar {
        justify-content: center;
        position: relative;
    }

    .store-hamburger-wrapper {
        position: absolute;
        left: 0.5rem;
        top: 0.5rem;
        display: flex;
        align-items: center;
        height: 100%;
        z-index: 1202;
    }

    .store-hamburger {
        display: flex;
        margin: 0;
    }

    .navbar-logo {
        flex: 1 1 auto;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .store-cart-icon-wrapper {
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        display: flex;
        align-items: center;
        z-index: 1202;
    }

    .store-cart-btn-mobile {
        display: flex;
    }

    .store-cart-btn-desktop {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .store-hamburger-wrapper, .store-hamburger, .store-cart-btn-mobile {
        display: none !important;
    }

    .store-cart-btn-desktop {
        display: inline-flex !important;
        align-items: center;
        background: #2563eb;
        color: #fff;
        font-weight: 700;
        border: none;
        border-radius: 24px;
        padding: 0.5rem 1.5rem;
        font-size: 1.1rem;
        cursor: pointer;
        margin-left: 1.2rem;
        transition: background 0.2s;
        text-decoration: none;
    }

    .store-cart-btn-desktop:hover {
        background: #1d4ed8;
        color: #fff;
    }
}

/* Sidebar filter/slider only on desktop */
@media (max-width: 1024px) {
    .store-sidebar.sidebar-widget {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .store-sidebar.sidebar-widget {
        display: block !important;
    }
}

/* Vertically align navbar elements */
.store-navbar {
    align-items: center;
}

.store-hamburger-wrapper, .navbar-logo, .store-cart-icon-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 1024px) {
    .store-navbar {
        justify-content: center;
        position: relative;
        align-items: center;
    }

    .store-hamburger-wrapper {
        position: absolute;
        left: 0.5rem;
        top: 0;
        height: 100%;
        align-items: center;
    }

    .store-cart-icon-wrapper {
        position: absolute;
        right: 1rem;
        top: 0;
        height: 100%;
        align-items: center;
    }
}

/* Desktop: cart-dropdown on hover */
@media (min-width: 1025px) {
    .store-cart-icon-wrapper {
        position: relative;
    }

    .store-cart-btn-desktop + .cart-dropdown {
        display: none;
    }

    .store-cart-btn-desktop:hover + .cart-dropdown,
    .store-cart-btn-desktop:focus + .cart-dropdown,
    .store-cart-btn-desktop:active + .cart-dropdown,
    .cart-dropdown:hover {
        display: block;
    }
}

/* Desktop/mobile navbar visibility */
.store-desktop-navbar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
}

.desktop-logo-wrapper {
    flex: 0 0 auto;
    justify-content: flex-start;
}

.desktop-logo {
    margin-right: 0;
    display: flex;
    align-items: center;
}

.store-desktop-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    justify-content: flex-end;
}

.store-nav-link {
    color: #153a5b;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.store-nav-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.desktop-cart {
    margin-left: 0.7rem;
    position: relative;
    display: flex;
    align-items: center;
}

/* Remove nav links list styling for desktop */
.store-nav-links {
    display: none !important;
}

/* Product Inquiry Form Section */
.product-inquiry-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0 3.5rem 0;
}

.product-inquiry-form {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(21, 58, 91, 0.08);
    padding: 2.2rem 2.5rem 2rem 2.5rem;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
}

.product-inquiry-form h3 {
    margin-bottom: 0.7rem;
    color: #153a5b;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.product-inquiry-form .form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.product-inquiry-form label {
    font-weight: 600;
    color: #153a5b;
    margin-bottom: 0.1rem;
}

.product-inquiry-form input,
.product-inquiry-form textarea {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9fafb;
    transition: border 0.2s;
}

.product-inquiry-form input:focus,
.product-inquiry-form textarea:focus {
    border-color: #2563eb;
    outline: none;
}

.product-inquiry-form button {
    margin-top: 0.7rem;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.product-inquiry-form button:hover {
    background: #153a5b;
}

@media (max-width: 600px) {
    .product-inquiry-form {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        max-width: 98vw;
    }

    .product-inquiry-form-section {
        margin: 1.2rem 0 2rem 0;
    }
}

@media (min-width: 1025px) {
    .mobile-only-logo {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .mobile-only-logo {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .store-mobile-navbar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .mobile-navbar-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-hamburger-wrapper {
        flex: 0 0 auto;
    }

    .mobile-only-logo {
        flex: 1 1 auto;
        justify-content: center;
    }

    .mobile-cart {
        flex: 0 0 auto;
    }

    .store-nav-link {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .store-search {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #search-form {
        width: 100%;
        margin-bottom: 0.7rem;
    }

    .mobile-filter-dropdown-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 0 0.7rem 0;
    }

    .mobile-filter-toggle {
        width: 180px;
        min-width: 120px;
        max-width: 90vw;
        margin: 0 auto;
        padding: 0.45rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        box-sizing: border-box;
        z-index: 2;
        position: relative;
    }

    .mobile-filter-dropdown {
        width: 100%;
        margin-top: 0.7rem;
        align-self: stretch;
        left: 0;
        right: 0;
        position: static;
        display: none;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 16px rgba(21, 58, 91, 0.10);
        padding: 1.2rem 1rem 1rem 1rem;
        z-index: 1;
        transition: max-height 0.3s, opacity 0.3s;
        flex-direction: column;
    }

    .mobile-filter-dropdown.open {
        display: flex;
        flex-direction: column;
    }

    .mobile-filter-row {
        margin-bottom: 1.1rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        width: 100%;
    }

    .mobile-filter-row label {
        font-weight: 600;
        color: #153a5b;
        margin-bottom: 0.2rem;
        display: block;
    }

    .mobile-filter-row input[type="number"] {
        width: 100%;
        margin-bottom: 0.5rem;
        margin-top: 0.1rem;
    }

    .mobile-filter-checkboxes {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        margin-top: 0.2rem;
    }

    .mobile-filter-checkboxes label {
        font-weight: 400;
        color: #153a5b;
        font-size: 1rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

    .mobile-filter-apply {
        width: 100%;
        padding: 0.25rem 0;
        font-size: 1.02rem;
        font-weight: 700;
        border-radius: 6px;
        background: #166534;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 0.7rem;
        min-height: 28px;
        max-height: 34px;
        align-self: center;
        display: block;
    }

    .mobile-filter-apply:hover {
        background: #14532d;
    }
}

@media (min-width: 1025px) {
    .mobile-filter-dropdown-wrapper {
        display: none !important;
    }
}

.footer-logos-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 1.2rem;
}

.footer-logos-center a {
    display: inline-block;
}

.footer-logos-center img {
    height: 48px;
    width: auto;
    transition: opacity 0.2s;
    opacity: 0.9;
}

.footer-logos-center img:hover {
    opacity: 1;
}

.footer-copy-center {
    text-align: center;
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .footer-logos-center {
        gap: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .footer-logos-center img {
        height: 36px;
    }

    .footer-copy-center {
        font-size: 0.95rem;
    }
}

.partners-carousel-section {
    margin: 2.5rem 0 2rem 0;
    text-align: center;
}

.partners-carousel-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.glider-contain {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 2.5rem;
}

.partners-carousel {
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partners-carousel a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 140px;
    max-width: 220px;
    margin: 0 0.5rem;
    transition: transform 0.2s;
}

.partners-carousel a:hover {
    transform: scale(1.08);
}

.partners-carousel img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(21, 58, 91, 0.08);
    padding: 0.5rem 1.2rem;
    transition: box-shadow 0.2s;
}

.glider-prev, .glider-next {
    background: none;
    color: #2563eb;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    font-size: 2.2rem;
    box-shadow: none;
    padding: 0 0.5rem;
    transition: color 0.2s;
}

.glider-prev:hover, .glider-next:hover {
    color: #153a5b;
    background: none;
}

.glider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.glider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    margin: 0 2px;
    transition: background 0.2s;
}

.glider-dot.active {
    background: #2563eb;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

@media (max-width: 900px) {
    .glider-contain {
        padding: 0 1rem;
    }

    .partners-carousel a {
        min-width: 110px;
        max-width: 140px;
        height: 70px;
    }

    .partners-carousel img {
        max-height: 54px;
        max-width: 110px;
        padding: 0.3rem 0.7rem;
    }
}

@media (max-width: 600px) {
    .glider-contain {
        padding: 0 0.2rem;
    }

    .partners-carousel a {
        min-width: 80px;
        max-width: 100px;
        height: 54px;
    }

    .partners-carousel img {
        max-height: 38px;
        max-width: 80px;
        padding: 0.2rem 0.3rem;
    }

    .glider-prev, .glider-next {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

.store-locations-section {
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.store-locations-section h2 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.store-map-embed {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(21, 58, 91, 0.10);
}

/* --- Pure Auto-Scrolling Carousel --- */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 120px;
    margin-bottom: 1.5rem;
}

.carousel-track {
    display: inline-block;
    white-space: nowrap;
    /* align-items: center; */
    animation: 10s scroll-carousel infinite linear;
}

/* .carousel-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0 20px;
} */
.carousel-track img {
    max-height: 80px;
    /* object-fit: contain; */
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(21, 58, 91, 0.08);
    padding: 0.5rem 1.2rem;
    margin: 0 2rem;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Remove Glider.js arrows/dots for this section
.partners-carousel-section .glider-prev,
.partners-carousel-section .glider-next,
.partners-carousel-section .glider-dots,
.partners-carousel-section .partners-carousel {
  display: none !important;
} */

.store-map-embed iframe {
    width: 100%;
    height: 400px;
    max-width: 100%;
    border: 0;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .store-map-embed iframe {
        height: 300px;
    }
}

/* --- PHONE OPTIMIZATION & MODERN CHECKBOXES --- */
@media (max-width: 600px) {
    .store-main-content {
        display: block !important;
        padding: 0.5rem 0.2rem !important;
        max-width: 100vw !important;
        width: 100vw !important;
        box-sizing: border-box;
    }

    .store-sidebar, .sidebar-widget {
        position: static !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 1rem 0.5rem !important;
        margin: 0 0 1.2rem 0 !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .product-card {
        max-width: 98vw !important;
        min-width: 400px !important;
        margin: 0 auto 1.2rem auto !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(21, 58, 91, 0.08) !important;
        padding: 0.5rem !important;
    }

    .product-card img {
        height: 120px !important;
        /*object-fit: contain !important;*/
    }

    /* Mobile search bar styles removed - now handled by main search styles */
}

/* --- MOBILE FILTER FORM STACKING (EXTRA SPECIFICITY) --- */
@media (max-width: 600px) {
    #filter-form, .store-sidebar form, .sidebar-widget form {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.7em !important;
        width: 100% !important;
    }

    #filter-form > *,
    .store-sidebar form > *,
    .sidebar-widget form > * {
        width: 100% !important;
        display: block !important;
        margin: 0.2em 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    #filter-form label,
    #filter-form input,
    #filter-form .filter-checkbox,
    #filter-form h3 {
        width: 100% !important;
        display: block !important;
        margin: 0.2em 0 !important;
        text-align: left !important;
    }

    #filter-form input[type="text"],
    #filter-form input[type="number"] {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 1em !important;
        margin-bottom: 0.5em !important;
        box-sizing: border-box !important;
    }

    #filter-form .btn-filter,
    #filter-form .btn-clear {
        width: 100% !important;
        margin-top: 1em !important;
        margin-bottom: 0 !important;
        font-size: 1.1em !important;
        align-self: flex-end !important;
    }

    #filter-form .filter-checkbox {
        margin-bottom: 0.3em !important;
    }
}

.btn-primary {
    padding: 0.75rem 1.5rem !important;
}

@media (max-width: 600px) {
    .cart-container {
        padding: 0.5rem 0.1rem !important;
        margin: 0 auto !important;
        max-width: 99vw !important;
        width: 99vw !important;
    }

    .cart-title-container {
        margin-bottom: 0.7rem !important;
    }

    .cart-title {
        font-size: 1.3rem !important;
        text-align: center !important;
        margin: 0.2rem 0 0.7rem 0 !important;
    }

    .cart-items-box {
        padding: 0.7rem 0.2rem 0.5rem 0.2rem !important;
        max-width: 99vw !important;
        width: 99vw !important;
        box-shadow: 0 1px 4px rgba(21, 58, 91, 0.08) !important;
        border-radius: 10px !important;
    }

    .cart-table {
        display: block !important;
        width: 100% !important;
        min-width: 380px !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
        border-radius: 8px !important;
        margin-bottom: 0.7rem !important;
        font-size: 0.93rem !important;
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(21, 58, 91, 0.08) !important;
        position: relative;
    }

    .cart-table::-webkit-scrollbar {
        height: 6px;
        background: #e5e7eb;
        border-radius: 8px;
    }

    .cart-table::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 8px;
    }

    .cart-table thead, .cart-table tbody, .cart-table tfoot {
        display: table;
        width: 100%;
        /* table-layout: fixed; */
    }

    .cart-table th, .cart-table td {
        padding: 0.4rem 0.2rem !important;
        font-size: 0.93rem !important;
        /* white-space: nowrap !important; */
        text-align: left !important;
    }

    .cart-table .qty-btn, .cart-table .delete-btn {
        font-size: 1.1rem !important;
        padding: 0.2rem 0.5rem !important;
        min-width: 24px !important;
        min-height: 24px !important;
    }

    .cart-table .qty-count {
        font-size: 1rem !important;
        margin: 0 0.2rem !important;
    }

    .cart-table .delete-btn {
        font-size: 1.2rem !important;
        padding: 0.2rem 0.4rem !important;
    }

    /* Add a scroll hint for mobile users */
    .cart-table:after {
        content: '⇆ Плъзнете за още';
        display: block;
        font-size: 0.85rem;
        color: #64748b;
        text-align: right;
        padding: 0.2rem 0.3rem 0 0;
        position: absolute;
        right: 0;
        bottom: -1.2em;
        width: 100%;
        pointer-events: none;
    }

    .cart-actions {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: stretch !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.2rem !important;
    }

    .btn-primary, .btn-secondary {
        font-size: 1.05rem !important;
        padding: 0.7rem 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        border-radius: 8px !important;
        margin: 0 !important;
        text-align: center;
    }

    .empty-cart-section {
        min-height: 220px !important;
        padding: 0.7rem 0.2rem !important;
    }

    .empty-cart-image {
        max-width: 80vw !important;
        height: auto !important;
        margin: 0.7rem auto 0 auto !important;
    }

    .cart-empty {
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem !important;
    }

    .summary-actions {
        margin-top: 0.7rem !important;
    }
}

/* Responsive search bar styles removed - now handled by main search styles */

@media (min-width: 601px) and (max-width: 1024px) {
    .mobile-filter-dropdown-wrapper {
        margin-top: 1.2rem !important;
    }
}

@media (min-width: 1025px) {
    .price-slider-inputs-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.7rem;
        width: 100%;
    }

    .price-input-desktop {
        width: 48%;
        min-width: 70px;
        max-width: 110px;
        padding: 0.5rem 0.7rem;
        font-size: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--background-color);
        text-align: center;
        transition: border 0.2s;
    }

    .price-input-desktop:focus {
        border-color: var(--primary-color);
        outline: none;
    }

    /* Hide mobile filter min/max on desktop */
    .mobile-filter-dropdown-wrapper {
        display: none !important;
    }

    /* Tooltip for slider handle */
    #price-slider .noUi-handle[data-price]:hover::after {
        content: attr(data-price) ' лв.';
        position: absolute;
        top: -38px;
        left: 50%;
        transform: translateX(-50%);
        background: #153a5b;
        color: #fff;
        padding: 0.25rem 0.7rem;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        z-index: 10;
        pointer-events: none;
        box-shadow: 0 2px 8px rgba(21, 58, 91, 0.10);
    }
}

@media (max-width: 1024px) {
    .price-slider-inputs-desktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0rem;
    }

    .col-md-4,
    .mb-4 {
        margin: 0 !important;
        padding: 0 !important;
    }

    .product-card {
        max-width: 420px;
        margin: 0 auto;
        padding: 0.3rem 0.1rem;
        box-shadow: var(--shadow-sm);
    }
}

.responsive-product-col {
    /* Default: no margin/gap for grid control */
}

@media (max-width: 991.98px) {
    .responsive-product-col {
        /* Bootstrap-like responsive columns for mobile/tablet */
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1.5rem;
        box-sizing: border-box;
        /* Simulate col-12 col-sm-6 col-md-4 mb-4 */
        flex: 0 0 100%;
        max-width: 100%;
    }

    @media (min-width: 576px) {
        .responsive-product-col {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    @media (min-width: 768px) {
        .responsive-product-col {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
        }
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product-grid {
        justify-content: flex-start;
        gap: 0rem;
    }

    .responsive-product-col {
        flex: 0 0 260px;
        max-width: 260px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 1.2rem;
        box-sizing: border-box;
    }
}

@media (min-width: 992px) {
    .responsive-product-col {
        flex: 0 0 25%;
        max-width: 240px;
        margin: 0 0.35rem;
        padding: 0;
        box-sizing: border-box;
    }

    .product-grid {
        gap: 0.7rem;
    }
}

@media (min-width: 992px) {
    .add-to-cart-btn-col {
        padding-top: 1.75rem;
    }
}

@media (min-width: 992px) {
    .product-price-section {
        margin-left: 0;
        margin-right: auto;
    }
}

/* =============================
   Product Detail Page Styles
   ============================= */
.product-price-section {
    background: #f7fafd;
    border-radius: 12px;
    padding: 1.1rem 2.2rem;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.06);
    margin-bottom: 1.7rem;
    font-size: 1.45rem;
    /*min-width: 260px;*/
    min-width: 340px;
    text-align: center;
}

.packaging-options-col, .quantity-col {
    background: #f7fafd;
    border-radius: 8px;
    padding: 0.6rem 1rem 0.9rem 1rem;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.06);
    margin-bottom: 0.5rem;
}

.packaging-options-col label, .quantity-col label {
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
}

.custom-packaging-select {
    width: 100%;
    padding: 0.6rem 1.1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.08rem;
    background: #f8fafc;
    color: #1e293b;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: 'Inter', 'Montserrat', sans-serif;
    margin-top: 0.2rem;
}

.custom-packaging-select:focus, .custom-packaging-select:active {
    outline: none;
    border-color: #e2e8f0;
    box-shadow: none;
    border-radius: 8px;
}

.custom-packaging-select:hover {
    border-color: #e2e8f0;
    box-shadow: none;
    border-radius: 8px;
    cursor: pointer;
}

.quantity-controls input[type=number]::-webkit-inner-spin-button,
.quantity-controls input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-controls input[type=number] {
    -moz-appearance: textfield;
}

@media (min-width: 992px) {
    .product-detail-page .section-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .add-to-cart-form-container {
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 2.5rem;
    }

    .add-to-cart-flex-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.2rem;
        margin-top: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .packaging-options-col {
        display: flex;
        flex-direction: column;
        min-width: 170px;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .quantity-col {
        display: flex;
        flex-direction: column;
        min-width: 120px;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .add-to-cart-btn-col {
        display: flex;
        align-items: center;
        min-width: 180px;
        justify-content: center;
    }

    .add-to-cart-btn-col .btn-cart {
        width: 100%;
        margin-top: 0;
        height: 44px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quantity-controls {
        margin-top: 0.3rem;
    }
}

/* Default: stack normally */
.price-and-form-wrapper {
    margin-top: 2.5rem;
    display: block;
}

/* Tablet-specific layout */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .split-layout {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .image-column {
        width: 50%;
        padding-right: 1rem;
    }

    .info-column {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 1rem;
    }

    .price-and-form-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .product-price-section,
    .add-to-cart-form-container {
        width: 100%;
    }

    .add-to-cart-form-container {
        justify-content: flex-start;
        margin: 0;
    }

    .add-to-cart-form {
        width: 100%;
    }
}

/* === DEFAULT MOBILE === */
.price-form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-side,
.price-side {
    width: 100%;
}


/* === TABLET === */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .price-form-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        margin-top: 2rem;
    }

    .form-side {
        width: 60%;
    }

    .price-side {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .product-price-section {
        margin: 0;
    }
}

/* === DESKTOP === */
@media screen and (min-width: 1025px) {
    .price-form-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 2rem;
        gap: 2rem;
    }

    .form-side {
        width: 50%;
    }

    .price-side {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .product-price-section {
        margin: 0;
    }
}

/* === Tablet Fix: Align price vertically with add button === */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /*.price-form-row {*/
    /*    align-items: flex-end; !* or center if you want exact button alignment *!*/
    /*}*/
    .price-side {
        display: flex;
        align-items: center; /* middle-align with form */
        height: 100%;
        padding-top: 12.5rem; /* tweak this as needed for pixel-perfect alignment */
    }

    .product-price-section {
        margin: 0;
    }
}

/* === Desktop Fix: Align price with the button === */
@media screen and (min-width: 1025px) {
    /*.price-form-row {*/
    /*    align-items: center;*/
    /*}*/
    .price-side {
        display: flex;
        align-items: center; /* vertically align with button */
        justify-content: flex-end;
        padding-top: 4rem; /* tweak this as needed */
    }

    .product-price-section {
        margin: 0;
    }
}


/* === Mobile (≤767px): Price above the form === */
@media screen and (max-width: 767px) {
    .price-form-row {
        display: flex;
        flex-direction: column-reverse; /* 🔁 Push form below price */
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .form-side,
    .price-side {
        width: 100%;
    }

    .price-side {
        display: flex;
        justify-content: center; /* Optional: center on mobile */
        align-items: center;
    }
}

.product-card-link-wrapper:hover .product-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    transition: 0.3s ease;
}


@media screen and (max-width: 767px) {
    .mobile-price-block {
        display: block;
        background: #f8fafc;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        margin-top: 1rem;
        text-align: center;
    }

    .price-side {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .mobile-price-block {
        display: none !important;
    }

    .price-side {
        display: flex;
        align-items: center;
        /*justify-content: flex-end;*/
    }
}

@media screen and (min-width: 1024px) {

    .price-side {
        padding-top: 4rem;
    }
}

/* ================================
   CART PAGE STYLES
   ================================ */

/* Cart Hero Section */
.cart-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 0;
}

.cart-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cart-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.cart-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cart-hero-title {
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Cart Container */
.cart-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 500px;
    margin-top: 0;
}

/* Empty Cart Section */
.empty-cart-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.empty-cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*background: url('../uploads/cow_footer.png') no-repeat right center;*/
    opacity: 0.08;
    z-index: 1;
}

.empty-cart-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffb6c1 0%, #ffc0cb 50%, #ffb6c1 100%);
    z-index: 1;
}

.empty-cart-container {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.empty-cart-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sad-cart-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
    /*filter: drop-shadow(0 4px 8px rgba(44, 85, 48, 0.2));*/
    display: block;
    margin: 0 auto;
}

.empty-cart-message {
    margin-bottom: 2rem;
}

.empty-cart-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

.empty-cart-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

.empty-cart-actions {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.btn-return-to-store {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #2c5530;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(44, 85, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-return-to-store:hover {
    background: #1e3a22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.4);
    color: white;
    text-decoration: none;
}

.btn-return-to-store i {
    font-size: 1.1rem;
}

/* Cart with Items */
.cart-with-items {
    /*background: white;*/
    border-radius: 12px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
}

.cart-items-container {
    padding: 2rem;
}

.cart-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-items-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    /*background: white;*/
    border: 1px solid #e9ecef;
    border-radius: 12px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.cart-item-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.cart-item-image .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 2rem;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cart-product-weight {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.old-price, .old-price-euro {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.regular-price, .regular-price-euro,
.sale-price, .sale-price-euro {
    color: #2c5530;
    font-weight: 600;
}

.sale-price, .sale-price-euro {
    color: #dc3545;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    box-shadow: 0px 0px 0px 10px white;
    border-radius: 5px;
    background: white;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /*background: #f8f9fa;*/
    padding: 0.5rem;
    border-radius: 8px;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2c5530;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #1e3a22;
    color: white;
    text-decoration: none;
}

.qty-count {
    font-weight: 600;
    color: #2c5530;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    text-align: center;
}

.quantity-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
}

.remove-btn i {
    font-size: 1rem;
}

/* Recommended Products Section */
.recommended-products-section {
    margin: 4rem 0;
    padding: 2rem 0;
    /*background: #f8f9fa;*/
}

.recommended-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.recommended-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.recommended-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommended-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.recommended-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.recommended-product-category {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    font-weight: 500;
}

.recommended-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.recommended-product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.recommended-product-price .price-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.recommended-product-price .old-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.recommended-product-price .regular-price {
    color: #2c5530;
    font-weight: 600;
    font-size: 1.1rem;
}

.recommended-product-price .sale-price {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

.recommended-add-to-cart-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.recommended-add-to-cart-btn:hover {
    background: #218838;
    transform: scale(1.1);
}

.recommended-add-to-cart-btn i {
    font-size: 1.2rem;
}

.recommended-products-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.recommended-products-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s ease;
}

.recommended-products-dots .dot.active {
    background: #28a745;
}

.cart-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0 0 0.5rem 0;
}

.cart-product-weight {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.packaging-weight {
    font-weight: 500;
    color: #495057;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2c5530;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #1e3a22;
    color: white;
    text-decoration: none;
}

.qty-count {
    font-weight: 600;
    color: #2c5530;
    min-width: 30px;
    text-align: center;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

.sale-price {
    color: #dc3545;
    font-size: 1.1rem;
}

.regular-price {
    color: #2c5530;
    font-size: 0.8rem;
}

.remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
}

/* Cart Summary */
.cart-summary {
    margin-top: 2rem;
    padding: 2rem;
    /*background: #f8f9fa;*/
    border-radius: 8px;
}

.cart-total-section {
    margin-bottom: 2rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 2px solid #2c5530;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.total-amount-euro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6c757d;
    margin-left: 0.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-continue-shopping,
.btn-checkout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-continue-shopping {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
}

.btn-continue-shopping:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

.btn-checkout {
    background: #2c5530;
    color: white;
    border: 1px solid #2c5530;
}

.btn-checkout:hover {
    background: #1e3a22;
    color: white;
    text-decoration: none;
}

/* Quality Assurance Section */
.quality-assurance {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 0;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quality-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.quality-item:hover {
    transform: translateY(-5px);
}

.quality-icon {
    margin-bottom: 3.5rem;
}

.quality-icon i {
    font-size: 3.5rem;
    color: #2c5530;
}

.quality-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.quality-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Quality Bar */
.quality-bar {
    background: #2c5530;
    padding: 1.5rem 0;
    text-align: center;
}

.quality-bar-content p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cart Quality Assurance Section - Unique Classes */
.cart-quality-assurance {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 0;
}

.cart-quality-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cart-quality-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.cart-quality-item:hover {
    transform: translateY(-5px);
}

.cart-quality-icon {
    margin-bottom: 3.5rem;
}

.cart-quality-icon i {
    font-size: 3.5rem;
    color: #2c5530;
}

.cart-quality-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.cart-quality-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Cart Quality Bar */
.cart-quality-bar {
    background: #2c5530;
    padding: 1.5rem 0;
    text-align: center;
}

.cart-quality-bar-content p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cart Responsive Design */
@media (max-width: 768px) {
    .cart-hero-title {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }

    .cart-item-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
    }

    .cart-item-details {
        text-align: center;
    }

    .cart-item-controls {
        /*flex-direction: row;*/
        justify-content: center;
        gap: 1.5rem;
        box-shadow: 0px 0px 0px 10px white;
        border-radius: 5px;
        background: white;
    }

    .cart-actions {
        flex-direction: column;
    }

    .quality-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-item {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }

    .cart-quality-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-quality-item {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }

    .empty-cart-title {
        font-size: 2.5rem;
    }

    .empty-cart-container {
        padding: 0 1rem;
    }

    .empty-cart-section::before {
        background-size: 300px auto;
        opacity: 0.06;
    }

    .recommended-products-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .recommended-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .recommended-product-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .total-label {
        font-size: 1rem;
    }

    .total-amount-euro {
        font-size: 1rem;
    }

    .total-amount {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .cart-hero {
        height: 200px;
    }

    .cart-hero-title {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }

    .empty-cart-title {
        font-size: 2rem;
    }

    .empty-cart-subtitle {
        font-size: 1.1rem;
    }

    .sad-cart-image {
        width: 150px;
        height: 150px;
    }

    .btn-return-to-store {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .empty-cart-section::before {
        background-size: 250px auto;
        opacity: 0.05;
    }

    .total-label {
        font-size: 1rem;
    }

    .total-amount-euro {
        font-size: 1rem;
    }

    .total-amount {
        font-size: 1rem;
    }
}

/* ================================
   PAYMENT PAGE STYLES
   ================================ */

/* Payment Redirect Page */
.payment-redirect-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.redirect-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.redirect-text {
    color: #495057;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.redirect-subtext {
    color: #6c757d;
    font-size: 0.9rem;
}

.payment-form {
    display: none;
}

.secure-badge {
    background: #e8f5e8;
    color: #155724;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-top: 20px;
    display: inline-block;
}

/* Payment Result Pages */
.payment-result-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.result-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.result-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out;
}

.error-icon {
    color: #dc3545;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: shakeIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shakeIn {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    25% {
        transform: translateX(15px);
    }
    50% {
        transform: translateX(-15px);
    }
    75% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.result-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.success-title {
    color: #28a745;
}

.error-title {
    color: #dc3545;
}

.result-message {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.order-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
}

.order-info h5 {
    color: #495057;
    margin-bottom: 10px;
}

/* ================================
   WHERE TO BUY PAGE STYLES
   ================================ */

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.1);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* ================================
   ORDER PAGE STYLES
   ================================ */

.order-form-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 2.5rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
}

.order-summary-box {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.order-total-cell {
    text-align: right;
}

/* ================================
   BREADCRUMB STYLES
   ================================ */

.breadcrumb-container {
    margin: 0;
    padding: 1rem 0 1rem 0;;
}

/* ================================
   INLINE STYLE REPLACEMENTS
   ================================ */

.where-to-buy-title {
    text-align: center;
}

.sakarela-no-products {
    display: none;
}

/* Order Info Page Styles */
.order-info-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.order-title-center {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.order-form-box {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-bottom-color: #4CAF50;
}

.form-field input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-radio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-radio label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-radio input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: #4CAF50;
}

.payment-method-radio input[type="radio"]:checked + label {
    background: #e8f5e8;
    border-color: #4CAF50;
}

.btn-submit {
    background: #a8ba3c !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #8fa032 !important;
}

.error-message {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .order-title-center {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

/* Order Summary Page Styles */
.order-summary-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.order-summary-box {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.order-summary-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.customer-details-section,
.order-products-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #a8ba3c;
    padding-bottom: 0.5rem;
}

.customer-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-weight: bold;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #333;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.products-table-container {
    overflow-x: auto;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.products-table th {
    background: #a8ba3c;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.products-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.products-table tbody tr:hover {
    background: #f8f9fa;
}

.product-name {
    font-weight: 500;
}

.product-quantity {
    text-align: center;
    font-weight: bold;
    color: #a8ba3c;
}

.product-price {
    text-align: right;
    font-weight: bold;
}

.total-row {
    background: #f8f9fa;
    border-top: 2px solid #a8ba3c;
}

.total-label {
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    text-align: right;
}

.total-amount {
    font-weight: bold;
    font-size: 1.2rem;
    color: #a8ba3c;
    text-align: right;
}

.summary-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.btn-return-to-store {
    background: #a8ba3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-return-to-store:hover {
    background: #8fa032;
    color: white;
    text-decoration: none;
}

.btn-return-to-store i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .order-summary-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .customer-details-grid {
        grid-template-columns: 1fr;
    }

    .products-table {
        font-size: 0.9rem;
    }

    .products-table th,
    .products-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ===========================
   PRODUCT DETAIL – INFO BLOCK
   Styles only for .product-detail-info-page
   =========================== */

.product-detail-info-page {
    background: #E6EBE8; /* subtle mint page bg (like your screenshot) */
    padding: 28px 0 64px;
}

/* Two-column layout: buy card (left) + accordion (right) */
.product-detail-info-page .product-detail-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: minmax(440px, 560px) minmax(360px, 1fr);
    gap: 28px;
    align-items: start;
}

@media (max-width: 1100px) {
    .product-detail-info-page .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ===== Left: Purchase card ===== */
.product-detail-info-page .purchase-section {
    /*position: sticky;*/
    top: 18px; /* stays visible on scroll */
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    padding: 22px;
}

.product-detail-info-page .purchase-section .form-group {
    margin: 12px 0 16px;
}

.product-detail-info-page .purchase-section label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: #2A3540;
}

/* Select */
.product-detail-info-page .custom-packaging-select {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, .12);
    background: #F7FAF9;
    padding: 0 12px;
    font-weight: 600;
}

/* Quantity controls */
.product-detail-info-page .quantity-controls {
    display: flex;
    grid-template-columns: 56px 1fr 56px;
    gap: 10px;
    align-items: center;
}

.product-detail-info-page .quantity-controls input {
    height: 50px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, .12);
    background: #FFFAF0; /* warm, like screenshot */
    text-align: center;
    font-weight: 800;
}

/* +/- buttons */
.product-detail-info-page .qty-btn {
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #A9BF45; /* brand green */
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: filter .15s ease, transform .04s ease;
}

.product-detail-info-page .qty-btn:hover {
    filter: brightness(.98);
}

.product-detail-info-page .qty-btn:active {
    transform: translateY(1px);
}

/* Price box */
.product-detail-info-page .price-display {
    margin: 16px 0 18px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    display: block;
}

.product-detail-info-page .price-row {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin: 4px 0;
    flex-wrap: wrap;
}

.product-detail-info-page .price-label {
    font-weight: 700;
    color: #2A3540;
}

.product-detail-info-page .regular-price {
    font-weight: 900;
    color: #2A3540;
}

.product-detail-info-page .old-price {
    color: #8F9AA4;
    text-decoration: line-through;
    margin-right: 8px;
}

.product-detail-info-page .sale-price {
    color: #BE1E2D;
    font-weight: 900;
}

/* Add to cart */
.product-detail-info-page .btn-add-to-cart {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 14px;
    background: #A9BF45;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 22px rgba(169, 191, 69, .25);
    cursor: pointer;
    transition: filter .15s ease, transform .04s ease, box-shadow .15s ease;
}

.product-detail-info-page .btn-add-to-cart:hover {
    filter: brightness(.98);
    box-shadow: 0 12px 26px rgba(169, 191, 69, .28);
}

.product-detail-info-page .btn-add-to-cart:active {
    transform: translateY(1px);
}

/* ===== Right: Accordion ===== */
.product-detail-info-page .product-accordion {
    display: grid;
    gap: 12px;
}

.product-detail-info-page .accordion-item {
    background: #F8FBF9;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
    overflow: hidden;
}

/* Header */
.product-detail-info-page .accordion-header {
    display: grid;
    grid-template-columns: 28px 1fr 24px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    color: #2A3540;
    background: #F3F6F4;
}

.product-detail-info-page .accordion-icon {
    color: #A9BF45;
    font-size: 18px;
}

.product-detail-info-page .accordion-arrow {
    color: #48617A;
    transition: transform .18s ease;
}

/* Content */
.product-detail-info-page .accordion-content {
    display: none;
    padding: 12px 16px 16px;
    background: #fff;
    border-top: 1px dashed rgba(0, 0, 0, .08);
    line-height: 1.6;
    color: #2f3a44;
}

/* Open state hooks (JS toggles .open) */
.product-detail-info-page .accordion-item.open .accordion-content {
    display: block;
}

.product-detail-info-page .accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

/* Small refinements */
.product-detail-info-page .nutrition-list {
    margin: 0;
    padding-left: 18px;
}

.product-detail-info-page .old-price,
.product-detail-info-page .regular-price,
.product-detail-info-page .sale-price {
    font-weight: 600;
    font-size: 1.2rem;
}


/* -------------------------------
   PRODUCT CARD – RESPONSIVE TWEAKS
   Only the card changes, container stays the same
-------------------------------- */

/* Base: small visual tighten so desktop/mobile share nicer defaults */
.store-wrapper .product-card {
    padding: 1rem;
}

/* Desktop (shorter cards + slightly smaller type) */
@media (min-width: 992px) {
    .store-wrapper .product-card {
        padding: 0.9rem 1rem;
    }

    /* Shorten the image area to reduce overall height */
    .store-wrapper .product-card .card-img-top {
        width: 100%;
        aspect-ratio: 16 / 9; /* modern */
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Title a bit smaller */
    .store-wrapper .product-card .card-title {
        font-size: clamp(18px, 1.15vw, 22px);
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    /* Prices a touch smaller */
    .store-wrapper .product-card .product-price,
    .store-wrapper .product-card .product-price .price-row {
        font-size: 0.975rem;
    }
}

/* Mobile (narrower card centered + smaller fonts/buttons) */
@media (max-width: 600px) {
    /* Allow card to be narrower than the column and center it */
    .store-wrapper .product-card {
        min-width: 0 !important; /* overrides the 300px min-width */
        max-width: 270px !important; /* card width target */
        width: 90%; /* safety for very small screens */
        margin: 0 auto 1rem !important; /* center within full-width column */
        padding: 0.75rem;
    }

    .store-wrapper .product-card .card-img-top {
        width: 100%;
        aspect-ratio: 16 / 10; /* a bit shorter than desktop */
        height: auto; /* fallback below: */
        object-fit: cover;
        border-radius: 12px;
    }

    /* Fallback if aspect-ratio isn't supported */
    @supports not (aspect-ratio: 1) {
        .store-wrapper .product-card .card-img-top {
            height: 160px;
        }
    }

    .store-wrapper .product-card .card-title {
        font-size: clamp(16px, 4.5vw, 18px);
        line-height: 1.2;
        margin: 0.35rem 0 0.5rem;
    }

    .store-wrapper .product-card .product-price,
    .store-wrapper .product-card .product-price .price-row {
        font-size: 0.95rem; /* e.g., “6.80 лв” */
    }

    /* Buttons a bit smaller */
    .store-wrapper .product-card .btn,
    .store-wrapper .product-card button,
    .store-wrapper .product-card a.button {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

/* Optional: ensure the wrapper column doesn't fight centering on mobile */
@media (max-width: 600px) {
    .responsive-product-col { /* your per-card wrapper */
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* -----------------------------
   MOBILE FILTER (inputs only)
   Affects ONLY the dropdown on mobile
----------------------------- */
@media (max-width: 768px) {
    /* Optional theme tokens for quick tweaks */
    #mobile-filter-dropdown {
        --brand: #5f8d46; /* primary green */
        --surface: #f9fbf6; /* input bg */
        --border: #dbe6cf; /* input border */
        --muted: #98a391; /* placeholder */
        --ring: rgba(95, 141, 70, .15);
    }

    /* Layout spacing inside the form */
    #mobile-filter-form {
        padding: 12px 14px;
    }

    #mobile-filter-form .mobile-filter-row {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: .9rem;
    }

    /* Labels */
    #mobile-filter-form label {
        font-weight: 600;
        font-size: 0.95rem;
        color: #1b2b20;
    }

    /* Text/number/select fields */
    #mobile-filter-form input[type="number"],
    #mobile-filter-form input[type="text"],
    #mobile-filter-form select {
        width: 100%;
        height: 44px; /* avoids iOS zoom */
        padding: 10px 12px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        background: var(--surface);
        font-size: 16px; /* avoids iOS zoom */
        outline: none;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }

    #mobile-filter-form input:focus,
    #mobile-filter-form select:focus {
        border-color: var(--brand);
        background: #fff;
        box-shadow: 0 0 0 3px var(--ring);
    }

    #mobile-filter-form input::placeholder {
        color: var(--muted);
        opacity: 1;
    }

    /* Remove number spinners */
    #mobile-filter-form input[type="number"]::-webkit-outer-spin-button,
    #mobile-filter-form input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    #mobile-filter-form input[type="number"] {
        -moz-appearance: textfield;
    }

    /* Checkbox list */
    #mobile-filter-form .mobile-filter-checkboxes {
        display: flex;
        flex-direction: column;
        gap: .45rem;
        margin-top: .5rem;
    }

    #mobile-filter-form .mobile-filter-checkboxes label {
        display: flex;
        align-items: center;
        gap: .55rem;
        padding: .5rem .6rem;
        border: 1px solid #e5eddc;
        border-radius: 10px;
        background: #f7fbf3;
        font-size: 0.95rem;
    }

    #mobile-filter-form .mobile-filter-checkboxes input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--brand);
    }

    /* Buttons inside the dropdown (submit/reset) */
    #mobile-filter-dropdown .actions {
        display: flex;
        gap: .5rem;
        margin-top: 1rem;
    }

    #mobile-filter-dropdown button[type="submit"],
    #mobile-filter-dropdown .btn-apply {
        flex: 1;
        border-radius: 12px;
        background: var(--brand);
        color: #fff;
        border: none;
        font-weight: 700;
    }

    #mobile-filter-dropdown .btn-reset {
        padding: 12px 14px;
        border-radius: 12px;
        background: #eef3e8;
        color: #3b5430;
        border: 1px solid var(--border);
        font-weight: 700;
    }

    /*price text-cart*/
    .total-label {
        font-size: 1.2rem;
    }

    .total-amount-euro {
        font-size: 1.2rem;
    }

    .total-amount {
        font-size: 1.2rem;
    }
}

/* Cart dropdown — mobile OFF */
@media (max-width: 768px) {
    .cart-icon-wrapper .cart-dropdown,
    .cart-dropdown {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important; /* prevents accidental overlay */
    }

    /* safety: even on :hover, never show on mobile */
    .cart-icon-wrapper:hover .cart-dropdown {
        display: none !important;
    }

    /*Product page store stilization*/
    .image-column {
        flex: 0 0 40px;
    }

    .product-detail-page .image-text {
        gap: 2rem;
    }

    /*buttons checkout*/
    .btn-continue-shopping,
    .btn-checkout {
        padding: 1rem 1rem;
    }

    .regular-price, .regular-price-euro {
        font-size: 1.2rem;
    }

    .cart-item-card {
        background: white;
    }

    .product-category {
        margin-left: 1rem;
    }

    .product-title {
        margin-left: 1rem;
    }

    .cart-main-container {
        padding: 0;
    }

    .recommended-products-section {
        padding: 0;
        margin: 0;
    }

    .cart-summary {
        padding: 0;
    }
}

.summary-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    gap: 1.5rem; /* space between the two buttons */
}

.btn-return-to-store {
    background: #a8ba3c;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px; /* a bit more rounded */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.05s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 8px 20px rgba(168, 186, 60, 0.35);
}

.btn-return-to-store:hover {
    background: #8fa032;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(168, 186, 60, 0.4);
    transform: translateY(1px);
}

.btn-return-to-store i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .summary-actions {
        flex-direction: column; /* stack buttons vertically */
        align-items: stretch; /* make them full width */
        gap: 1rem;
    }

    .btn-return-to-store {
        width: 100%; /* full-width buttons */
        max-width: 320px; /* but not too huge on tablets */
        margin: 0 auto; /* center inside the container */
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}
