﻿/* Global color variables */
:root {
    --color-primary: #3d1d04;
    --color-secondary: #F2DDCC;
    --color-accent: #E68A8F;
    /* Derived primary shades used across the theme */
    --color-primary-800: #4e2504; /* darker button/bg */
    --color-primary-700: #7e4414; /* hover variant */
    --color-primary-650: #8b5325; /* alt hover/accent */
    /* Bootstrap 5 primary override — replaces default blue #0d6efd */
    --bs-primary:                  #3d1d04;
    --bs-primary-rgb:              61, 29, 4;
    --bs-primary-text-emphasis:    #1f0e01;
    --bs-primary-bg-subtle:        #e8d5c8;
    --bs-primary-border-subtle:    #c9a48a;
    --bs-link-color:               #3d1d04;
    --bs-link-color-rgb:           61, 29, 4;
    --bs-link-hover-color:         #7e4414;
    --bs-link-hover-color-rgb:     126, 68, 20;
    --bs-secondary: var(--color-secondary);
}

/* Global Font Override (moved from inline <style> in layout)
    IMPORTANT: Avoid overriding icon fonts (Font Awesome / Bootstrap Icons).
    We scope to common text elements instead of * to preserve font-family for icons. */
:root { --app-font: 'Lora', Georgia, serif; }
body { font-family: var(--app-font); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* Textual / interactive elements */
p, a, span, li, button, input, textarea, select, label, small, strong, em, div { font-family: var(--app-font); }
h1,h2,h3,h4,h5,h6 { font-weight:600; letter-spacing:.5px; font-family: var(--app-font); }
.navbar-brand, .btn, .nav-link, .custom-button { font-family: var(--app-font); }

/* Bootstrap .btn-primary override — replaces default blue */
.btn-primary {
    --bs-btn-color:               #fff;
    --bs-btn-bg:                  #E68A8F;
    --bs-btn-border-color:        #E68A8F;
    --bs-btn-hover-color:         #fff;
    --bs-btn-hover-bg:            #4e2504;
    --bs-btn-hover-border-color:  #4e2504;
    --bs-btn-focus-shadow-rgb:    61, 29, 3;
    --bs-btn-active-color:        #fff;
    --bs-btn-active-bg:           #2e1502;
    --bs-btn-active-border-color: #2e1502;
    --bs-btn-disabled-color:      #fff;
    --bs-btn-disabled-bg:         #E68A8F;
    --bs-btn-disabled-border-color: #3d1d04;
}
/* Re-affirm icon classes keep their own font (in case other rules add inheritance) */
/* NOTE: Do NOT override Font Awesome / Bootstrap Icons font-family here so icons render correctly. */

/***custom spinner start***/

/* Full-page Spinner Styles */
#spinner {
    z-index: 99999;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#spinner.hide {
    visibility: hidden !important;
    opacity: 0 !important;
}

.custom-spinner {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-logo {
    width: 100px;
    height: 100px;
    animation: rotateLogo 2s linear infinite;
}

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



/* === Product Grid: 5 columns on large screens (Category/Subcategory) === */
@media (min-width: 1400px) {
    /* Scope to the shop listing area to avoid affecting other grids */
    .product .col-lg-9 .row.g-4 > [class*="col-"] {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/* === Wider content containers on very large screens === */
@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1400px; /* widen content area on desktops */
    }
}

/* === Custom wider container for category/subcategory pages (max 1600px) === */
.container-1600 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    box-sizing: border-box;
    max-width: 1600px; /* target width on large screens */
}

/* === Product card title: smaller font, wrap lines, no truncation === */
.product-card .p-4 > p:first-child {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 4px;
    overflow: visible;
    white-space: normal;
    display: block;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* === Product card description: stronger clamp to further reduce card height === */
.product-card .p-4 > p:nth-of-type(2) {
    margin-bottom: 6px;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

/* === Product card button: smaller footprint === */
.product-card .btn.custom-button {
    font-size: 0.82rem !important;
    padding: 0.65rem 1.2rem !important;
    line-height: 1.2;
    white-space: nowrap;
    color: #ffffff !important;
}

.product-card .btn.custom-button i,
.product-card .btn.custom-button .fa,
.product-card .btn.custom-button .fas {
    color: #ffffff !important;
    font-style: normal !important;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .product-card .btn.custom-button {
        font-size: 0.88rem !important;
        padding: 0.7rem 1.4rem !important;
    }
}

@media (min-width: 1200px) {
    .product-card .btn.custom-button,
    .product-content .btn.custom-button {
        font-size: 0.78rem !important;
        padding: 0.55rem 1rem !important;
    }
}

/* === Category badge overlay: reduce footprint on product image === */
.product .product-card .position-absolute.bg-light {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem !important;
    margin: 0 !important;
    border-radius: 6px !important;
    background-color: rgba(255, 255, 255, 0.92) !important;
}

/***custom spinner end***/

/**breadcrumb-item**/

 .breadcrumb-item {
    color: #e9e9e9 !important;
}

.breadcrumb-item.active {
    color: #dddddd !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important;
}

/**global links color**/
a {
    color: #512805;
}

a:hover,
a:focus {
    color: #ded9d6;
}

/* ── Accessibility: skip-to-main link (WCAG 2.1 AA) ── */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 99999;
    background: #F2DDCC;
    color: #000;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0 0 6px 0;
    text-decoration: none;
    transition: top 0.1s;
}
.skip-to-main:focus {
    top: 0;
    color: #000;
}

/* ── Accessibility: focus-visible (WCAG 2.1 AA) ── */
:focus-visible {
    outline: 3px solid #F2DDCC;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Suppress outline for mouse clicks (keep only for keyboard) */
:focus:not(:focus-visible) {
    outline: none;
}

/**Custom colors*/

.custom-text-color {
    color: var(--color-primary);
}

/* Note: Do not override child colors here; inline styles from editor should apply */

.custom-text-color:hover{
    color:#3d1d05;
}

 .big-title1 {
    font-family: 'Lora', Georgia, serif !important;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1.15;
}


@media (max-width: 1400px) {
    .responsive-font3 {
      font-size: 16px !important;
    }
}

/* ---- Navbar menu responsive font & spacing ---- */
@media (min-width: 1300px) and (max-width: 1399.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 14px !important;
        padding: 3px 8px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1299.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 3px 5px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 2px 5px !important;
        letter-spacing: 0 !important;
    }
    .navbar {
        height: 85px;
    }
}

@media (max-width: 1200px) {
    .responsive-font {
        font-size: 16px !important;
    }
    .responsive-font2 {
        font-size: 22px !important;
    }
    .responsive-font4 {
        font-size: 14px !important;
    }
}

@media (max-width: 996px) {
    .responsive-font4 {
      font-size: 8px !important;
    }
}

/* =============================
   Sort dropdown (Category/Subcategory pages)
   Targets the select with id="sort" inside the .product section
   ============================= */
.product label[for="sort"] {
    font-weight: 600;
    margin-right: 8px;
}

.product #sort.form-select {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #333;
    border-radius: 10px;
    padding: 6px 36px 6px 12px; /* extra right padding for caret */
    min-width: 190px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.product #sort.form-select:focus {
    border-color: #f0a32c;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(240, 163, 44, 0.25);
}

/* Improve caret contrast on some browsers */
.product #sort.form-select {
    background-image: var(--bs-form-select-bg-img), linear-gradient(#fff, #fff);
    background-origin: content-box, border-box;
    background-clip: padding-box, border-box;
}

/* Compact variant on small viewports */
@media (max-width: 575.98px) {
    .product #sort.form-select {
        min-width: 160px;
        padding: 6px 32px 6px 10px;
        font-size: 0.95rem;
    }
    .product label[for="sort"] {
        font-size: 0.95rem;
    }
}

    /* Results count pill next to sort */
    .product .results-pill {
        display: inline-block;
        /* Semi-transparent background for better blending over content */
        background: rgba(255, 255, 255, 0.75);
        color: #3d1d04;
        border: 1px solid rgba(0,0,0,0.12);
        border-radius: 10px;
        padding: 6px 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        font-weight: 600;
    }


 .text-black{
    color: #131313;
 }

 .custom-bg-brown{ background: var(--color-primary); }

 .c-hover:hover{ color: var(--color-secondary); }
.nav-articles-dropdown .c-hover:hover { color: #fff !important; }
.nav-articles-dropdown .c-hover:hover i { color: #fff !important; }

 .m-hover:hover{
     background-color: var(--color-primary-650);

 }

.menu-item-color{ color: var(--color-primary); }

 .menu-item-color:hover{
     color:#ad5b17
 }

.custom-button{
    background-color: var(--color-accent);
    color: #ffffff !important;
    border-color: var(--color-accent);
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    line-height: 1.2;
}

.custom-button:hover {
    background-color: #a8454d;
    color: #ffffff !important;
    border-color: #a8454d;
}

.custom-color-orange{ color: var(--color-secondary); }

.navbarbackground{
    border-color:#f0a32c;
    background-color:#f0a32c;
}

.text-brown{ color: var(--color-primary); }
.category-toggle i{ color: var(--color-primary); transition: color .2s ease; }
/* Keep chevrons brown on hover (remove any green hover from themes) */
.category-toggle:hover i{ color: var(--color-primary); }
.product .product-categorie a.active-cat,
.product .product-categorie a.active-subcat{
    color: var(--color-primary) !important;
    background: rgba(61,29,4,0.08);
    border-radius:6px;
    padding:2px 6px;
}
/* removed chevron-right spacing after icon removal from subcategory links */

/* Chevron-right icon for subcategory items */
.product .product-categorie .category-list li.list-item {
    display: flex;
    align-items: flex-start;
    list-style: none;
}
.product .product-categorie .category-list a {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.product .product-categorie .category-list a::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.6rem;
    display: block;
    flex-shrink: 0;
    color: #3d1d04;
    margin-right: 7px;
    margin-top: 5px;
}

/* Emphasize active subcategory more strongly */
.product .product-categorie .category-list a.active-subcat{
    font-weight: 700;
    background: rgba(61,29,4,0.16);
}
.product .product-categorie .category-list a.active-subcat::before {
    color: var(--color-primary);
    font-weight: 900;
}

/* Remove old browser bullets from nested category lists, keep a subtle indent */
.product .product-categorie .category-list{
    list-style: none;
    margin: 0;
    padding-left: 16px;
}
.product .product-categorie .category-list li{
    list-style: none;
}

.owl-carousel .item {
    max-width: 100%;
    box-sizing: border-box;
}

/****************divider*************/
.divider-custom {
    margin: 0.7rem 0 0.7rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-custom-line {
    width: 100%;
    max-width: 10rem;
    height: 0.25rem;
    background-color: var(--color-accent);
    border-radius: 1rem;
    margin: 0 1rem;
}

.divider-custom-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.divider-custom-icon img {
    display: block;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.divider-custom-icon:hover img {
    transform: scale(1.18) rotate(8deg);
}

/* Prevent AOS from hiding the lines (they expand via AOS fade-right/left) */
[data-aos="fade-right"].divider-custom-line,
[data-aos="fade-left"].divider-custom-line {
    /* AOS hides via transform+opacity — lines are thin so keep height visible */
    overflow: visible;
}

.bgrnd-semi-transprnt{
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,0.55) 99%, rgba(255,255,255,0.55) 100%);
}

/* About-us social buttons */
.au-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(200, 90, 99, 0.12);
    color: #E68A8F;
    border: 1px solid rgba(200, 90, 99, 0.30);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.au-social-btn:hover {
    background: #E68A8F;
    color: #fff;
    border-color: #E68A8F;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(200, 90, 99, 0.30);
}

/* About-us contact info box */
.au-contact-info-box {
    border: 2px solid #f6d4cb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.55);
}

.au-contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.au-contact-link:hover {
    color: #f6d4cb;
    text-decoration: underline;
}

/* Skeleton loaders (gallery) */
.skeleton-card {
    width: 100%;
}
.skeleton {
    position: relative;
    overflow: hidden;
    background: #eee;
    border-radius: 10px;
}
.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.2s infinite;
}
.skeleton-img {
    aspect-ratio: 4 / 3;
    width: 100%;
}
.skeleton-title {
    height: 20px;
    margin-top: 8px;
    border-radius: 6px;
    width: 70%;
}
@keyframes skeleton-shimmer {
    100% { transform: translateX(100%); }
}

/* Gallery image loading styles */
.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(45deg, #f8f9fa 25%, #e9ecef 25%, #e9ecef 50%, #f8f9fa 50%, #f8f9fa 75%, #e9ecef 75%, #e9ecef);
    background-size: 20px 20px;
    animation: placeholderShimmer 2s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0); /* Enable hardware acceleration */
}

.image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid #dee2e6;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

.image-container.loaded::before {
    display: none;
}

.image-container.loaded {
    background: none;
    animation: none;
}

.gallery-image {
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    will-change: opacity;
    transform: translateZ(0); /* Enable hardware acceleration */
    backface-visibility: hidden; /* Prevent flickering */
}

#slides-container img[style*="opacity: 0"] {
    background: transparent;
}

/* Faster animation for loaded state */
.image-container.loaded .gallery-image {
    will-change: auto;
}

@keyframes placeholderShimmer {
    0% { background-position: 0px 0px; }
    100% { background-position: 40px 40px; }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Product details tab styling */
.product-tabs .nav-tabs{
    border-bottom: none;
    gap: .5rem;
}
.product-tabs .nav-tabs .nav-link{
    color: var(--color-primary);
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255, 255, 255, 0.877) !important;
    border-radius:15px 15px 0 0;
    padding: 6px 14px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: background-color .2s ease, color .2s ease, transform .1s ease;
}
.product-tabs .nav-tabs .nav-link:hover{
    background: rgba(255,255,255,0.95);
}
.product-tabs .nav-tabs .nav-link.active{
    color: #fff !important;
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(61,29,4,0.25);
}
.product-tabs .tab-content{
    background: transparent;

}




 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
    z-index: 99;
}
.product-description p, .product-short-description p {
    margin-bottom: 1rem !important;
    font-family: inherit !important;
    text-align: left !important;
}

.product-description span, .product-short-description span {
    font-family: inherit !important;
}

/* Remove any conflicting styles */
/* Base color for containers (plain text) */
.product-description.custom-text-color,
.product-short-description.custom-text-color,
.nutriciantable.custom-text-color {
    color: var(--color-primary);
}

/* Do not force color on children; inline styles and font[color] will take effect */

/* Force proper display for lists */
.product-description ul, .product-short-description ul {
    display: block !important;
    list-style-type: disc !important;
    margin-left: 20px !important;
}

.product-description ol, .product-short-description ol {
    display: block !important;
    list-style-type: decimal !important;
    margin-left: 20px !important;
}

/* Gallery page description */
.gallery-page-desc {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
}

/* Gallery page top spacing */
.gallery-page-top {
    margin-top: 100px;
}
@media (min-width: 992px) {
    .gallery-page-top {
        margin-top: 160px;
    }
}

/* Dealers page top spacing */
.dealers-page-top {
    margin-top: 60px;
}
@media (min-width: 992px) {
    .dealers-page-top {
        margin-top: 160px;
    }
}

/* ── Product detail — main image fixed dimensions, no cropping ── */
#main-product-image-wrapper {
    width: 100%;
    height: 440px;
    background: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

#main-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#main-product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    #main-product-image-wrapper { height: 360px; }
}

@media (max-width: 575.98px) {
    #main-product-image-wrapper { height: 260px; }
}

/* Στυλ για το gallery — horizontal thumbnail strip */
.product-thumbnails-horizontal {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 2px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 90, 99, 0.5) transparent;
}

.product-thumbnails-horizontal::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails-horizontal::-webkit-scrollbar-track {
    background: transparent;
}

.product-thumbnails-horizontal::-webkit-scrollbar-thumb {
    background-color: rgba(200, 90, 99, 0.45);
    border-radius: 4px;
}

.thumbnail-item {
    cursor: pointer;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.thumbnail-item.active {
    border-color: #f6d4cb !important;
    box-shadow: 0 0 0 2px rgba(200, 90, 99, 0.25);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-item:hover {
    border-color: rgba(200, 90, 99, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 90, 99, 0.2);
}

@media (max-width: 576px) {
    .thumbnail-item {
        width: 58px;
        height: 58px;
    }
}





/****distance page mobile from top**/
@media (max-width: 1200px)
 {
	.h-top{
	margin-top:20px !important;

	}
	/****distance mobile video title from top**/

	/****distanse -categories-product from top***/
	.h-top-product{
	margin-top:2px !important;
	}
}

.login-box{
    max-width:700px;
    width:100%;
    padding:40px 20px;
    margin:200px auto

}
/*** OLD cookie button (deprecated - now using cookie-modal-btn) ***/

.legacy-cookie-btn{
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;

}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 4px;
    border-radius: 60px 60px 200px 200px;
}

.topbar .top-info {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.85rem;
    min-width: 0;
}

.topbar .top-info > div {
    display: inline-flex;
    align-items: center;
    margin-right: 0 !important;
    white-space: nowrap;
}

.topbar .top-link {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.topbar .top-link a {
    letter-spacing: 0.5px;
    margin-right: 0 !important;
    display: inline-flex;
    align-items: center;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

.topbar-background {
    background-color: var(--topheader-bg, #E68A8F);
    padding: 0.45rem 1rem;
}

.topbar-background p {
    font-size: clamp(0.8rem, 2vw, 1.2rem) !important;
    margin: 0;
}
/* Topbar text/link/hover theming */
.topbar-background a,
.topbar-background a.text-white,
.topbar-background .top-info > div { color: var(--topheader-color, #ffffff) !important; }
.topbar-background a:hover { color: var(--topheader-hover-bg, rgba(255,255,255,0.75)) !important; }
.topbar-social-icon { color: var(--topheader-color, #ffffff) !important; }
.topbar-social-icon:hover {
    background-color: var(--topheader-hover-bg, rgba(255,255,255,0.4)) !important;
    color: var(--topheader-color, #fff) !important;
}

@media (max-width: 575.98px) {
    .topbar-background p {
        font-size: clamp(1.05rem, 4.5vw, 1.3rem) !important;
    }
}

/* ---- Topbar responsive scaling ---- */

/* lg-xl: 1200px – 1399px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .topbar-background { padding: 0.4rem 0.75rem; }
    .topbar .top-info { gap: 0.6rem; font-size: 12px; }
    .topbar .top-info > div > i:not(.topbar-contact-icon) { font-size: 0.85rem !important; }
    .topbar-contact-icon { width: 22px !important; height: 22px !important; font-size: 22px !important; }
    .topbar-social-icon { width: 32px !important; height: 32px !important; font-size: 15px !important; }
    .topbar .top-link { gap: 0.35rem; }
}

/* lg: 992px – 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .topbar-background { padding: 0.35rem 0.5rem; }
    .topbar .top-info { gap: 0.4rem; font-size: 11px; }
    .topbar .top-info > div > i:not(.topbar-contact-icon) { font-size: 0.8rem !important; }
    .topbar-contact-icon { width: 18px !important; height: 18px !important; font-size: 18px !important; }
    .topbar-social-icon { width: 28px !important; height: 28px !important; font-size: 13px !important; }
    .topbar .top-link { gap: 0.25rem; }
}
/*** Topbar End ***/


/** Topbar Social Icons **/
.topbar-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    color: #fff !important;
    font-size: 17px;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}
.topbar-social-icon:hover {
    background-color: rgba(255,255,255,0.4);
    transform: scale(1.12);
    color: #fff !important;
}
.topbar-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 28px;
    vertical-align: middle;
}
/** Topbar Social Icons End **/

/**Mobile Navbar Start **/
.orange-navbar {
    background: var(--mobile-header-bg, var(--header-bg, #F2DDCC));
    transition: background 0.4s, box-shadow 0.3s;
    box-shadow: 0 4px 14px rgba(200, 90, 99, 0.14);
    border-bottom: 2px solid rgba(200, 90, 99, 0.28);
}
.orange-navbar.scrolled {
    background: var(--mobile-header-bg, var(--header-bg, #F2DDCC));
    box-shadow: 0 6px 20px rgba(200, 90, 99, 0.22);
}

/* Hamburger button */
.mobile-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
    background: var(--mobile-header-toggler-bg, #E68A8F) !important;
    border: 2px solid var(--mobile-header-toggler-border, rgba(200, 90, 99, 0.45)) !important;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    padding: 0 !important;
    flex-shrink: 0;
}
.mobile-toggler i {
    color: var(--mobile-header-toggler-icon, #fff);
    font-size: 1.55rem !important;
    line-height: 1;
    display: block;
}
.mobile-toggler:hover,
.mobile-toggler:active {
    background: var(--mobile-header-toggler-bg, #E68A8F) !important;
    border-color: #3d1d04 !important;
    box-shadow: 0 3px 10px rgba(200, 90, 99, 0.35) !important;
}
.mobile-toggler:hover i,
.mobile-toggler:active i {
    color: var(--mobile-header-toggler-icon, #fff) !important;
}
/**Mobile Navbar End **/

/* Language selector — desktop */
.lang-selector-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}
/* Compact nav-link padding at smaller desktop widths so lang selector fits in flow */
@media (min-width: 992px) and (max-width: 1440px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
    }
    .navbar-expand-lg .navbar-nav .nav-link.pe-1 {
        padding-right: 0.25rem !important;
    }
    .navbar-expand-lg .navbar-nav .btn.nav-link.ps-0 {
        padding-left: 0 !important;
    }
}
.lang-selector-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1.5px solid #3d1d04;
    color: #3d1d04;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 3px 8px;
    cursor: pointer;
    white-space: nowrap;
}
.lang-selector-toggle:hover {
    background: #f7ede3;
}
.lang-chevron {
    font-size: 0.6rem;
    transition: transform 0.2s;
}
.lang-selector-wrap:hover .lang-chevron {
    transform: rotate(180deg);
}
.lang-selector-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #e0d0c5;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(61,29,4,0.12);
    list-style: none;
    padding: 4px 0;
    margin: 0;
    min-width: 130px;
    z-index: 1052;
}
.lang-selector-wrap:hover .lang-selector-menu,
.lang-selector-wrap:focus-within .lang-selector-menu {
    display: block;
}
.lang-selector-menu .lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    color: #3d1d04;
    font-size: 0.78rem;
    text-decoration: none;
}
.lang-selector-menu .lang-item:hover {
    background: #f7ede3;
    color: #3d1d04;
}
.lang-code {
    color: #3d1d04;
    font-weight: 700;
    min-width: 22px;
    font-size: 0.74rem;
}

/*** Navbar Start ***/

.navbarbackground{
    border-color:#F2DDCC;
    background-color:#F2DDCC;
}

.navbar .navbar-nav .nav-link {
    padding: 4px 12px;
    font-size: 18px;
    font-weight: 700;
    transition: .5s;
    color:#f6d4cb;
    border-radius: 6px;
    white-space: nowrap;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color:#fff;
    background-color: #f6d4cb;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
     font-size: 20px;
    font-weight: 700px;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        width: 600px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        padding: 10px;
        border-radius: 10px !important;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background:#f6d4cb;
    color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/

/****search Bar***/
.product-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    padding-right: 5px;
}
.product-item .image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    gap: 15px;
    flex-shrink: 0;
    padding: 5px;
    border-radius: 10px;
    background: #eff4f8;
}
#box-content-search li{
    list-style: none;
}
#box-content-search .product-item {
    margin-bottom: 10px;
}

/**Main Background**/
.main-background-gradient{
    background-color: #f6d4cb;
    background-image: url(../img/staxia-blur.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/** video section  **/
.video-section {
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    position: relative;
}

/* dvh fallback: on modern browsers use dynamic viewport height so iOS Safari
   chrome (address bar) is excluded from the initial CSS height.
   JS (index.js) overwrites with window.innerHeight for full compatibility. */
@supports (height: 100dvh) {
    .video-section { height: 100dvh; }
}

.video-container {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 580px;
}

.video-width {
    object-fit: cover;
    object-position: center center;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Promote to GPU compositing layer for hardware-accelerated decoding & rendering */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

/* Fix height chain so carousel background-images render */
.video-section > .container-fluid,
.video-section > .container-fluid > .position-relative {
    height: 100%;
}

/* Carousel hero — εμφάνιση ολόκληρης της εικόνας χωρίς περικοπή */
#indexHeroCarousel .carousel-inner,
#indexHeroCarousel .carousel-item {
    height: 100%;
}

.carousel-hero-item {
    background-color: #111;
    overflow: hidden;  /* clips .kb-bg when ken-burns expands it */
    position: relative;
}

/* ---- Ken Burns Effect ---- */
.kb-bg {
    position: absolute;
    inset: 0;              /* default: exact fit, no animation */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ken-burns-carousel .kb-bg {
    inset: -8%;            /* 116% size gives room for translate without white edges */
    will-change: transform;
}
/* 3 cycling variants */
.ken-burns-carousel .carousel-hero-item:nth-child(3n+1) .kb-bg {
    animation: kb-zoom-in  5.5s ease-in-out forwards;
}
.ken-burns-carousel .carousel-hero-item:nth-child(3n+2) .kb-bg {
    animation: kb-zoom-out 5.5s ease-in-out forwards;
}
.ken-burns-carousel .carousel-hero-item:nth-child(3n+0) .kb-bg {
    animation: kb-pan-right 5.5s ease-in-out forwards;
}
@keyframes kb-zoom-in {
    from { transform: scale(1.0) translate(0, 0); }
    to   { transform: scale(1.12) translate(-2%, -1.5%); }
}
@keyframes kb-zoom-out {
    from { transform: scale(1.12) translate(3%,  2%); }
    to   { transform: scale(1.0)  translate(0,   0); }
}
@keyframes kb-pan-right {
    from { transform: scale(1.08) translate(-3.5%, 0); }
    to   { transform: scale(1.08) translate(3.5%,  0); }
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .kb-bg { animation: none !important; }
}


.video-section h1,
.video-section p {
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Video overlay content */
.hero-content-wrap {
    overflow: visible;
    align-items: flex-start !important;
    padding-top: 2%;
}

.hero-text-inner {
    width: 80%;
    max-width: 900px;
    padding: 1rem;
}

.hero-title {
    font-size: clamp(2.6rem, 7vw, 4rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    line-height: 1.35;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-content-wrap { padding-top: 18%; }
    .hero-text-inner { width: 90%; }
    .hero-title { font-size: clamp(1.8rem, 5.5vw, 2.8rem); }
    .hero-desc  { font-size: clamp(0.82rem, 2.5vw, 1.1rem); margin-bottom: 1.5rem; }
}

@media (max-width: 575.98px) {
    /* Reduce min-height so small phones (iPhone SE 568px) don't overflow */
    .video-section  { min-height: 320px; }
    .video-container { min-height: 320px; }

    .hero-content-wrap {
        padding-top: 12%;
        align-items: center !important;  /* vertically center text on portrait phones */
    }
    .hero-text-inner { width: 96%; }
    .hero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .hero-desc  { font-size: clamp(0.88rem, 3.5vw, 1.1rem); line-height: 1.4; margin-bottom: 1rem; }
}

@media (max-width: 399.98px) {
    .video-section  { min-height: 280px; }
    .video-container { min-height: 280px; }

    .hero-title { font-size: clamp(1.2rem, 7vw, 1.8rem); }
    .hero-desc  { font-size: clamp(0.8rem, 3.5vw, 1rem); margin-bottom: 0.75rem; }
}


/* Subcategory Carousel Styles */

/* Equal Height για Subcategory Carousel Items */
.subcategory-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.subcategory-carousel .owl-item {
    display: flex;
    height: auto;
}

.subcategory-carousel .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: 0 10px;
}

/* Το content area θα επεκταθεί για να καλύψει τον διαθέσιμο χώρο */
.subcategory-carousel .item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Διατηρούμε τις υπάρχουσες ιδιότητες */
.subcategory-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ── Category Carousel Circle Style ── */
.subcategory-carousel {
    position: relative;
    padding: 0.25rem 0 0.4rem;
}

.cat-circle-item {
    text-align: center;
    padding: 0.2rem 0;
}

.cat-circle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.cat-circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow: 0 3px 12px rgba(0,0,0,0.13);
    margin: 0 auto 0.6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 575px) {
    .cat-circle-img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.45rem;
    }
    .cat-circle-name {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        word-break: break-word;
    }
    /* Hide parent label on small screens — subcategory name is enough */
    .cat-circle-parent {
        display: none;
    }
    .cat-circle-item {
        padding: 0.3rem 0;
    }
}

.cat-circle-link:hover .cat-circle-img {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.cat-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-circle-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    /* Clamp to 2 lines so long names don't explode the item height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.cat-circle-parent {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    display: block;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    /* Clamp to 1 line with ellipsis */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Owl nav arrows */
.cat-carousel-wrapper {
    position: relative;
    padding: 0 44px;
}

@media (max-width: 768px) {
    .cat-carousel-wrapper {
        padding: 0 !important;
    }
    .cat-nav-btn {
        display: none !important;
    }
    .background-carousel h2 {
        font-size: 1.2rem;
        margin-top: 0.4rem !important;
        margin-bottom: 0.2rem !important;
    }
}

/* Very small screens: 2 items per view (set in main.js), compact circles */
@media (max-width: 399.98px) {
    .cat-carousel-wrapper {
        padding: 0;
    }
    .cat-circle-img {
        width: 70px;
        height: 70px;
        margin-bottom: 0.35rem;
    }
    .cat-circle-name {
        font-size: 0.68rem;
        -webkit-line-clamp: 2;
        word-break: break-word;
    }
    .cat-circle-parent {
        display: none;
    }
    .cat-circle-item {
        padding: 0.2rem 0;
    }
}

.cat-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #E68A8F;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, color 0.2s ease;
}

.cat-nav-prev { left: 0; }
.cat-nav-next { right: 0; }

.cat-nav-btn:hover {
    background: #E68A8F;
    color: #fff;
}

/* Navigation Buttons */
.owl-nav-buttons {
    position: relative;
    margin-top: 20px;
}

.owl-nav-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid #E68A8F;
    margin: 0 5px;
}

.owl-nav-buttons button:hover {
    transform: scale(1.1);
    background: #E68A8F;
    border-color: #E68A8F;
}

.owl-nav-buttons button i {
    font-size: 18px;
    color: #E68A8F;
}

.owl-nav-buttons button:hover i {
    color: #ffffff;
}

/* Featured Products Carousel — side arrows */
.featured-carousel-wrapper {
    position: relative;
    padding: 0 48px;
}

/* On mobile the side arrows are hidden, so reclaim their padding for wider cards */
@media (max-width: 767.98px) {
    .featured-carousel-wrapper {
        padding: 0 4px;
    }
}

.featured-side-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #E68A8F;
    border: 2px solid #E68A8F;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, color 0.2s ease;
}

.featured-side-prev { left: 0; }
.featured-side-next { right: 0; }

.featured-side-btn i {
    color: #E68A8F;
}

.featured-side-btn:hover {
    background: #E68A8F;
    color: #fff;
    border-color: #E68A8F;
}

.featured-side-btn:hover i {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .subcategory-carousel { padding: 0.25rem 0 0.4rem; }
    .cat-circle-img { width: 85px; height: 85px; }
    .cat-circle-name { font-size: 0.75rem; }
    .cat-circle-parent { font-size: 0.75rem; }
}

/* Featured Products Carousel Styles - Equal Height */
.featured-carousel .item {
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 4px;
    border-radius: 12px;
    overflow: visible;
    position: relative;
}

.featured-carousel .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
}

.featured-carousel .preparation-img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 260px; /* Slightly taller image to match increased card height */
    position: relative;
}

.featured-carousel .preparation-img img {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-carousel .preparation-img img:hover {
    transform: scale(1.04);
}

/* Content area */
.featured-carousel .item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.75rem !important;
}

.featured-carousel .item .p-4 h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
    height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featured-carousel .item .p-4 p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    max-height: 55px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.featured-carousel .item .p-4 .d-flex {
    margin-top: auto;
}

.featured-carousel .item .p-4 .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
}

/* Fix for carousel spacing */
.featured-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.featured-carousel .owl-item {
    display: flex;
    height: auto;
}

/* end Featured Products Carousel Styles */

/* Category badge styling for featured products */
.featured-cat-badge {
    position: absolute;
    top: 6px;
    right: 10px;
    background: transparent;
    border: 1px solid #8C3740;
    color:#8C3740 !important;
    font-size: .6rem;
    font-weight:600;
    letter-spacing:.3px;
    padding:6px 10px 6px 8px;
    border-radius: 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    box-shadow:0 2px 6px -1px rgba(0,0,0,.3);
    z-index:4;
    line-height:1.3;
    max-width: 90%;
    width: max-content;
    backdrop-filter: blur(2px);
    white-space: nowrap;
    text-align: center;
}
.featured-cat-badge span {
    white-space: nowrap;
    text-align: center;
}
.featured-cat-badge--left {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
/* Inline variant: badge flows right after the product name instead of overlaying the image */
.featured-cat-badge--inline {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    box-shadow: none;
}

/* Desktop: το κείμενο της κατηγορίας να χωράει άνετα μέσα στο border (αναδίπλωση αντί για υπερχείλιση) */
@media (min-width: 992px) {
    .featured-cat-badge.featured-cat-badge--inline {
        white-space: normal;
        max-width: 100%;
        width: auto;
        padding: 5px 14px;
        gap: 6px;
        line-height: 1.35;
        text-align: center;
    }
    .featured-cat-badge.featured-cat-badge--inline span {
        white-space: normal;
    }
}

/* Tablet & πολύ μικρές οθόνες: ίδια αναδίπλωση κειμένου μέσα στο border, με πιο συμπαγές padding */
@media (max-width: 991.98px) {
    .featured-cat-badge.featured-cat-badge--inline {
        white-space: normal;
        max-width: 100%;
        width: auto;
        line-height: 1.3;
        text-align: center;
    }
    .featured-cat-badge.featured-cat-badge--inline span {
        white-space: normal;
        min-width: 0;
        word-break: break-word;
    }
}
.featured-cat-badge i {font-size:.65rem; color:#8C3740; flex-shrink:0;}
.featured-cat-badge:hover {filter:brightness(1.07);}

/* Badge: tighter on lg range (992-1199px) where cards are narrower */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .featured-cat-badge {
        font-size: .55rem;
        padding: 5px 8px 5px 7px;
        gap: 3px;
        max-width: 92%;
        width: max-content;
        white-space: nowrap;
    }
    .featured-cat-badge i { font-size: .6rem; }
}

/* Mobile: minimal badge */
@media (max-width: 575.98px) {
    .featured-cat-badge {
        font-size: .52rem;
        padding: 5px 7px 5px 6px;
        gap: 3px;
        max-width: 92%;
        width: max-content;
        white-space: nowrap;
        top: 4px;
    }
    .featured-cat-badge i { font-size: .55rem; }
}

/* Very small screens: let badge text wrap instead of overflowing */
@media (max-width: 399.98px) {
    .featured-cat-badge {
        white-space: normal;
        word-break: break-word;
        width: auto;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 767.98px) {
    .featured-cat-badge {
        font-size: .55rem;
        padding: 5px 8px 5px 7px;
        gap: 3px;
        max-width: 92%;
        width: max-content;
        white-space: nowrap;
    }
    .featured-cat-badge i { font-size: .58rem; }
}

/* Inner content spacing refinement */
.featured-carousel .item .p-2 {flex-grow:1; display:flex; flex-direction:column; justify-content:flex-end;}
.featured-carousel .item .p-2 p {margin-bottom:.35rem;}

@media (min-width: 992px){
    .featured-carousel .item {min-height: unset;}
}

/* Mobile tweaks for Featured Products */
@media (max-width: 599px) {
    /* Κάθε κάρτα παίρνει φυσικό ύψος — δεν επιμηκύνεται στο ύψος της ψηλότερης */
    .featured-carousel .owl-stage { align-items: flex-start; }
    .featured-carousel .owl-item  { height: auto !important; }
    .featured-carousel .item      { height: auto; }
    .pc-card                      { height: auto; }

    /* 2 κάρτες ανά οθόνη: αφήνουμε το Owl να ορίσει το πλάτος, μόνο μικρό
       εσωτερικό padding ώστε να μη «κολλάνε» οι δύο κάρτες μεταξύ τους */
    .featured-carousel .item {
        width: 100%;
        padding-left: 2px;
        padding-right: 2px;
    }
    .featured-carousel .preparation-img {height: 150px;}

    /* Ελαχιστοποίηση οριζόντιου padding των containers των σχετικών προϊόντων
       ώστε οι 2 κάρτες να αποκτήσουν το μέγιστο δυνατό πλάτος.
       Υπάρχει διπλό padding: το εξωτερικό .container-fluid.h-top και το
       εσωτερικό .container του component — μειώνουμε και τα δύο. */
    .container-fluid.h-top {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .container.bgrnd-semi-transprnt {
        padding-left: 0.2rem !important;
        padding-right: 0.2rem !important;
    }
    .featured-mobile-title {
        font-size: 1.05rem !important;
        position: relative;
        z-index: 3;
        background: rgba(255,255,255,0.92);
        padding: 4px 8px;
        border-radius: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.6em;
    }
}


/* ── Product Card Component (pc-card) ── */
.pc-card {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255,255,255,0.55);
    border: 1px solid #f6d4cb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(4px);
}

.pc-card:hover {
    box-shadow: 0 5px 16px rgba(200,90,99,0.14);
    transform: translateY(-2px);
    border-color: #a0404a;
}

.pc-card__img-wrap {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.pc-card__img-wrap::after {
    display: none;
}

.pc-card__img-wrap img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease;
}

.pc-card:hover .pc-card__img-wrap img {
    transform: scale(1.03);
}

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

.pc-card__name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.3rem;
    color: var(--color-primary, #E68A8F);
    display: block;
    overflow: visible;
    white-space: normal;
}

.pc-card__cat {
    display: inline-block;
    max-width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8C3740;
    background: transparent;
    border: 1px solid #8C3740;
    border-radius: 20px;
    padding: 0.15rem 0.65rem;
    margin-bottom: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.pc-card__footer {
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(200,90,99,0.15);
}

.pc-card__btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* Mobile: tighter */
@media (max-width: 575.98px) {
    .pc-card__img-wrap img { height: 132px !important; }
    .rel-card-body { padding: 0.5rem 0.55rem 0.6rem; }
    .pc-card__name { font-size: 0.72rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .pc-card__cat { display: block; font-size: 0.65rem; margin-bottom: 0.25rem; }
    .pc-card__btn { font-size: 0.68rem; padding: 0.28rem 0.6rem; }
    .pc-card__btn i { display: none; }
}

/* Very small phones: 2 carousel items → στενή κάρτα, μικρότερη εικόνα ώστε να μην περικόπτεται */
@media (max-width: 399.98px) {
    .pc-card__img-wrap img { height: 118px !important; }
    .rel-card-body { padding: 0.45rem 0.5rem 0.55rem; }
    .pc-card__name { font-size: 0.7rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .pc-card__cat  { font-size: 0.62rem; margin-bottom: 0.25rem; padding: 0.12rem 0.5rem; }
    .pc-card__btn  { font-size: 0.66rem; padding: 0.28rem 0.55rem; }
    .pc-card__btn i { display: none; }
    .featured-carousel .owl-stage { align-items: flex-start; }
    .featured-carousel .owl-item  { height: auto !important; }
    .featured-carousel .item      { height: auto; padding-left: 4px; padding-right: 4px; }
    .pc-card                      { height: auto; }
}

/* Tablet & mid-desktop: product card button inside sidebar layout */
@media (min-width: 576px) and (max-width: 1199.98px) {
    .product-content .btn.custom-button {
        font-size: 0.74rem !important;
        padding: 0.5rem 0.7rem !important;
        white-space: normal;
        line-height: 1.3;
        word-break: break-word;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 767.98px) {
    .featured-carousel .owl-stage { align-items: flex-start; }
    .featured-carousel .owl-item  { height: auto !important; }
    .featured-carousel .item      { height: auto; }
    .pc-card                      { height: auto; }
    .pc-card__img-wrap img { height: 140px !important; }
    .pc-card__name { font-size: 0.8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .pc-card__btn { font-size: 0.74rem; }
}

/* Navigation Buttons */
.owl-nav-buttons {
    position: relative;
    margin-top: 20px;
}

.owl-nav-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-nav-buttons button:hover {
    transform: scale(1.1);
}

.owl-nav-buttons button i {
    font-size: 18px;
}


.page-header {
    position: relative;
    background:  radial-gradient(circle, rgba(68,88,90,1) 0%, rgba(20,20,20,0.6362920168067228) 30%), url(../img/page-header.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height:25vh;

}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 120px !important;
    }

}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}



.product .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.product .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.product .product-categorie .product-name {
    line-height: 40px;
}

.product .product-categorie .product-name a {
    transition: 0.5s;
}

.product .product-categorie .product-name a:hover {
    color: var(--bs-secondary);
}

.product .product-card {

    transition: 0.5s;
}
.product .product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

/* --- Product card image zoom --- */
.product-card-img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 0;
    padding-bottom: 72%;
    position: relative;
    display: block;
}

.product-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 1.4s ease, filter 1.4s ease;
}

.product-card-img:hover img {
    transform: scale(1.1);
    filter: brightness(1.04);
    will-change: transform;
}
/* --- end product card image zoom --- */

/* Category / Subcategory page top spacing */
.category-page-top {
    margin-top: 60px;
}
.subcategory-page-top {
    margin-top: 60px;
}
@media (min-width: 992px) {
    .category-page-top {
        margin-top: 120px;
    }
    .subcategory-page-top {
        margin-top: 120px;
    }
}

/* --- end product page layout --- */

.product .product-card .product-img {
   	overflow: hidden;
    border-radius: 10px 10px 0 0;
	/* Add standardized dimensions */
    width: 100%;
    height: 0;
    padding-bottom: 127.6%; /* Aspect ratio for 540x689 */
    position: relative;
}

.product .product-card .product-img img {
	/* Ensure image fills container properly */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
    object-position: center;
}

/* Equal Height Product Cards */
.product .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.product .product-card .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.625rem 0.5rem !important;
}

.product .product-card .p-4 h5,
.product .product-card .p-4 p {
    margin-bottom: 6px;
}

.product .product-card .p-4 .d-flex {
    margin-top: 6px;
}




/* === All Products / Categories page — mobile-first === */
.categories-container {
    padding-top: 0.75rem;
    padding-bottom: 2rem;
}

/* ── Grid: mobile single col, desktop 2 col ── */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
}

/* ── Category group card ── */
.cat-group {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(230, 138, 143, 0.25);
    border-top: 3px solid #E68A8F;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(200, 90, 99, 0.10);
    transition: box-shadow 0.25s ease;
}

.cat-group:hover {
    box-shadow: 0 8px 28px rgba(200, 90, 99, 0.18);
}

.cat-group .row {
    flex: 1;
    align-content: flex-start;
}

/* ── Group header ── */
.cat-group__header {
    padding: 0.75rem 1rem 0.6rem;
    border-bottom: 1px solid rgba(230, 138, 143, 0.18);
    background: rgba(230, 138, 143, 0.06);
}

.cat-group__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary, #3d1d04);
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.cat-group__title:hover {
    color: #E68A8F;
}

.cat-group__arrow {
    font-size: 1.4rem;
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}

.cat-group__title:hover .cat-group__arrow {
    transform: translateX(4px);
    opacity: 1;
    color: #E68A8F;
}

@media (min-width: 576px) {
    .cat-group__title { font-size: 1.15rem; }
}

@media (min-width: 992px) {
    .cat-group__title { font-size: 1.25rem; }
}

/* ── Subcategory list ── */
.sc-list {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0.5rem;
}

.sc-list__item + .sc-list__item {
    border-top: 1px solid rgba(230, 138, 143, 0.15);
}

.sc-list__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1rem;
    text-decoration: none;
    color: var(--color-primary, #3d1d04);
    font-weight: 600;
    font-size: 0.92rem;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s, padding-left 0.15s, color 0.15s;
}

.sc-list__link:hover {
    background: rgba(230, 138, 143, 0.10);
    border-left-color: #E68A8F;
    padding-left: 1.25rem;
    color: #E68A8F;
}

.sc-list__thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(230, 138, 143, 0.2);
}

.sc-list__name {
    flex: 1;
    line-height: 1.3;
}

.sc-list__arrow {
    font-size: 0.8rem;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.sc-list__link:hover .sc-list__arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (min-width: 576px) {
    .sc-list__thumb { width: 50px; height: 50px; }
    .sc-list__link { font-size: 0.98rem; padding: 0.6rem 1.1rem; }
}

@media (min-width: 992px) {
    .sc-list__thumb { width: 54px; height: 54px; border-radius: 10px; }
    .sc-list__link { font-size: 1rem; padding: 0.65rem 1.25rem; }
}

/* ── Subcategory card ── */
.category-card {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 0.4rem 0.4rem 0.5rem;
    border: 1px solid rgba(230, 138, 143, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(200, 90, 99, 0.18);
    border-color: #E68A8F;
}

.category-card__img-wrap {
    overflow: hidden;
    border-radius: 7px;
    margin-bottom: 0.4rem;
    flex: 1;
}

.category-card__img-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card__img-wrap img {
    transform: scale(1.06);
}

.category-card__name {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary, #3d1d04);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.5em;
}

@media (min-width: 576px) {
    .category-card { padding: 0.5rem 0.5rem 0.6rem; border-radius: 11px; }
    .category-card__name { font-size: 0.82rem; }
}

@media (min-width: 992px) {
    .category-card { padding: 0.6rem 0.6rem 0.7rem; border-radius: 12px; }
    .category-card__name { font-size: 0.88rem; }
}


/*** categories carousel Start ***/
.ccategory .ccategory-item {
    height: 100%;
    transition: 0.5s;
}

.ccategory .ccategory-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.ccategory .ccategory-item .ccategory-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 20px;
}

.ccategory .ccategory-item .ccategory-img img {
    transition: 0.5s;
}

.ccategory .ccategory-item .ccategory-img img:hover {
    transform: scale(1.1);
}

.ccategory .owl-stage {
    margin:50px 0;
    position: relative;
}

.ccategory .owl-nav .owl-next {
    position: absolute;
    bottom: 0;
    right: 560px;
    color: #E68A8F;
    padding: 5px 25px;
    border: 1px solid #E68A8F;
    border-radius: 15px;
    transition: 0.5s;

}

@media (max-width:992px){
    .ccategory .owl-nav .owl-next{
        position: absolute;
        bottom: 0;
        right: 125px;
        color: #E68A8F;
        padding: 5px 25px;
        border: 1px solid #E68A8F;
        border-radius: 15px;
        transition: 0.5s;

    }


}

.ccategory .owl-nav .owl-next:hover {
    background: #E68A8F;
    color: var(--bs-white);
}

.ccategory .owl-nav .owl-prev {
    position: absolute;
    bottom: 0;
    right: 640px;
    color: #E68A8F;
    padding: 5px 25px;
    border: 1px solid #E68A8F;
    border-radius: 15px;
    transition: 0.5s;
}

@media (max-width:992px){
    .ccategory .owl-nav .owl-prev {
        position:flex;
        bottom: 0;
        right: 195px;
        color: #E68A8F;
        padding: 5px 25px;
        border: 1px solid #E68A8F;
        border-radius: 15px;
        transition: 0.5s;
    }
}

.ccategory .owl-nav .owl-prev:hover {
    background: #E68A8F;
    color: var(--bs-white);
}
/*** category carousel End ***/

/***shopfilter css**/

.brand-list li,
    .category-list li {
        line-height: 40px;
    }

    .brand-list li,
    .chk-brand,
    .category-list li .chk-category {
        width: 1rem;
        font-size: 16px;
        font-weight: 500;
        height: 1rem;
        color: #3d1d04;
        border: 0.125rem;
        margin-right: 0.75rem;
    }

    .filled-heart {
        color: red;
    }

/*** preparation Start ***/
.preparation .preparation-item {
    height: 100%;
    transition: 0.5s;
}

.preparation .preparation-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.preparation .preparation-item .preparation-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 12px;
}

.preparation .preparation-item .preparation-img img {
    transition: 0.5s;
}

.preparation .preparation-item .preparation-img img:hover {
    transform: scale(1.2);
}

.preparation .owl-stage {
    margin: 50px 0;
    position: relative;
}

.preparation .owl-nav .owl-next {
    position: absolute;
    bottom: 0;
    right: 560px;
    color: #f6d4cb;
    padding: 5px 25px;
    border: 1px solid #f6d4cb;
    border-radius: 15px;
    transition: 0.5s;

}

@media (max-width:992px){
    .preparation .owl-nav .owl-next{
        position: absolute;
        bottom: 0;
        right: 125px;
        color:#f6d4cb;
        padding: 5px 25px;
        border: 1px solid #f6d4cb;
        border-radius: 15px;
        transition: 0.5s;

    }


}

.preparation .owl-nav .owl-next:hover {
    background: #f6d4cb;
    color: var(--bs-white);
}

.preparation .owl-nav .owl-prev {
    position: absolute;
    bottom: 0;
    right: 640px;
    color: #f6d4cb;
    padding: 5px 25px;
    border: 1px solid #f6d4cb;
    border-radius: 15px;
    transition: 0.5s;
}

@media (max-width:992px){
    .preparation .owl-nav .owl-prev {
        position:flex;
        bottom: 0;
        right: 195px;
        color: #f6d4cb;
        padding: 5px 25px;
        border: 1px solid #f6d4cb;
        border-radius: 15px;
        transition: 0.5s;
    }
}

.preparation .owl-nav .owl-prev:hover {
    background:#f6d4cb;
    color: var(--bs-white);
}
/*** preparation End ***/

/* ── Η Διαδικασία: card border ── */
.preparation .card.background-carousel {
    border: 1px solid #E68A8F !important;
    background: transparent;
}


/*** Banner Section Start ***/

.banner-home {
    background: linear-gradient(to right, rgba(204,139,78,0.55), rgba(184,116,58,0.55), rgba(160,96,42,0.55));
    background-size: 100% 100%;
    background-position: center;
    min-height: 420px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.banner-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Iridescent shimmer intro (triggered once on scroll via JS) ── */
.banner-home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 28%,
        rgba(255, 245, 210, 0.12) 38%,
        rgba(255, 220, 160, 0.42) 47%,
        rgba(230, 138, 143, 0.28) 50%,
        rgba(255, 220, 160, 0.42) 53%,
        rgba(255, 245, 210, 0.12) 62%,
        transparent 72%,
        transparent 100%
    );
    transform: translateX(-160%);
    pointer-events: none;
}

@keyframes banner-shimmer-intro {
    0%   { transform: translateX(-160%); opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(160%); opacity: 0; }
}

.banner-home.shimmer-intro::after {
    animation: banner-shimmer-intro 2.2s ease-in-out 1 forwards;
}

/* Text block */
.banner2-text-block {
    padding: 2.5rem 0 2.5rem 0.5rem;
}

.banner2-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin-bottom: 1rem;
}

.banner2-subtitle {
    font-weight: 600;
    color: #fff3cd;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-cta-btn {
    background-color: #fff;
    color: var(--color-primary-800) !important;
    border-color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
    background-color: #E68A8F;
    color: #fff !important;
    border-color: #E68A8F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.banner2-cta-btn {
    background-color: #fff;
    color: var(--color-primary-800) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.8);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.banner2-cta-btn:hover {
    background-color: #E68A8F;
    color: #fff !important;
    border-color: #E68A8F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Image wrap */
.banner2-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.banner2-img {
    border-radius: 12px;
    object-fit: cover;
    max-height: 380px;
}

/* Badge */
.banner2-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #e63946 0%, #c1121f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.4);
    overflow: visible;
}

.banner2-badge span {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.25;
    width: 170px;
    word-break: keep-all;
    overflow-wrap: normal;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .banner2-text-block {
        padding: 2rem 0.5rem 1rem;
        text-align: center;
    }
    .banner2-cta-btn {
        margin: 0 auto;
    }
    .banner2-image-wrap {
        margin-top: 0.5rem;
    }
    .banner2-badge {
        top: -10px;
        right: 10px;
        width: 110px;
        height: 110px;
    }
    .banner2-badge span {
        font-size: 1.1rem;
        width: 145px;
    }
}

@media (max-width: 576px) {
    .banner2-title {
        font-size: 1.6rem;
    }
    .banner2-badge {
        width: 88px;
        height: 88px;
        top: -8px;
        right: 6px;
    }
    .banner2-badge span {
        font-size: 0.88rem;
        width: 115px;
    }
}

.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


.background-carousel{
    background: radial-gradient(circle, rgba(246,212,203,0.4598214285714286) 22%, rgba(246,212,203,0.3337710084033614) 83%);
    padding-bottom: 0.5rem;
}


/*** Single Page Start ***/
.pagination {
    display: inline-flex;
}

.pagination a {
    color: #E68A8F;
    padding: 6px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid #E68A8F;
    margin: 0 4px;
}

.pagination a.active {
    background-color: #E68A8F;
    color: var(--bs-white);
    border: 1px solid #a0404a;
}

.pagination a:hover:not(.active) {
    background-color: #E68A8F;
    color: var(--bs-white);
}


.nav.nav-tabs .nav-link.active {
    border-bottom: 1px solid var(--bs-warning) !important;
}

/***Custom pagination**/
/* Custom Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Semi-transparent wrapper */
.custom-pagination {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 10px 16px;
}

.pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.pagination-list li {
    display: inline-flex;
    align-items: center;
}

.pagination-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #E68A8F;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 2px solid rgba(200, 90, 99, 0.45);
    border-radius: 6px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.85);
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.pagination-list li a:hover {
    background-color: #E68A8F;
    border-color: #E68A8F;
    color: #fff;
}

.pagination-list li.active span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background-color: #E68A8F;
    border: 2px solid #a0404a;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

.pagination-list li.disabled span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    color: #aaa;
    border: 2px solid rgba(200, 90, 99, 0.20);
    border-radius: 6px;
    background-color: rgba(255, 248, 248, 0.70);
}

/* Στυλ για όλες τις καρτέλες */
.nav-tabs .nav-link {
    color: #4e2d06 !important; /* Χρησιμοποιώ το $primary χρώμα από το bootstrap.scss */
    transition: all 0.3s ease;
    background-color: transparent;
    border-bottom-color: transparent;
}

/* Στυλ για hover στις καρτέλες */
.nav-tabs .nav-link:hover {
    color: #6a5419 !important; /* Χρησιμοποιώ το $secondary χρώμα */
    border-color: rgba(223, 176, 49, 0.3);
}

/* Στυλ για την ενεργή καρτέλα */
.nav-tabs .nav-link.active {
    color: #dfb031e5 !important; /* Το χρώμα της ενεργής καρτέλας */
    font-weight: bold;
    border-bottom: 2px solid #dfb031e5;
    background-color: rgba(223, 176, 49, 0.5);
}

/* Διόρθωση για το border της ενεργής καρτέλας */

/* ---- Desktop-only top spacing for inner pages ---- */
@media (min-width: 1200px) {
    .desktop-top-spacing {
        margin-top: 9rem !important;
    }
}
.nav-tabs {
    border-bottom: 1px solid rgba(223, 176, 49, 0.2);
}

/*** Single Page End ***/

/* Product Card Responsive Improvements */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 4.2em; /* 3 lines × 1.4 line-height */
}

/* Responsive font sizes */
@media (max-width: 575.98px) {
    .fs-7 { font-size: 0.75rem !important; }
    .fs-md-6 { font-size: 0.875rem; }
}

@media (min-width: 576px) {
    .fs-md-6 { font-size: 0.875rem !important; }
}

/* Product card spacing improvements */
.product-card .p-2 { padding: 0.5rem !important; }
@media (min-width: 768px) {
    .product-card .p-md-3 { padding: 1rem !important; }
}
@media (min-width: 1200px) {
    .product-card .p-xl-4 { padding: 1.5rem !important; }
}

/*** Footer Start ***/
.footer-bg {
    background:radial-gradient(circle, rgba(68,88,90,1) 0%, rgba(20,20,20,0.6362920168067228) 70%), url(../img/footer-bg.webp);
    background-position:center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: var(--footer-color, rgba(255, 255, 255, .5));
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--footer-hover-bg, var(--bs-secondary)) !important;
}
.footer a.text-light, .footer p a.text-light { color: var(--footer-color, #f8f9fa) !important; }
.footer a.text-light:hover { color: var(--footer-hover-bg, #f8f9fa) !important; }

.footer .footer-item p.mb-4 {
    line-height: 35px;
}


/*** Footer End ***/



/*  Fixes overflow dealers page*/
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive iframe */
iframe {
    max-width: 100%;
    height: auto;
}

/* Responsive text and spacing */
@media (max-width: 768px) {
    .responsive-font2 {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }

    .container {
        padding: 10px;
    }

    .d-flex {
        flex-wrap: wrap;
    }

    .divider-custom {
        margin: 1rem 0;
    }

    .rounded {
        margin-bottom: 1rem;
    }
}


/* Infinite scroll indicators */
#loading-indicator {
    animation: fadeInMessage 0.3s ease-in-out;
}

#end-message {
    animation: fadeInMessage 0.5s ease-in-out;
    color: #6c757d;
    font-style: italic;
}

#scroll-trigger {
    pointer-events: none;
    user-select: none;
}

/* Brands Carousel Styling */
.brands-carousel .item {
    transition: transform 0.3s ease;
}

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

.brand-card-16-9 {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    aspect-ratio: 16/9 !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    padding: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

/* Force aspect ratio for all brand cards */
.brands-carousel .brand-card-16-9,
.brands-carousel .card.brand-card-16-9 {
    aspect-ratio: 16/9 !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
}

.brand-card-16-9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.brand-card-16-9:hover::before {
    opacity: 1;
}

.brand-card-16-9:hover {
    transform: scale(1.02);
}

.brand-img-16-9 {
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    /* Image optimization properties */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
    /* Hardware acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    /* Anti-aliasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Pixel perfect rendering */
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.brand-card-16-9:hover .brand-img-16-9 {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.05);
}

/* Legacy brands carousel classes for backward compatibility */
.brands-carousel .card:not(.brand-card-16-9) {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 150px;
    padding: 15px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Override legacy styles for 16:9 cards */
.brands-carousel .card.brand-card-16-9 {
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
}

.brands-carousel .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.brands-carousel .card:hover::before {
    opacity: 1;
}

.brands-carousel .card:hover {
    transform: scale(1.02);
}

.brands-carousel img {
    transition: all 0.3s ease;
    border-radius: 8px;
    max-width: 100% !important;
    max-height: 120px !important;
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
    position: relative;
    z-index: 1;
}

.brands-carousel .card:hover img {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.05);
}

/* Responsive adjustments for brand cards */
@media (max-width: 768px) {
    .brand-card-16-9 {
        aspect-ratio: 16/9;
        padding: 8px;
    }

    .brands-carousel .card {
        min-height: 120px;
        padding: 10px;
    }

    .brands-carousel img {
        max-height: 100px !important;
    }
}

@media (max-width: 576px) {
    .brand-card-16-9 {
        aspect-ratio: 16/9;
        padding: 6px;
    }

    .brands-carousel .card {
        min-height: 100px;
        padding: 8px;
    }

    .brands-carousel img {
        max-height: 80px !important;
    }
}

/* Global Image Optimization */
img {
    /* Modern image rendering optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: auto;
    /* Hardware acceleration for smooth animations */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Pixel perfect rendering */
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    /* Better quality scaling */
    -ms-interpolation-mode: bicubic;
}

/* High DPI display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-quality;
    }
}

/* Crisp images for logos and icons */
.logo img, .brand img, .icon img, .brand-img-16-9 {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
}

/* Smooth images for photos */
.photo img, .gallery img, .slide img {
    image-rendering: auto;
    image-rendering: smooth;
    image-rendering: high-quality;
}

/* Force 16:9 aspect ratio for brands carousel - highest specificity */
.brands-carousel .item .card.brand-card-16-9,
.brands-carousel .item .brand-card-16-9,
.owl-carousel.brands-carousel .item .card.brand-card-16-9 {
    aspect-ratio: 16/9 !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    padding: 15px !important;
}

/* Ensure brand images maintain aspect ratio */
.brand-card-16-9 .brand-img-16-9,
.brands-carousel .brand-card-16-9 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    max-height: none !important;
    max-width: 100% !important;
}

/* ── Brands / Προμηθευτές section ── */
.brands-section {
    border-top: 3px solid #f6d4cb;
    padding: 2rem 0 1.5rem;
}

.brands-section .brands-title {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-primary, #E68A8F);
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.brands-section .brands-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f6d4cb;
    border-radius: 2px;
}

.brands-section .brands-subtitle {
    color: var(--color-primary, #E68A8F);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    opacity: 0.85;
}

.brand-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(200, 90, 99, 0.15);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
}

.brand-card:hover {
    border-color: #f6d4cb;
    box-shadow: 0 4px 16px rgba(200, 90, 99, 0.18);
    transform: translateY(-3px);
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ── Shimmer utility based on #f6d4cb ── */
@keyframes shimmer-sweep {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-bg {
    background: linear-gradient(
        105deg,
        #d4a99e 0%,
        #f6d4cb 25%,
        #fdeee9 45%,
        #ffffffaa 50%,
        #fdeee9 55%,
        #f6d4cb 75%,
        #d4a99e 100%
    );
    background-size: 250% 100%;
    background-position: 200% center;
}

.shimmer-bg:hover {
    animation: shimmer-sweep 4.5s linear 1 forwards;
}


/* ── Wholesale / Retail inline section ── */
.wholesale-retail-section {
    background-color: color-mix(in srgb, var(--wr-inner-bg, #f6d4cb) 55%, transparent);
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
}

.wr-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 16px;
}

.wr-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1;
    padding: 22px 28px;
    background-color: var(--wr-inner-bg, #f6d4cb);
    border: 1.5px solid var(--wr-inner-color, #7e4414);
    border-radius: 10px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.wr-col:hover {
    background-color: var(--wr-inner-hover-bg, #ecc6be);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
}

.wr-col:hover .wr-title,
.wr-col:hover .wr-subtitle,
.wr-col:hover .wr-icon {
    color: var(--wr-inner-hover-color, var(--wr-inner-color, #3d1d04));
}

.wr-icon-wrap {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wr-icon {
    font-size: 24px;
    color: var(--wr-inner-color, #7e4414);
}

.wr-text {
    text-align: left;
}

.wr-title-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.wr-title-link:hover {
    opacity: 0.75;
    text-decoration: none;
    color: inherit;
}

.wr-title {
    color: var(--wr-inner-color, #3d1d04);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 4px;
    line-height: 1.25;
}

.wr-subtitle {
    color: var(--wr-inner-color, #7e4414);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Separator replaced by gap — hidden */
.wr-sep-line {
    display: none;
}

/* Tablet */
@media (max-width: 768px) {
    .wholesale-retail-section { padding: 12px 16px; }
    .wr-inner { gap: 12px; }
    .wr-col { padding: 18px 16px; gap: 12px; }
    .wr-icon-wrap { width: 46px; height: 46px; }
    .wr-icon { font-size: 19px; }
    .wr-title { font-size: 0.82rem; }
    .wr-subtitle { font-size: 0.68rem; }
}

/* Mobile — keep the two columns side by side */
@media (max-width: 480px) {
    .wholesale-retail-section { padding: 10px; }
    .wr-inner { flex-direction: row; gap: 8px; }
    .wr-col {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 10px;
        gap: 8px;
    }
    .wr-icon-wrap { width: 34px; height: 34px; }
    .wr-icon { font-size: 16px; }
    .wr-text { text-align: left; }
    .wr-title { font-size: 0.72rem; }
    .wr-subtitle { font-size: 0.6rem; }
}
