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


 html, body {
  overflow-x: hidden !important;
  font-family: 'Manrope', sans-serif !important; 
 }

 .container-xxl {
  max-width: 1900px !important;
}

.container-lg {
        max-width: 1750px !important;
}

                                                                                                                    
/* ==============================
  MY-HEADER-1  CSS 
==============================*/

.myheader {
    background-color: #B00149;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(176, 1, 73, 0.2);
    padding: 12px 0; 
}

/* Social Media Icons */
.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    margin-right: 15px;
}

.social-icon:last-child {
    margin-right: 0;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Newsletter Form */
.newsletter-bar {
    background: white;
    border-radius: 14px;
    height: 50px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.newsletter-bar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-bar input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    color: #333;
    background: transparent;
}

.newsletter-bar input::placeholder {
    color: rgba(30, 30, 30, 0.6);
}

.newsletter-bar button {
    padding: 10px 20px;
    background: #EDBC43;
    border: none;
    border-radius: 10px;
    color: #B00149;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-bar button:hover {
    background: #e0ab3c;
    transform: translateY(-1px);
}

/* Info Links */
.info-text {
    color: white;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    margin-right: 24px;
}

.info-text:last-child {
    margin-right: 0;
}

.info-text:hover {
    color: #EDBC43;
    text-decoration: none;
}

.info-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EDBC43;
    transition: width 0.3s ease;
}

.info-text:hover::after {
    width: 100%;
}

/* Desktop (xl and above) - Original layout */
@media (min-width: 1200px) {
    .desktop-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .mobile-tablet-layout {
        display: none;
    }
}

/* Mobile and Tablet layout (below xl) */
@media (max-width: 1199.98px) {
    .desktop-layout {
        display: none;
    }
    
    .mobile-tablet-layout {
        display: block;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        margin-right: 12px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .newsletter-bar {
        height: 50px;
        padding: 6px 14px;
        gap: 12px;
        border-radius: 12px;
        margin-bottom: 16px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-bar input[type="email"] {
        font-size: 13px;
        padding: 6px 8px;
    }

    .newsletter-bar button {
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 8px;
    }

    .info-text {
        font-size: 15px;
        margin-right: 20px;
        white-space: nowrap;
    }
}


@media (max-width: 480px) {
    .social-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .newsletter-bar {
        height: 44px;
        padding: 4px 8px;
        max-width: 370px;
        gap: 6px;
    }

    .newsletter-bar input[type="email"] {
        font-size: 12px;
        padding: 4px 6px;
    }

    .newsletter-bar button {
        font-size: 11px;
        padding: 5px 5px;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .info-text {
        font-size: 11.5px;
        padding: 2px 6px;
        margin: 0 3px;
        white-space: nowrap;
    }

    .info-section {
        gap: 6px;
        flex-wrap: nowrap;
    }
}


/* ==============================
  MY-HEADER-2  CSS 
==============================*/

.my-header-2 {
    background-color: #ffffff;
    padding: 20px 95px 24px;
    
}

/* Desktop Logo */
.logo {
    height: 67px; 
    width: 283px;
}

/* Desktop Search Form */
.search-form {
    display: flex;
    align-items: center;
    background: #F3F2F2;
    border-radius: 12px;
    padding: 6px 10px;
    width: 100%;
    max-width: 440px;
    position: relative;
}

.search-input:focus {
  outline: none;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
}

.search-input::placeholder {
    color: rgba(30, 30, 30, 0.5);
}

.search-button {
    background: #B00149;
    border: none;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #a00040;
}

.search-button svg {
    width: 20px;
    height: 20px;
}

/* FIXED: Separated mobile search and header icons */
.mobile-search-btn {
    background: #a00040;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: background-color 0.3s ease;
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-search-btn:hover {
    background-color: rgba(176, 1, 73, 0.1);
}

.search-icon-mobile {
    width: 24px;
    height: 24px;
    display: block;
    
}

/* FIXED: Header icons container with better mobile handling */
.header-icons-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* FIXED: Separate mobile actions container */
.mobile-actions-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-icons {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.header-icons:hover {
    opacity: 0.8;
}

/* FIXED: Mobile menu toggle with consistent sizing */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle .header-icons {
    width: 32px;
    height: 32px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* FIXED: Responsive adjustments */
@media (min-width: 1200px) {
    .my-header-2 {
        padding: 20px 0px 24px;
        width: 100% !important;
        height: 100% !important;
        padding-top: 5px !important;
        padding-bottom: 12px !important;
        position: relative !important;
        background: white !important;
        box-shadow: 0 5px 4px rgba(0, 0, 0, 0.04) !important;
    }
    
    .header-icons {
        width: 42px;
        height: 42px;
    }
    
    .header-icons-container {
        gap: 16px;
    }
    
    .mobile-menu-toggle .header-icons {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 1199px) {
    .my-header-2 {
        padding: 15px 5px 18px;
        width: 100% !important;
        height: 100% !important;
        padding-bottom: 12px !important;
        position: relative !important;
        background: white !important;
        box-shadow: 0 5px 4px rgba(0, 0, 0, 0.04) !important;   
    }

    .logo {
        height: 55px;
        width: 230px;
    }
    
    .header-icons {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-toggle .header-icons {
        width: 30px;
        height: 30px;
    }
    
    .search-icon-mobile {
        width: 22px;
        height: 22px;
    }
    
    .header-icons-container {
        gap: 10px;
    }
    
    .mobile-actions-container {
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .my-header-2 {
        padding: 15px 4px 18px;
    }
    
    .logo {
        height: 50px;
        width: 210px;
    }
    
    .header-icons {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle .header-icons {
        width: 28px;
        height: 28px;
    }
    
    .search-icon-mobile {
        width: 20px;
        height: 20px;
    }
    
    .header-icons-container {
        gap: 8px;
    }
    
    .mobile-actions-container {
        gap: 6px;
    }
}

@media (max-width: 767px) {
    .my-header-2 {
        padding: 12px 20px 15px;
    }
    
    .logo {
        height: 40px;
        width: 160px;
    }
    
    .header-icons {
        width: 24px;
        height: 24px;
    }
    
    .mobile-menu-toggle .header-icons {
        width: 24px;
        height: 24px;
    }
    
    .search-icon-mobile {
        width: 18px;
        height: 18px;
    }
    
    .header-icons-container {
        gap: 6px;
    }
    
    .mobile-actions-container {
        gap: 4px;
    }
    
    .mobile-search-btn {
        margin-right: 8px;
        padding: 4px;
    }
}

@media (max-width: 575px) {
    .my-header-2 {
        padding: 10px 2px 12px;
        width: 100% !important;
        height: 100% !important;
        padding-top: 5px !important;
        padding-bottom: 12px !important;
        position: relative !important;
        background: white !important;
        box-shadow: 0 5px 4px rgba(0, 0, 0, 0.04) !important;

    }
    
    .logo {
        height: 35px;
        width: 140px;
    }
    
    .header-icons {
        width: 22px;
        height: 22px;
    }
    
    .mobile-menu-toggle .header-icons {
        width: 22px;
        height: 22px;
    }
    
    .search-icon-mobile {
        width: 16px;
        height: 16px;
    }
    
    .header-icons-container {
        gap: 4px;
    }
    
    .mobile-actions-container {
        gap: 2px;
    }
    
    .mobile-search-btn {
        margin-right: 6px;
        padding: 6px;
    }
}


/* ==============================
 SEARCH MODAL - BEAUTIFUL & CLEAN
==============================*/

/* Modal Backdrop - Beautiful Background */
.modal-backdrop {
    background: linear-gradient(135deg, rgba(176, 1, 73, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(8px);
}

.modal-body {
    background-color: #ffffff;
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.search-modal-content {
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.search-modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 24px 20px;
    justify-content: flex-end;
}

.search-modal-close {
    font-size: 1.2rem;
    color: #666;
    opacity: 1;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.search-modal-close:hover {
    background: rgba(176, 1, 73, 0.1);
    color: #B00149;
    transform: scale(1.05);
}

.search-modal-body {
    padding: 0 30px 30px;
    min-height: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.search-modal-form-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: relative;
}

.search-form-modal {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 16px 20px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.search-form-modal:focus-within {
    border-color: #B00149;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(176, 1, 73, 0.1);
    transform: translateY(-2px);
}

.search-input-modal {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.search-input-modal::placeholder {
    color: #999;
}

.search-input-modal:focus {
    outline: none;
}

.search-button-modal {
    background: #B00149;
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.search-button-modal:hover {
    background: #8a0136;
    transform: scale(1.05);
}

.search-button-modal .search-icon {
    width: 20px;
    height: 20px;
}



 .suggestion-price {
  font-size: 20px !important; /* ÎœÎ¹ÎºÏÏŒÏ„ÎµÏÎ¿ font Î±Ï€ÏŒ Ï„Î¿ ÎºÎ±Î½Î¿Î½Î¹ÎºÏŒ */
  margin-left: auto; /* Î£Ï€ÏÏŽÏ‡Î½ÎµÎ¹ Ï„Î·Î½ Ï„Î¹Î¼Î® ÏƒÏ„Î± Î´ÎµÎ¾Î¹Î¬ */
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Î”Î¹Î±Î½Î­Î¼ÎµÎ¹ Ï„Î¿ Ï‡ÏŽÏÎ¿ Î¼ÎµÏ„Î±Î¾Ï Ï€ÎµÏÎ¹ÎµÏ‡Î¿Î¼Î­Î½Î¿Ï… ÎºÎ±Î¹ Ï„Î¹Î¼Î®Ï‚ */
}

/* ÎšÎ¿Ï…Î¼Ï€Î¯ "ÎŒÎ»Î± Ï„Î± Ï€ÏÎ¿ÏŠÏŒÎ½Ï„Î±" */
.suggestion-view-all {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-top: 8px;
  border-top: 1px solid #e9ecef;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.2s ease;
  animation: fadeInUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.suggestion-view-all:hover {
  background: #e9ecef;
}

.view-all-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.view-all-text {
  font-weight: 500;
  color: #2d3236;
  font-size: 15px;
}

.view-all-arrow {
  color: #B00149;
  font-size: 25px;
  transition: transform 0.2s ease;
}

.suggestion-view-all:hover .view-all-arrow {
  transform: translateX(3px);
}

/* Animation Î³Î¹Î± Ï„Î¿ ÎºÎ¿Ï…Î¼Ï€Î¯ */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styling Î³Î¹Î± Ï„Î·Î½ Ï„Î¹Î¼Î® (Î±Ï€ÏŒ Ï€ÏÎ¹Î½) */
.suggestion-price {
  font-size: 0.85em !important;
  margin-left: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}





/* ==============================
 DESKTOP SEARCH SUGGESTIONS
==============================*/

.desktop-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    margin-top: 12px;
    max-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.34, 1.26, 0.64, 1);
}

.desktop-search-suggestions.show {
    opacity: 1;
    transform: translateY(0);
}

.desktop-search-suggestions::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: 1001;
}

/* ==============================
 MOBILE SEARCH SUGGESTIONS
==============================*/

.search-suggestions-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 20;
    margin-top: 20px;
    max-height: 350px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.search-suggestions-container.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
 ENHANCED SUGGESTIONS STYLING
==============================*/

/* Loading State */
.suggestions-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    color: #666;
    font-size: 14px;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #B00149;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Suggestion Items */
.suggestions-list {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(176, 1, 73, 0.3) transparent;
}

.suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.suggestions-list::-webkit-scrollbar-track {
    background: transparent;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background: rgba(176, 1, 73, 0.2);
    border-radius: 3px;
}

.suggestions-list::-webkit-scrollbar-thumb:hover {
    background: rgba(176, 1, 73, 0.4);
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #B00149;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(176, 1, 73, 0.04) 0%, rgba(176, 1, 73, 0.08) 100%);
    transform: translateX(4px);
}

.suggestion-item:hover::before {
    transform: scaleY(1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-image {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.suggestion-item:hover .suggestion-image {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(176, 1, 73, 0.15);
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-title {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.suggestion-item:hover .suggestion-title {
    color: #B00149;
}

.no-suggestions {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 15px;
    font-style: italic;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ==============================
 MOBILE RESPONSIVE
==============================*/

/* Mobile - Start from top */
@media (max-width: 575.98px) {
    .search-modal-content {
        border-radius: 0;
        height: 100vh;
        margin: 0;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    
    .search-modal-header {
        padding: 20px 20px 16px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .search-modal-body {
        padding: 20px;
        min-height: calc(100vh - 100px);
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .search-form-modal {
        padding: 18px 20px;
        margin-bottom: 0;
    }
    
    .search-input-modal {
        font-size: 18px;
    }
    
    .search-suggestions-container {
        position: static;
        margin-top: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 200px);
        flex: 1;
        border-radius: 16px;
    }
    
    .suggestion-item {
        padding: 16px 18px;
    }
    
    .suggestion-image {
        width: 48px;
        height: 48px;
    }
    
    .suggestion-title {
        font-size: 16px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.5;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
    .search-modal-content {
        max-width: 520px;
        margin: 1.75rem auto;
    }
    
    .search-modal-body {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .search-modal-content {
        max-width: 500px;
    }
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Enhanced animations for suggestions appearance */
.suggestion-item {
    animation: slideInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.suggestion-item:nth-child(1) { animation-delay: 0.05s; }
.suggestion-item:nth-child(2) { animation-delay: 0.1s; }
.suggestion-item:nth-child(3) { animation-delay: 0.15s; }
.suggestion-item:nth-child(4) { animation-delay: 0.2s; }
.suggestion-item:nth-child(5) { animation-delay: 0.25s; }
.suggestion-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
  MY-HEADER-3  CSS 
==============================*/

@media (max-width: 991px) {
    .header-3 {
        display: none !important;
    }
}

.header-3 {
    width: 100% !important;
    height: 100% !important;
    padding-top: 5px !important;
    padding-bottom: 12px !important;
    position: relative !important;
    background: white !important;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.04) !important;
}


.main-menu,
.main-menu ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.main-menu a:hover,
.main-menu a:focus,
.main-menu a:active,
.main-menu a:visited {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.menu-text {
    color: #1E1E1E;
    font-size: 17px;
    font-weight: 500;
    word-wrap: break-word;
    text-decoration: none !important;
    border: none !important;
    outline: none;
}

.menu-text:hover,
.menu-text:focus,
.menu-text:active,
.menu-text:visited {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    color: #1E1E1E;
}

.main-menu > li {
    margin-right: 30px;
    position: relative;
}

.vertical-line {
    width: 1px;
    height: 20px;
    background-color: #1E1E1E;
    margin-right: 0;
}

/* SCROLLABLE MENU CONTAINER */
.menu-scroll-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    white-space: nowrap;
    height: 40px;
}

.scrollable-menu {
    display: flex !important;
    align-items: center;
    transition: transform 0.3s ease;
    white-space: nowrap;
    flex-wrap: nowrap;
    height: 100%;
}

.menu-item-wrapper {
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.scroll-arrow {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: none;
    z-index: 10;
    flex-shrink: 0;
    border-radius: 50%;
}

.scroll-arrow:hover {
    background: transparent;
}

.scroll-arrow.left {
    margin-right: 15px;
}

.scroll-arrow.right {
    margin-left: 15px;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    fill: #1E1E1E;
    transition: none;
}

.scroll-arrow:hover .arrow-icon {
    fill: #1E1E1E;
    transform: none;
}

.scroll-arrow.hidden {
    display: none !important;
}

/* Mobile Menu Overlay (unchanged) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.menu-level {
    display: none;
    padding: 20px;
}

.menu-level.active {
    display: block;
}

.menu-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.back-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    color: #B00149;
    font-weight: 500;
    cursor: pointer;
    margin-right: 15px;
}

.back-arrow {
    font-size: 18px;
    margin-right: 5px;
}

.menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
}

.mobile-primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-primary-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-primary-menu li:last-child {
    border-bottom: none;
}

.mobile-primary-menu a,
.menu-item-with-submenu {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-primary-menu a:hover,
.menu-item-with-submenu:hover {
    color: #fff9fc;
}

.menu-item-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.menu-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.menu-arrow {
    color: #999;
    font-size: 16px;
    margin-left: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #B00149;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(176, 1, 73, 0.1);
}


 /* ==============================
  DROPDOWN-MENU
==============================*/                                                                                                          
.main-menu {
  list-style: none;
  padding-left: 0;
  gap: 20px;
  position: relative;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  text-decoration: none;
  color: #000;
  padding: 8px 12px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}


.main-menu li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  color: #000;
  margin-left: 6px;
  vertical-align: middle;
}

.main-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 5px; 
  background: #fff;
  min-width: 240px;
  padding: 14px 0;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


.main-menu li .sub-menu li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.main-menu li .sub-menu li:last-child {
  border-bottom: none;
}

.main-menu li .sub-menu li a {
  display: block;
  padding: 14px 24px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}



.main-menu li .sub-menu li a:hover {
   background: #fafafa;

}


.main-menu li .sub-menu li.menu-item-has-children > a::after {
  content: "▶";
  font-size: 10px;
  color: #050303;
  margin-left: 6px;
  vertical-align: middle;
}

.main-menu li .sub-menu li .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  padding-left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 101;
}


.main-menu li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}


.main-menu li .sub-menu li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: transparent;
}



/* ==============================
  HOMEPAGE CSS 
==============================*/

/* Home Banner */
.home-bg-container {
  width: 100vw;
  height: 230px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  top: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.home-bg-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(1.4) saturate(0.2);
  z-index: 0;
  display: flex;
  align-items: center;
}

.banner-title, .my-banner-title {
  position: relative;
  z-index: 1;
  color: #a00040;
  font-size: 35px;
  font-weight: 800;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 768px) {
    .home-bg-container {
        height: 140px;
    }

}


/* Product Category Slider */
.product-category-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.category-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-wrapper::-webkit-scrollbar { display: none; }

.category-card {
  flex: 0 0 0;
  width: 302px;
  height: 403px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  scroll-snap-align: start;
  text-decoration: none;
    border-radius: 15px;
  
}

.category-card::before { display: none; }

.category-card:hover { transform: translateY(-5px); }

.category-title {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff !important;
  font-size: 30px;
  font-weight: 600;
  word-wrap: break-word;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  background-color: #ffffffad;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 1;
  border: 1px solid #807E7E;
}

.slider-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.slider-arrow img {
  width: 24px;
  height: 24px;
  display: block;
}

.slider-arrow-left {
  left: 2px;
  transform: translateY(-50%) rotate(180deg);
}

.slider-arrow-left:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.slider-arrow-right { right: 2px; }

/* ==============================
  RESPONSIVE - Î£Î¥ÎœÎ Î™Î•Î£ÎœÎ•ÎÎŸ
==============================*/

/* Very Large Desktop */
@media (min-width: 1800px) {
  .product-category-slider { padding: 0 210px; }
  .slider-arrow-left { left: 1px; }
  .slider-arrow-right { right: 1px; }
}

/* Large Desktop - 4 cards */
@media (min-width: 1200px) {
  .category-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    width: calc(25% - 15px);
  }
}

/* Medium screens - 2 cards */
@media (max-width: 1199px) {
  .category-card {
    flex: 0 0 calc(31% - 5px);
    min-width: calc(31% - 5px);
    width: calc(31% - 5px);
    height: 400px;
  }
  .product-category-slider { padding: 0 50px; }
}

/* Tablet/Mobile */
@media (max-width: 768px) {
  .category-card {
    flex: 0 0 calc(31% - 5px);
    min-width: calc(31% - 5px);
    width: calc(31% - 5px);
    height: 400px;
    padding: 10px;
  }
  .product-category-slider { padding: 0 50px; }
  .category-title { font-size: 20px; }
}

/* Mobile */
@media (max-width: 767px) {
  .banner-title {
    font-size: 30px;
    font-weight: 700;
  }
  .slider-arrow img {
    width: 10px;
    height: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .slider-arrow {
    padding: 8px;
  }
  .slider-arrow img {
    width: 12px;
    height: 12px;
  }
  .product-category-slider { padding: 0 40px; }
  .category-card { height: 185px; }
  .category-title { font-size: 18px; }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .product-category-slider { padding: 0 35px; }
}






  

 /* ==============================
  ANAZHTHSEIS
==============================*/                                                                                  

.product-category-slider.popular-searches {
  position: relative;
  overflow: hidden;
  padding: 0px;
  margin: 10px 0;
  max-width: 100%;
}

.product-category-slider.popular-searches .container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-category-slider.popular-searches .popular-title {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.product-category-slider.popular-searches .category-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  width: 100%;
}

.product-category-slider.popular-searches .category-wrapper::-webkit-scrollbar {
  display: none;
}

.product-category-slider.popular-searches .popular-card {
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  font-weight: bold;
  padding: 16px 12px;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-category-slider.popular-searches .popular-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  pointer-events: none;
}

.product-category-slider.popular-searches .popular-card:hover {
  transform: translateY(-3px);
 
}

.product-category-slider.popular-searches .category-title {
  color: #ffffff;
  font-weight: 600;
  text-align:left;
  position: relative;
  z-index: 2;
  
  line-height: 1.3;
  width: 100%;
}


/* ÎžÎ•Î§Î©Î¡Î™Î£Î¤Î‘ ARROWS Î“Î™Î‘ Î”Î—ÎœÎŸÎ¦Î™Î›Î•Î™Î£ Î‘ÎÎ‘Î–Î—Î¤Î—Î£Î•Î™Î£*/
.popular-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  background-color: rgba(255,255,255,0.9);
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.8;
  border: 1px solid #e0e0e0;
  backdrop-filter: blur(5px);
}

.popular-slider-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background-color: rgba(255,255,255,1);
}

.popular-slider-arrow img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0.6);
}

.popular-slider-arrow-left {
  left: 2px;
  transform: translateY(-50%) rotate(180deg);
}

.popular-slider-arrow-left:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.popular-slider-arrow-right {
  right: 2px;
}

/* Desktop - 5 ÎºÎ¬ÏÏ„ÎµÏ‚ Î±Î½Î¬ ÏƒÎµÎ¹ÏÎ¬ */
@media (min-width: 1200px) {
  .product-category-slider.popular-searches {
    padding: 0 2px;
    max-width: 1400px;
    margin: 40px auto;
  }
  
  .product-category-slider.popular-searches .popular-card {
    width: calc((100% - (4 * 15px)) / 5);
    min-width: 180px;
    max-width: 100%;
    height: 260px;
    flex: 0 0 calc((100% - (4 * 15px)) / 5);
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 15px;
  }
  
  .popular-slider-arrow-left {
    left: 2px;
  }
  
  .popular-slider-arrow-right {
    right: 2px;
  }
}

/* Large Desktop - 5 ÎºÎ¬ÏÏ„ÎµÏ‚ Î¼Îµ Ï€ÎµÏÎ¹ÏƒÏƒÏŒÏ„ÎµÏÎ¿ Ï‡ÏŽÏÎ¿ */
@media (min-width: 1600px) {
  .product-category-slider.popular-searches {
    padding: 0 2px;
    max-width: 1900px;
  }
  
  .product-category-slider.popular-searches .popular-card {
    width: calc((100% - (4 * 15px)) / 5);
    min-width: 286px;
    max-width: 100%;
    height: 300px;
    flex: 0 0 calc((100% - (4 * 15px)) / 5);
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 19px;
  }
  
  .popular-slider-arrow-left {
    left: 2px;
  }
  
  .popular-slider-arrow-right {
    right: 2px;
  }
}

/* Medium Desktop - 4 ÎºÎ¬ÏÏ„ÎµÏ‚ */
@media (min-width: 992px) and (max-width: 1199px) {
  .product-category-slider.popular-searches {
    padding: 0 6px;
  }
  
  .product-category-slider.popular-searches .popular-card {
    width: calc((100% - (3 * 15px)) / 4);
    min-width: 180px;
    height: 240px;
    flex: 0 0 calc((100% - (3 * 15px)) / 4);
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 14px;
  }
}

/* Tablet - 3 ÎºÎ¬ÏÏ„ÎµÏ‚ */
@media (min-width: 768px) and (max-width: 991px) {
  .product-category-slider.popular-searches {
    padding: 0 10px;
  }
  
  .product-category-slider.popular-searches .popular-card {
    width: calc((100% - (2 * 15px)) / 3);
    min-width: 160px;
    height: 220px;
    flex: 0 0 calc((100% - (2 * 15px)) / 3);
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 13px;
  }
}

/* Mobile - 2 ÎºÎ¬ÏÏ„ÎµÏ‚ Î³Î¹Î± ÏŒÎ»Î± Ï„Î± ÎºÎ¹Î½Î·Ï„Î¬ */
@media (max-width: 767px) {

  .product-category-slider.popular-searches {
    padding: 0 10px;
  }
  
  .product-category-slider.popular-searches .popular-card {
    width: calc((100% - 40px) / 3);
    /* min-width: 150px; */
    height: 200px;
    flex: 0 0 calc((100% - 40px) / 3);
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 13px;
  }
  
  .product-category-slider.popular-searches .popular-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .popular-slider-arrow {
    padding: 10px;
  }
  
  .popular-slider-arrow img {
    width: 10px;
    height: 10px;
  }
  
  .popular-slider-arrow-left {
    left: 2px;
  }
  
  .popular-slider-arrow-right {
    right: 2px;
  }
}

/* Responsive Î³Î¹Î± Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»ÎµÏ‚ Î¿Î¸ÏŒÎ½ÎµÏ‚ */
@media (min-width: 1920px) {
  .product-category-slider.popular-searches {
    padding: 0 2px;
    max-width: 1900px;
  }
  
  .product-category-slider.popular-searches .popular-card {
    max-width: 302px;
    height: 320px;
  }
  
  .product-category-slider.popular-searches .category-title {
    font-size: 17px;
  }
  
  .popular-slider-arrow-left {
    left: 1px;
  }
  
  .popular-slider-arrow-right {
    right: 1px;
  }
}

.popular-title {
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: auto;
  text-align: left;
  margin-top: 100px;
  
}



@media (max-width: 767px) {
  .popular-title {
    font-size: 20px !important;
    margin-top: 15px;
  }
}

.popular-slider {
  margin-top: 40px;
}






/* ==============================
  MOBILE & TABLET MENU - 
==============================*/

/* Header Icons Responsive */
@media (max-width: 991px) {
  .header-icons-container { gap: 8px !important; }
  .header-icons { width: 33px !important; height: 33px !important; }
  .mobile-search-btn { margin-right: 8px !important; }
  .search-icon-mobile { width: 20px !important; height: 20px !important; }
}

@media (max-width: 576px) {
  .header-icons-container { gap: 6px !important; }
  .header-icons { width: 22px !important; height: 22px !important; }
  .mobile-search-btn { margin-right: 6px !important; }
  .search-icon-mobile { width: 17px !important; height: 17px !important; }
}

/* Hamburger Menu */
.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.mobile-menu-toggle:hover .hamburger span { background-color: #555; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: #333;
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #333;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 0, 64, 0.3) transparent;
}

.mobile-menu-overlay.active { transform: translateX(0); }

.mobile-menu-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #a00040;
  z-index: -1;
}

/* Custom Scrollbar */
.mobile-menu-overlay::-webkit-scrollbar { width: 6px; }
.mobile-menu-overlay::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); }
.mobile-menu-overlay::-webkit-scrollbar-thumb { background: rgba(160, 0, 64, 0.3); border-radius: 3px; }
.mobile-menu-overlay::-webkit-scrollbar-thumb:hover { background: rgba(160, 0, 64, 0.5); }

/* Fixed Header */
.mobile-menu-header-fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #93053e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.404);
  z-index: 100;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
}

.menu-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 40px;
}

.back-button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  display: none; /* Hidden by default */
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  height: 40px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.back-button:active {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(0.98);
}

.back-button * {
  pointer-events: none;
  cursor: inherit;
}

.back-arrow,
.back-text {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.back-arrow {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.back-text {
  color: #ffffff;
  font-weight: 500;
}

.menu-title {
  color: #f1efef;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 120px);
  line-height: 1.2;
}

.mobile-menu-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.mobile-menu-close:active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(0.98);
}

/* Menu Content */
.mobile-menu-content {
  width: 100%;
  max-width: 400px;
  position: relative;
  flex: 1;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Scrollable Content Area */
.mobile-menu-scrollable {
  flex: 1;
  overflow-x: hidden !important;
  overflow-y: auto;
  padding: 0 20px 20px 20px;
  position: relative;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(135deg, 
        rgba(30, 30, 60, 0.95) 0%, 
        rgba(50, 50, 90, 0.9) 50%,
        rgba(20, 20, 50, 0.98) 100%
    );
    
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), 
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.12) 2.5px, transparent 2.5px);
    
    background-size: 
        60px 60px,
        80px 80px,
        40px 40px,
        70px 70px;
  
}



/* Menu Levels */
.menu-level {
  display: none;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden !important;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-level.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Menu Items */
.mobile-primary-menu {
  padding: 20px 0;
  width: 100%;
  overflow-x: hidden !important;
}

.mobile-primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-primary-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}

.mobile-primary-menu li:last-child {
  border-bottom: none;
  margin-bottom: 20px;
}

.mobile-primary-menu li:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-primary-menu li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
}

.mobile-primary-menu li:hover::before { width: 4px; }

/* Î’Î•Î›Î¤Î™Î©ÎœÎ•ÎÎ— Î”ÎŸÎœÎ—: Î§Ï‰ÏÎ¹ÏƒÎ¼Î­Î½Î± ÎºÎ»Î¹Îº */
.menu-item-with-submenu {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 60px;
}

.menu-item-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  flex: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  min-height: 60px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.menu-item-link:hover {
color: #000000;
  text-decoration: none;
}

.menu-item-link:active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0.98);
}

/* submenu -link */
.mobile-primary-menu li:not(:has(.menu-item-with-submenu)) .menu-item-link {
  width: 100%;
  justify-content: space-between;
}

.menu-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  position: relative;
  flex: 1;
  min-width: 0;
}

.menu-item-content span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-item-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.2s ease;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

/* Î’Î•Î›Î¤Î™Î©ÎœÎ•ÎÎŸ ARROW BUTTON */
.menu-arrow-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.menu-arrow-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-arrow-button:active {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0.95);
}

.menu-arrow {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.menu-arrow-button:hover .menu-arrow {
  transform: translateX(3px);
  color: #f0f0f0;
}

/* Categories link  */
.categories-link {
  pointer-events: none; 
  cursor: default;
}

/* Body Lock */
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus States */
.menu-item-link:focus, 
.menu-arrow-button:focus, 
.back-button:focus, 
.mobile-menu-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Small Mobile */
@media (max-width: 576px) {
  .mobile-menu-toggle {
    width: 26px;
    height: 26px;
    padding: 3px;
  }
  
  .mobile-menu-header-fixed {
    padding: 12px 15px;
    min-height: 55px;
  }
  
  .menu-header-content {
    height: 36px;
  }
  
  .mobile-menu-scrollable {
    padding: 0 15px 15px 15px;
  }
  
  .mobile-primary-menu {
    padding: 15px 0;
  }
  
  .menu-item-link {
    font-size: 16px;
    padding: 16px 18px;
    min-height: 56px;
  }
  
  .menu-arrow-button {
    padding: 16px 18px;
    min-width: 56px;
    min-height: 56px;
  }
  
  .menu-item-content { gap: 12px; }
  
  .menu-item-icon {
    width: 22px;
    height: 22px;
  }
  
  .menu-title {
    font-size: 18px;
    max-width: calc(100% - 100px);
  }
  
  .back-button {
    font-size: 15px;
    padding: 6px 10px;
    height: 36px;
  }
  
  .mobile-menu-close {
    width: 36px;
    height: 36px;
  }
  
  .mobile-primary-menu li:last-child { margin-bottom: 15px; }
}

/* Smooth Scrolling */
* { scroll-behavior: smooth; }

/* iOS Momentum Scrolling */
@supports (-webkit-overflow-scrolling: touch) {
  .mobile-menu-overlay, .menu-level, .mobile-primary-menu, .mobile-menu-scrollable {
    -webkit-overflow-scrolling: touch;
  }
}

/* Performance Optimizations */
.mobile-menu-overlay, .menu-level, .mobile-primary-menu li {
  will-change: transform, opacity;
}

.mobile-menu-overlay.active .mobile-primary-menu li {
  will-change: auto;
}



/* ==============================
  DEALS + HOT
==============================*/


/* Archive Product Title Links */
.archive-product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.archive-product-title-link:hover {
    text-decoration: none;
    color: inherit;
}

.archive-product-title-link:focus {
    outline: none;
}

/* Deals Slider Title Links */
.deals-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.deals-title-link:hover {
    text-decoration: none;
    color: inherit;
}

.deals-title-link:focus {
    outline: none;
}

/* Mobile optimization Î³Î¹Î± touch targets */
@media (max-width: 767px) {
    .archive-product-title-link,
    .deals-title-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 2px 0;
    }
}



/* Base Styles */
.popular-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1E1E1E;
}

.deals-category-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.deals-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.deals-wrapper::-webkit-scrollbar { display: none; }

/* Card Container */
.deals-card-container {
  display: flex;
  flex-direction: column;
  flex: 0 0 0;
  width: 302px;
  scroll-snap-align: start;
}

.deals-card {
  width: 100%;
  height: 363px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}

.deals-card::before { display: none; }

.deals-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

/* Απενεργοποιούμε το transform στα κινητά */
@media (max-width: 767px) {
  .deals-card:hover {
    transform: none;
  }
}

/* Badges */
.deals-badges-container {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deals-badge, .deals-new-badge-card {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 2px 6px;
  height: 22px;
}

.deals-badge.top {
  background: #FFF;
  color: #1E1E1E;
}

.deals-badge.premium {
  background: #B00149;
  color: #FFF;
}

.deals-badge.new {
  background: #28A745;
  color: #FFF;
}

.deals-new-badge-card {
  color: #B00149;
  background: #EDBC43;
}

/* Content */
.deals-content {
  padding: 15px 0 0 0;
  background: transparent;
}

.deals-title {
  color: #1E1E1E;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

.deals-city {
  color: #9C9A9A;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.deals-rating-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.deals-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deals-rating-star {
  color: #FFD700;
  font-size: 16px;
}

.deals-rating-text {
  color: #9C9A9A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.deals-extra-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 8px;
  flex-direction: row !important;
  flex-wrap: nowrap;
}

.deals-people, .deals-nights, .deals-hours {
  color: #9C9A9A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Price Container */
.deals-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.deals-price {
  color: #B00149;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.deals-original-price {
  color: rgba(30, 30, 30, 0.50);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: line-through;
}

.deals-discount-badge {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  width: 56px;
  height: 26px;
  padding: 2px 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  background: #B00149;
  flex-shrink: 0;
}

/* Arrows */
.deals-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  background-color: #ffffffad;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 1;
  border: 1px solid #807E7E;
}

.deals-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.deals-arrow img {
  width: 24px;
  height: 24px;
  display: block;
}

.deals-arrow-left {
  left: 2px;
  transform: translateY(-50%) rotate(180deg);
}

.deals-arrow-left:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.deals-arrow-right { right: 2px; }

/* Custom Elements */
.my-deals-title {
  margin-bottom: 30px;
  margin-top: -17px;
}

.my-summer-title {
  margin-bottom: 30px;
}

.custom-dashed-line {
  height: 3px;
  border-top: 2px dashed #BBBBBB;
  margin: 30px auto;
  margin-top: 70px;
}

/* ==============================
  RESPONSIVE - Î£Î¥ÎœÎ Î™Î•Î£ÎœÎ•ÎÎŸ
==============================*/

/* Very Large Desktop */
@media (min-width: 1800px) {
  .deals-category-slider { padding: 0 210px; }
  .deals-arrow-left { left: 1px; }
  .deals-arrow-right { right: 1px; }
}

/* Large Desktop - 4 cards */
@media (min-width: 1200px) {
  .deals-card-container {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    width: calc(25% - 15px);
  }
}

/* Medium screens - 2 cards */
@media (max-width: 1199px) {
  .deals-card-container {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    width: calc(50% - 10px);
  }
  .deals-card { height: 225px; }
  .deals-category-slider { padding: 0 50px; }
}

/* Tablet/Mobile */
@media (max-width: 768px) {
  .deals-card-container {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    width: calc(50% - 10px);
  }
  .deals-card { height: 225px; }
  .deals-category-slider { padding: 0 50px; }
  .deals-title { font-size: 16px; }
  .deals-price { font-size: 24px; }
  .deals-original-price { font-size: 16px; }
  .deals-discount-badge {
    font-size: 13px;
    width: 48px;
    height: 22px;
  }
  .deals-content { padding: 15px 0 0 0; }
  .deals-rating-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .deals-extra-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .deals-badge, .deals-new-badge-card {
    font-size: 11px;
    padding: 1px 4px;
    height: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .deals-arrow { padding: 8px; }
  .deals-arrow img {
    width: 14px;
    height: 14px;
  }
  .deals-category-slider { padding: 0 40px; }
  .deals-card { height: 185px; }
  .deals-title { font-size: 14px; }
  .deals-price { font-size: 17px; }
  .deals-original-price { font-size: 14px; }
  .deals-discount-badge {
    font-size: 11px;
    width: 33px;
    height: 20px;
  }
  .deals-extra-info { gap: 10px; }
  .deals-people, .deals-nights, .deals-hours {
    font-size: 12px;
    gap: 4px;
  }
  .deals-people img, .deals-nights img, .deals-hours img {
    width: 20px;
    height: 18px;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .deals-category-slider { padding: 0 35px; }
  .deals-card { height: 185px; }
}





/* ==============================
   BANNERS 
==============================*/

/* BANNER ONE */
.acf-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 70px;
  background: rgba(240, 240, 240, 0.5);
  overflow: hidden;
  margin-bottom: 40px;
}

.acf-banner-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acf-banner-title, .acf-banner-title-2 {
  color: #B00149;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.35px;
  margin: 0;
}

.acf-banner-subtitle {
  color: #000;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.24px;
  margin: 0;
}

.acf-banner-subtitle-2 {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.acf-banner-button, .acf-banner-button.small {
  display: flex;
  width: 200px;
  height: 51px;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 15px;
  background: #B00149;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.acf-banner-button:hover, .acf-banner-button.small:hover {
  background: #8c0038;
}

.acf-banner-image {
  height: 424px;
  border-radius: 0px 70px 70px 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* BANNER TWO */
.acf-banner-two {
  min-height: 280px;
  border-radius: 70px;
  background-image: url('<?php echo get_stylesheet_directory_uri(); ?>/assets/images/banner-two.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
}

.acf-banner-two-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.acf-banner-two-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  max-width: 60%;
}

.acf-banner-two-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.acf-banner-two-image {
  width: 180px;
  height: 160px;
  border-radius: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.acf-banner-two-image:hover {
  transform: scale(1.05);
}

/* ==============================
  RESPONSIVE BANNER ONE AND TWO
==============================*/

/* BANNER ONE Mobile */
@media screen and (max-width: 992px) {
  .acf-banner {
    flex-direction: column;
    border-radius: 40px;
  }
  .acf-banner-left {
    text-align: center;
    align-items: center;
  }
  .acf-banner-image {
    width: 100%;
    height: 300px;
    border-radius: 0 0 40px 40px;
  }
  .acf-banner-title { font-size: 23px; }
  .acf-banner-button {
    margin-left: auto;
    margin-right: auto;
  }
}

/* BANNER TWO Responsive */
@media (max-width: 1199px) {
  .acf-banner-two {
    min-height: 260px;
    padding: 35px;
  }
  .acf-banner-title-2 {
    font-size: 32px;
    line-height: 36px;
  }
  .acf-banner-two-image {
    width: 160px;
    height: 140px;
  }
}

@media (max-width: 991px) {
  .acf-banner-two {
    min-height: 320px;
    padding: 30px;
  }
  .acf-banner-two-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .acf-banner-two-left {
    max-width: 100%;
    align-items: center;
  }
  .acf-banner-title-2 {
    font-size: 28px;
    line-height: 32px;
  }
  .acf-banner-subtitle-2 {
    font-size: 15px;
    max-width: 80%;
  }
  .acf-banner-two-image {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .acf-banner-two {
    min-height: 280px;
    padding: 25px;
    border-radius: 50px;
  }
  .acf-banner-two::before { border-radius: 50px; }
  .acf-banner-title-2 {
    font-size: 24px;
    line-height: 28px;
  }
  .acf-banner-subtitle-2 { font-size: 14px; }
  .acf-banner-button.small {
    font-size: 13px;
    padding: 10px 18px;
  }
  .acf-banner-two-image {
    width: 130px;
    height: 115px;
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  .acf-banner-two {
    min-height: 250px;
    padding: 20px;
    border-radius: 40px;
  }
  .acf-banner-two::before { border-radius: 40px; }
  .acf-banner-two-content { gap: 20px; }
  .acf-banner-title-2 {
    font-size: 22px;
    line-height: 26px;
  }
  .acf-banner-two-image {
    width: 120px;
    height: 105px;
  }
}




/* ==============================
   BANNER THREE 
==============================*/

.acf-banner-three {
  border-radius: 70px;
 
  overflow: hidden;
  margin-bottom: 40px;
  min-height: 424px;
  margin-top: 145px;
}

.acf-banner-three-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.acf-banner-three-title {
  color: #B00149;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.35px;
  margin: 0;
}

.acf-banner-three-subtitle {
  color: #000;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.24px;
  margin: 0;
}

.acf-banner-button {
  display: flex;
  width: 200px;
  height: 51px;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 15px;
  background: #B00149;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.acf-banner-button:hover {
  background: #8c0038;
}

/* ==============================
   IMAGE RIGHT
==============================*/

.acf-banner-three-image {
  min-height: 424px;
  padding: 0;
  position: relative;
}

.acf-banner-three-image-inner {
  width: 100%;
  height: 100%;
  min-height: 424px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 111px 0px 0px 111px;
}

/* ==============================
   RESPONSIVE BANNER THREE
==============================*/

@media screen and (max-width: 992px) {
  .acf-banner-three {
    border-radius: 40px;
    min-height: auto;
    flex-direction: column;
  }

  .acf-banner-three-left {
    text-align: center;
    align-items: center;
    order: 2;
    padding: 30px 20px;
  }

  .acf-banner-three-image {
    min-height: 300px;
    order: 1;
    padding: 0;
    width: 100%;
  }

  .acf-banner-three-image-inner {
    min-height: 300px;
    border-radius: 40px 40px 0 0;
  }

  .acf-banner-three-title {
    font-size: 26px;
  }

  .acf-banner-button {
    margin-left: auto;
    margin-right: auto;
  }
}



/* ==============================
   FOOTER 
==============================*/

/* Footer Background */
.footer-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}

.footer-newsletter-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.footer-newsletter-title {
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 100;
  letter-spacing: -0.45px;
  margin-bottom: 10px;
}

.footer-newsletter-subtitle {
  color: #FFF;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.7px;
  margin-bottom: 30px;
}

/* Newsletter Form */
.newsletter-footer {
  background: transparent;
  border-radius: 47.5px;
  border: 1px solid #FFF;
  height: 70px;
  padding: 8px 8px 8px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  max-width: 800px;
  width: 100%;
}

.newsletter-footer:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-footer input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 5px;
  color: #ffffff;
  background: transparent;
  margin: 0;
  min-width: 280px;
}

.newsletter-footer input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-footer button {
  padding: 18px 30px;
  background: white;
  border: none;
  border-radius: 47.5px;
  color: #B00149;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
  height: 54px;
  margin: 0;
}

.newsletter-footer button:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

/* Footer Content Wrapper */
.footer-content-wrapper {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

/* Footer Widgets */
.footer-widgets-wrapper {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-widget {
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  padding: 0 5px;
}

.footer-widget-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.footer-widget ul li a:hover {
  opacity: 0.8;
}

/* Footer Branding */
.footer-branding-section {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-branding h1, .footer-branding h2 {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.footer-branding p {
  color: #FFF;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.footer-branding a {
  color: #FFF;
  font-size: 24px;
  margin-right: 15px;
  text-decoration: none;
}

.footer-branding a:hover {
  opacity: 0.7;
}

.footer-widget h5 {
  color: #FFF;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

/* Footer Menus Section */
.footer-menus-section {
  text-align: center;
}

.footer-menu-column {
  text-align: center;
  margin-bottom: 30px;
  display: block;
  width: 100%;
}

/* Footer Links */
footer a, footer a:visited, footer a:link, footer .menu-text, footer .menu-text a, footer .menu-text a:visited, footer .menu-text a:link {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

footer a:hover, footer .menu-text a:hover {
  opacity: 0.8;
  color: #FFFFFF !important;
}

/* Social Icons */
.footer-branding .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.footer-branding .social-icons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-branding .social-icons a:hover {
  opacity: 0.7;
  color: #FFF;
}

.footer-branding .social-icons a svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-branding .social-icons a i {
  position: relative;
  z-index: 2;
}

/* ==============================
  RESPONSIVE - FOOTER
==============================*/

/* Very Large Desktop - Horizontal Layout */
@media (min-width: 1400px) {
  .footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-branding-section {
    flex: 0 0 40%;
    text-align: left;
    margin-bottom: 0;
    padding-right: 40px;
  }
  
  .footer-branding h1, .footer-branding h2 {
    text-align: left;
  }
  
  .footer-branding p {
    text-align: left;
  }
  
  .footer-branding .social-icons {
    justify-content: flex-start;
  }
  
  .footer-menus-section {
    flex: 0 0 55%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
  }
  
  .footer-menu-column {
    flex: 1;
    margin-bottom: 0;
    padding: 0 20px;
  }
}

/* Stack Layout από 1400px και κάτω */
@media (max-width: 1399.98px) {
  .footer-content-wrapper {
    display: block;
    text-align: center;
  }
  
  .footer-branding-section {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
  }
  
  .footer-branding h1, .footer-branding h2 {
    text-align: center;
    font-size: 28px;
  }
  
  .footer-branding p {
    text-align: center;
    font-size: 23px;
  }
  
  .footer-branding .social-icons {
    justify-content: center;
  }
  
  .footer-menus-section {
    text-align: center;
    width: 100%;
  }
  
  .footer-menu-column {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-widget h5 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* Desktop Layout */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer-branding-section {
    margin-bottom: 35px;
  }
  
  .footer-branding h1, .footer-branding h2 {
    font-size: 26px;
  }
  
  .footer-branding p {
    font-size: 22px;
  }
  
  .footer-menu-column {
    margin-bottom: 30px;
  }
}

/* Tablet Layout */
@media (max-width: 1199.98px) and (min-width: 768px) {
  .footer-branding-section {
    margin-bottom: 40px;
  }
  
  .footer-branding h1, .footer-branding h2 {
    font-size: 24px;
  }
  
  .footer-branding p {
    font-size: 20px;
  }
  
  .footer-menu-column {
    margin-bottom: 30px;
    max-width: 350px;
  }
  
  .footer-widget h5 {
    font-size: 18px;
  }
  
  footer a, footer .menu-text, footer .menu-text a { 
    font-size: 17px !important; 
  }
}

/* Mobile Layout */
@media (max-width: 767.98px) {
  .footer-branding-section {
    margin-bottom: 35px;
    padding: 0 10px;
  }
  
  .footer-branding h1, .footer-branding h2 {
    font-size: 22px;
  }
  
  .footer-branding p {
    font-size: 18px;
  }
  
  .footer-menu-column {
    margin-bottom: 25px;
    max-width: 300px;
  }
  
  .footer-widget h5, .footer-widget .footer-title {
    font-size: 17px;
  }
  
  footer a, footer .menu-text, footer .menu-text a { 
    font-size: 16px !important; 
  }
}

/* Extra Small Screens */
@media (max-width: 575.98px) {
  .footer-branding-section {
    margin-bottom: 30px;
  }
  
  .footer-branding h1, .footer-branding h2 { 
    font-size: 20px; 
  }
  
  .footer-branding p { 
    font-size: 16px; 
  }
  
  .footer-menu-column {
    margin-bottom: 20px;
  }
  
  .footer-widget h5, .footer-widget .footer-title { 
    font-size: 16px; 
  }
  
  footer a, footer .menu-text, footer .menu-text a { 
    font-size: 17px !important; 
  }
}

/* Mobile Newsletter */
@media (max-width: 768px) {
  .footer-background { 
    height: 350px; 
  }
  
  .footer-newsletter-content { 
    padding: 30px 15px; 
  }
  
  .footer-newsletter-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .footer-newsletter-subtitle {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .newsletter-footer {
    max-width: 100%;
    height: 60px;
    padding: 6px 6px 6px 20px;
    gap: 20px;
  }
  
  .newsletter-footer input[type="email"] {
    padding: 10px 5px;
    font-size: 15px;
    min-width: 180px;
  }
  
  .newsletter-footer button {
    padding: 14px 18px;
    font-size: 15px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .footer-background { 
    height: 320px; 
  }
  
  .footer-newsletter-content { 
    padding: 20px 10px; 
  }
  
  .footer-newsletter-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .footer-newsletter-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .newsletter-footer {
    max-width: 100%;
    height: 55px;
    padding: 5px 5px 5px 15px;
    gap: 10px;
  }
  
  .newsletter-footer input[type="email"] {
    padding: 8px 3px;
    font-size: 14px;
    min-width: 150px;
  }
  
  .newsletter-footer button {
    padding: 12px 15px;
    font-size: 14px;
    height: 45px;
  }
}


.footer-copyright {
  background-color: #94023e;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 15px 0;
  font-size: 18px;

}

.footer-copyright p {
  margin: 0;
  letter-spacing: 0.03em;
}

.footer-copyright a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
  color: #ffcb05; /* ωραίο φωτεινό κίτρινο στο hover */
  outline: none;
}

.footer-copyright span {
  margin-left: 8px;
  font-weight: 300;
  opacity: 0.85;
}



/* ==============================
  ARCHIVE PRODUCT + SHOP 
==============================*/

/* Hide Default WooCommerce Elements */
.woocommerce-products-header, .woocommerce-ordering, .woocommerce-result-count, .woocommerce-breadcrumb, .page-title {
  display: none !important;
}

/* Header Styles */
.category-header-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 100%);
  z-index: 1;
}

.custom-category-title h1 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.3px;
  margin-bottom: 40px;
}

.custom-archive-breadcrumb .breadcrumb-line {
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.custom-archive-breadcrumb .breadcrumb-line a {
  color: rgba(0, 0, 0, 0.80);
  text-decoration: none;
}

.custom-archive-breadcrumb .breadcrumb-line a:hover {
  text-decoration: underline;
}

/* ==============================
  PAGINATION WOOCOMMERCE 
==============================*/

ul.page-numbers {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 40px 0;
  gap: 10px;
}

ul.page-numbers li a, ul.page-numbers li span {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 9999px;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

ul.page-numbers li .current {
  background: #F3F3F3;
  border-color: #ccc;
}

ul.page-numbers li a:hover {
  background: transparent;
  color: #000;
  border-color: #999;
}





/* ==============================================
   FILTER TABS - ARCHIVE AND SHOP PAGE 
   ============================================== */
.filter-tabs-container {
  margin-bottom: 30px;
}

.filter-tabs-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 14px;
  border-radius: 30px;
  border: 1px solid #B6B5B5;
  background: rgba(182, 181, 181, 0.20);
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
}

.filter-tab a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}

.filter-tab:hover:not(.active) {
  background: rgba(182, 181, 181, 0.40);
}

/* ACTIVE STATE */
.filter-tabs-wrapper .filter-tab.active, .filter-tab.active, .filter-tab.active.active {
  background: #B00149 !important;
  color: #fff !important;
  border-color: #B00149 !important;
}

.filter-tabs-wrapper .filter-tab.active a, .filter-tab.active a, .filter-tab.active.active a {
  color: #fff !important;
}

/* ==============================================
   PRODUCTS SIDEBAR - FORCE VISIBILITY
   ============================================== */
.products-sidebar {
  display: block !important;
  visibility: visible !important;
  padding: 20px;
  background-color: transparent;
  border-radius: 8px;
}

.products-sidebar .widget {
  display: block !important;
  visibility: visible !important;
  margin-bottom: 20px;
}

.col-lg-3 {
  display: block !important;
  visibility: visible !important;
}

/* ==============================================
   SIDEBAR ACCORDION
   ============================================== */
.products-sidebar .widget_layered_nav, .products-sidebar .widget_price_filter {
  position: relative;
  margin-bottom: 20px;
}

.products-sidebar .widget_layered_nav .widget-title, .products-sidebar .widget_price_filter .widget-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  margin: 0 0 10px 0;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.2px;
  transition: all 0.3s ease;
}

.products-sidebar .widget_layered_nav .widget-title:hover, .products-sidebar .widget_price_filter .widget-title:hover {
  opacity: 0.8;
}

.products-sidebar .sidebar-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.products-sidebar .widget_layered_nav.expanded .sidebar-toggle-icon, .products-sidebar .widget_price_filter.expanded .sidebar-toggle-icon {
  transform: rotate(180deg);
}

/* Widget Content */
.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-sidebar .widget_layered_nav.expanded .woocommerce-widget-layered-nav-list {
  max-height: 400px;
  padding-bottom: 15px;
}

.products-sidebar .widget_price_filter .price_slider_wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin: 0;
  padding: 0;
}

.products-sidebar .widget_price_filter.expanded .price_slider_wrapper {
  max-height: 400px;
  padding: 15px 0;
  margin-left: 10px;
}

/* Force closed state by default */
.products-sidebar .widget_layered_nav:not(.expanded) .woocommerce-widget-layered-nav-list {
  max-height: 0;
  overflow: hidden;
}

.products-sidebar .widget_price_filter:not(.expanded) .price_slider_wrapper {
  max-height: 0;
  overflow: hidden;
}

/* List Items */
.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  margin: 0 0 0 10px;
  border-bottom: none;
}

.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.80);
  font-size: 16px;
  font-weight: 400;
  position: relative;
  width: 100%;
}

.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a:hover {
  color: rgba(0, 0, 0, 1);
}

.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a .count {
  margin-left: auto;
  color: #999;
  font-size: 14px;
}

/* Custom Checkboxes */
.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a:before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1px solid #B6B5B5;
  border-radius: 3px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li.chosen a:before {
  background-color: #B00149;
  border-color: #B00149;
}

.products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li.chosen a:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
}

/* Price Filter */
.products-sidebar .widget_price_filter .price_slider {
  margin-bottom: 15px;
}

.products-sidebar .widget_price_filter .price_slider_amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.products-sidebar .widget_price_filter .price_slider_amount input {
  width: 80px;
  padding: 5px;
  border: 1px solid #B6B5B5;
  border-radius: 3px;
  font-size: 12px;
}

.products-sidebar .widget_price_filter .price_slider_amount .button {
  background: #B00149;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
}

.products-sidebar .widget_price_filter .price_slider_amount .button:hover {
  background: #8b0138;
}

/* Dividers */
.sidebar-filter-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(182, 181, 181, 0.50);
  margin: 15px 0;
}

/* Hide Tab Filter Widget */
.products-sidebar .widget_custom_tab_filter {
  display: none;
}

/* ==============================================
   MOBILE RESPONSIVE
   ============================================== */
@media (max-width: 991px) {
  .products-sidebar {
    margin-bottom: 30px;
  }
  
  .filter-tabs-container {
    margin-bottom: 20px;
  }
  
  .filter-tabs-wrapper {
    gap: 8px;
  }
  
  .filter-tab {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  /* On mobile, show filters expanded by default */
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list {
    max-height: none;
    padding-bottom: 15px;
  }
  
  .products-sidebar .widget_layered_nav .sidebar-toggle-icon, .products-sidebar .widget_price_filter .sidebar-toggle-icon {
    display: none;
  }
  
  .products-sidebar .widget_price_filter .price_slider_wrapper {
    max-height: none;
    padding: 15px 0;
  }
}

/* ==============================================
   MOBILE 
   ============================================== */
@media (max-width: 991px) {
  .products-sidebar .widget_layered_nav, .products-sidebar .widget_price_filter {
    margin-bottom: 5px;
  }
  
  .products-sidebar .widget_layered_nav .widget-title, .products-sidebar .widget_price_filter .widget-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 20px;
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    background: white;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list, .products-sidebar .widget_price_filter .price_slider_wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
  }
  
  .products-sidebar .widget_layered_nav.expanded .woocommerce-widget-layered-nav-list {
    max-height: 400px;
    padding: 10px 20px;
  }
  
  .products-sidebar .widget_price_filter.expanded .price_slider_wrapper {
    max-height: 400px;
    padding: 18px 20px;
  }
  
  .products-sidebar .sidebar-toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    opacity: 0.7;
    display: block !important;
  }
  
  .products-sidebar .widget.expanded .sidebar-toggle-icon {
    transform: rotate(180deg);
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin: 0;
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    width: 100%;
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li a:before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #B6B5B5;
    border-radius: 3px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li.chosen a:before {
    background-color: #B00149;
    border-color: #B00149;
  }
  
  .products-sidebar .widget_layered_nav .woocommerce-widget-layered-nav-list li.chosen a:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount input {
    width: 80px;
    padding: 5px;
    border: 1px solid #B6B5B5;
    border-radius: 3px;
    font-size: 12px;
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount .button {
    background: linear-gradient(135deg, #B00149 0%, #8b0138 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(176, 1, 73, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount .button:hover {
    background: linear-gradient(135deg, #8b0138 0%, #B00149 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(176, 1, 73, 0.4);
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount .button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(176, 1, 73, 0.3);
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }
  
  .products-sidebar .widget_price_filter .price_slider_amount .button:hover::before {
    left: 100%;
  }
  
  .sidebar-filter-divider {
    width: calc(100% - 40px);
    height: 1px;
    background: #ffffff;
    margin: 5px 20px;
    border: none;
  }
  
  .products-sidebar .widget {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
  }
  
  .products-sidebar .widget:last-child {
    border-bottom: none;
  }
  
  .mobile-filter-header {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    box-sizing: border-box;
    position: sticky !important;
    top: 0;
    z-index: 10;
    background: #B00149 !important;
  }
  
  .products-sidebar {
    padding: 0 !important;
  }
}



/* ==============================================
  PRODUCT GRID LAYOUT 
   ============================================== */

.archive-products-grid {
  margin-top: 30px;
}

.archive-product-card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden; 
}

.archive-product-card {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0; 
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .archive-product-card {
    height: 250px;
  }
}

.archive-product-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

/* Απενεργοποίηση του transform για κινητά */
@media (max-width: 767px) {
  .archive-product-card:hover {
    transform: none;
  }
}

/* Badges */
.archive-product-badges-container {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.archive-product-badge, .archive-product-new-badge {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  padding: 2px 6px;
  height: 22px;
}

.archive-product-badge.top {
  background: #FFF;
  color: #1E1E1E;
}

.archive-product-badge.premium {
  background: #B00149;
  color: #FFF;
}

.archive-product-badge.new {
  background: #28A745;
  color: #FFF;
}

.archive-product-new-badge {
  color: #B00149;
  background: #EDBC43;
}

/* Product Content */
.archive-product-content {
  padding: 15px 0 0 0;
  background: transparent;
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.archive-product-title {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Title Link Styling */
.archive-product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.archive-product-title-link:hover {
    text-decoration: none;
    color: inherit;
}

.archive-product-title-link:hover .archive-product-title {
    transition: color 0.3s ease;
}


.archive-product-city {
  color: #9C9A9A;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.archive-product-rating-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.archive-product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.archive-product-rating-star {
  color: #FFD700;
  font-size: 16px;
}

.archive-product-rating-text {
  color: #9C9A9A;
  font-size: 14px;
  font-weight: 400;
}

.archive-product-extra-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 8px;
  flex-wrap: nowrap;
}

.archive-product-people, .archive-product-nights {
  color: #9C9A9A;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Pricing */
.archive-product-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.archive-product-price {
  color: #B00149;
  font-size: 28px;
  font-weight: 700;
}

.archive-product-original-price {
  color: rgba(30, 30, 30, 0.50);
  font-size: 18px;
  font-weight: 500;
  text-decoration-line: line-through;
}

.archive-product-discount-badge {
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  width: 56px;
  height: 26px;
  padding: 2px 7px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #B00149;
}

/* Grid Layout */
.archive-products-wrapper {
  display: grid;
  gap: 20px;
  width: 100%;
}

/* Filter by price */
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content 
,.woocommerce .widget_price_filter .ui-slider .ui-slider-handle
 {
    background-color: #B00149;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    background-color: #EDBC43;
}




/* ==============================
  RESPONSIVE 
==============================*/

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .archive-products-wrapper { grid-template-columns: repeat(3, 1fr); }
}

/* Large Tablet Adjustments */
@media (min-width: 992px) and (max-width: 1199px) {
  .archive-product-card { height: 260px; }
  .archive-product-title { font-size: 17px; }
  .archive-product-price { font-size: 20px; }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
  .archive-products-wrapper { grid-template-columns: repeat(2, 1fr); }
  .archive-product-card { height: 330px; }
  .archive-product-title { font-size: 16px; }
  .archive-product-price { font-size: 26px; }
  .archive-product-original-price { font-size: 16px; }
}

/* Mobile: 2 columns - FIXED LAYOUT */
@media (max-width: 767.98px) {
  .archive-products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; 
  }
  
  .archive-product-card-container { 
    margin-bottom: 20px;
    min-height: 320px;
    overflow: hidden;
  }
  
  .archive-product-card { 
    height: 180px; 
    flex-shrink: 0;
  }
  
  .archive-product-content { 
    padding: 8px 4px 0 4px; 
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px; 
  }
  
  .archive-product-title {
    font-size: 13px; 
    margin-bottom: 0; 
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  
  .archive-product-city {
    font-size: 11px;
    margin-bottom: 0; 
  }
  
  .archive-product-rating-info {
    margin-bottom: 0; 
  }
  
  .archive-product-rating-text { 
    font-size: 10px; 
  }
  
  .archive-product-extra-info {
    gap: 6px; 
    margin-left: 0;
    margin-bottom: 0; 
    flex-wrap: wrap;
  }
  
  .archive-product-people, .archive-product-nights { 
    font-size: 10px; 
  }
  
  .archive-product-people img, .archive-product-nights img {
    width: 12px; 
    height: 10px;
  }
  
  .archive-product-price-container {
    margin-top: 6px; 
  }
  

  .archive-product-original-price { 
    font-size: 12px; 
  }
  
  .archive-product-discount-badge {
    font-size: 9px; 
    width: 30px;
    height: 16px;
    padding: 1px 3px;
  }
  
  .archive-product-badge, .archive-product-new-badge {
    font-size: 9px;
    padding: 1px 3px;
    height: 14px;
  }
  
  .filter-tabs-wrapper { justify-content: center; }
  .filter-tab {
    font-size: 14px;
    padding: 8px 12px;
  }
  .products-sidebar { margin-bottom: 20px; }
  .custom-category-title h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .custom-archive-breadcrumb .breadcrumb-line {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Small Mobile COMPACT */
@media (max-width: 575px) {
  .archive-products-wrapper { 
    gap: 10px; 
  }
  
  .archive-product-card { 
    height: 160px; 
  }
  
  .archive-product-content { 
    padding: 6px 3px 0 3px; 
    gap: 3px;
  }
  
  .archive-product-title {
    font-size: 12px; /
  }
  
  .archive-product-city {
    font-size: 10px;
  }
  
  .archive-product-rating-text { 
    font-size: 14px; 
  }
  
  .archive-product-people, .archive-product-nights { 
    font-size: 14px; 
  }
  
  .archive-product-people img, .archive-product-nights img {
    width: 15px;
    height: 13px;
  }
  


  .archive-product-original-price { 
    font-size: 11px; 
  }
  
  .archive-product-discount-badge {
    font-size: 10px;
    width: 35px;
    height: 23px;
  }
  
  .archive-product-card-container { 
    margin-bottom: 15px;
    min-height: 280px; 
  }
  
  .archive-product-badge, .archive-product-new-badge {
    font-size: 11px;
    padding: 4px 4px;
    height: 20px;
  }
  
  .custom-category-title h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .custom-archive-breadcrumb .breadcrumb-line {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* Extra Small Mobile -*/
@media (max-width: 360px) {
  .archive-products-wrapper { 
    gap: 8px; 
  }
  
  .archive-product-card { 
    height: 140px; 
  }
  
  .archive-product-content { 
    padding: 4px 2px 0 2px; 
    gap: 2px;
  }
  
  .archive-product-title {
    font-size: 11px; 
  }
  
  .archive-product-city {
    font-size: 9px;
  }
  
  .archive-product-rating-text { 
    font-size: 8px; 
  }
  
  .archive-product-people, .archive-product-nights { 
    font-size: 8px; 
  }
  
  .archive-product-people img, .archive-product-nights img {
    width: 8px;
    height: 6px;
  }
  

  .archive-product-original-price { 
    font-size: 10px; 
  }
  
  .archive-product-discount-badge {
    font-size: 10px;
    width: 28px;
    height: 28px;
  }
  
  .archive-product-card-container { 
    margin-bottom: 12px;
    min-height: 260px; 
  }
  
  .archive-product-badge, .archive-product-new-badge {
    font-size: 8px;
    padding: 9px;
    height: 10px;
  }
  
  .custom-category-title h1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .custom-archive-breadcrumb .breadcrumb-line {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* RELATED PRODUCTS CSS */
@media (max-width: 767.98px) {
    .related.products .archive-product-price {
        font-size: 21px !important;
    }
    .archive-product-price {
        font-size: 21px !important; /* archive products */
    }
}

@media (max-width: 575px) {
    .related.products .archive-product-price {
        font-size: 20px !important;
    }
    .archive-product-price {
        font-size: 20px !important; /* archive products */
    }
}

@media (max-width: 360px) {
    .related.products .archive-product-price {
        font-size: 16px !important;
    }
    .archive-product-price {
        font-size: 16px !important; /*  archive products */
    }
}




/* ==============================================
   NOT FOUND PRODUCT
   ============================================== */


.woocommerce-no-products-found {
            max-width: 600px;
            margin: 2rem auto;
            padding: 2rem;
            text-align: center;
        }

        .woocommerce-info {
            background: linear-gradient(135deg, #fff7fa 0%, #ffffff 100%);
            color: rgb(0, 0, 0);
            padding: 2rem 1.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            line-height: 1.6;
            box-shadow: 0 4px 20px rgba(176, 1, 73, 0.15);
            border: 3px solid RGB(171 23 78);
            position: relative;
            overflow: hidden;
        }

        .woocommerce-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
        }

        .woocommerce-info::after {
            content: '';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.5rem;
            opacity: 0.3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .woocommerce-no-products-found {
                margin: 1rem;
                padding: 1rem;
            }
            
            .woocommerce-info {
                padding: 1.5rem 1rem;
                font-size: 1rem;
                border-radius: 8px;
            }
            
            .woocommerce-info::after {
                top: 0.8rem;
                right: 1rem;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .woocommerce-info {
                padding: 1.2rem 0.8rem;
                font-size: 0.95rem;
            }
        }

        /* Hover Effect */
        .woocommerce-info:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(176, 1, 73, 0.25);
            transition: all 0.3s ease;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .woocommerce-info {
            animation: fadeInUp 0.6s ease-out;
        }




/* ==============================================
   SINGLE THUMBNAIL LAYOUT - SPECIAL HANDLING
   ============================================== */

/* Content section responsive layout - 1120px breakpoint */
@media (max-width: 1120px) {
    
    /* Only the content section (ROW 2) columns become full width */
    .woocommerce div.product .row:not(.product-images-wrapper) .col-lg-8,
    .woocommerce div.product .row:not(.product-images-wrapper) .col-lg-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}



/* VARIABLE PRODUCTS*/

.woocommerce div.product .woocommerce-variation-price .price {
    font-size: 22px;
    font-weight: 700;
    color: #B00149;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* Sale price styling */
.woocommerce div.product .woocommerce-variation-price .price del {
    font-size: 16px;
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
}

.woocommerce div.product .woocommerce-variation-price .price del .amount {
    color: #999;
}

.woocommerce div.product .woocommerce-variation-price .price ins {
    text-decoration: none;
    color: #B00149;
    font-weight: 700;
}

/* Out of stock message */
.woocommerce div.product .stock.out-of-stock {
    color: #dc3545;
    font-weight: 500;
    background: rgba(220, 53, 69, 0.08);
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

.woocommerce div.product form.cart .reset_variations {
    color: rgb(131, 131, 131);
}

.woocommerce div.product form.cart .variations select {
    color: #B00149;
    border-color: rgb(234 234 234);
    border-radius: 10px;
    font-weight: 600;


}

.woocommerce div.product form.cart .variations label {
margin-right: 8px;
}




/*  STOP VARIABLE PRODUCTS*/

/* Desktop: Special layout when only 1 thumbnail exists */
@media (min-width: 992px) {
    /* Normal main image container remains unchanged */
    .main-image-container {
        aspect-ratio: 16/10;
        border-radius: 12px;
        overflow: hidden;
        transition: opacity 0.3s ease;
        position: relative;
    }
    
    /* Special layout for single thumbnail: Full height container for col-6 */
    .single-thumbnail-layout .single-thumbnail-full-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    
    /* Single thumbnail fills the full col-6 space with same aspect ratio as main */
    .single-thumbnail-layout .single-thumbnail-item {
        width: 100% !important;
        aspect-ratio: 16/10 !important; /* Same as main image */
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .single-thumbnail-layout .single-thumbnail-item:hover {
        opacity: 0.8;
        transform: scale(1.02);
    }
    
    .single-thumbnail-layout .single-thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    /* Ensure normal layout isn't affected */
    .product-images-wrapper:not(.single-thumbnail-layout) .thumbnail-container {
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        aspect-ratio: 16;
        width: 100%;
        cursor: pointer;
    }
    
    .product-images-wrapper:not(.single-thumbnail-layout) .thumbnail-container:hover {
        opacity: 0.8;
        transform: scale(1.02);
    }
    
    .product-images-wrapper:not(.single-thumbnail-layout) .thumbnail-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    /* Desktop thumbnails - Normal layout (2+ thumbnails) */
    .product-images-wrapper:not(.single-thumbnail-layout) .col-lg-4 .d-flex.flex-column {
        height: 100%;
        gap: 12px;
    }
    
    .product-images-wrapper:not(.single-thumbnail-layout) .col-lg-4 .thumbnail-container {
        flex: 1;
        min-height: 0;
    }
}

/* Mobile and Tablet: No changes - use existing responsive rules */
@media (max-width: 991.98px) {
    /* All existing mobile/tablet styling remains unchanged */
    .single-thumbnail-layout .thumbnail-container-mobile,
    .product-images-wrapper .thumbnail-container-mobile {
        aspect-ratio: 1/1;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }
    
    .single-thumbnail-layout .thumbnail-container-mobile:hover,
    .product-images-wrapper .thumbnail-container-mobile:hover {
        opacity: 0.8;
        transform: scale(1.02);
    }
    
    .single-thumbnail-layout .thumbnail-container-mobile img,
    .product-images-wrapper .thumbnail-container-mobile img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* ==============================================
   SINGLE PRODUCT CSS - COMPLETE
   ============================================== */

/* Breadcrumb */
.single-product-breadcrumb {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 30px;
}
.single-product-breadcrumb .breadcrumb-link { color: rgba(0, 0, 0, 0.80); text-decoration: none; }
.single-product-breadcrumb .breadcrumb-link:hover { color: #000; text-decoration: underline; }
.single-product-breadcrumb .breadcrumb-current { color: #000; font-weight: 600; }

/* Title & Description */
.single-product-title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.3px;
}
.product-description {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

@media (max-width: 767px) {
  .product-description {
    font-size: 17px;
  }
}

/* Product Info Card */
.product-info-card {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.product-info-item {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 7px 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-info-card .archive-product-price-container { 
    padding: 10px 15px; 
    overflow: hidden;
}
.product-info-card .archive-product-price { 
    font-size: 28px !important; 
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Images - General */
.main-image-container:hover { opacity: 0.95; }
.main-image-container img, .thumbnail-container img, .thumbnail-container-mobile img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

/* Camera Icon */
.main-image-container .position-absolute.bottom-0 .d-flex {
    padding: 5px 8px !important;
    font-size: 10px !important;
}
.main-image-container .position-absolute.bottom-0 img {
    width: 18px !important;
    height: 18px !important;
}
.main-image-container .position-absolute.bottom-0 span {
    font-size: 17px !important;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}
.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}
.lightbox-image.loading { opacity: 0.7; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}
.lightbox-close {
    top: 30px;
    right: 35px;
    font-size: 40px;
}
.lightbox-prev, .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}
.lightbox-next { right: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-close:hover { color: #ccc; }
.lightbox-prev:hover, .lightbox-next:hover { background-color: rgba(255,255,255,0.2); }
.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10001;
}
body.lightbox-open { overflow: hidden !important; }

/* Add to Cart & Quantity */
.single_add_to_cart_button, .add_to_cart_button, button[name="add-to-cart"] {
    background: #B00149 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600;
    width: 100% !important; 
    padding: 12px 0;
    transition: background 0.2s;
}
.single_add_to_cart_button:hover, .add_to_cart_button:hover, button[name="add-to-cart"]:hover {
    background: #8a0136 !important;
}

/* Cart and Wishlist Container - Simple flex layout */
.cart-wishlist-container {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 20px !important;
}

.cart-button-wrapper {
    flex: 1 !important;
}

.cart-wishlist-container .archive-product-wishlist-wrapper {
    position: static !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
}





.woocommerce .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    padding: 6px 12px;
    width: 100%;
    gap: 6px;
}

.woocommerce .quantity:before {
    content: 'Επιλέξτε ποσότητα';
    display: block;
    color: #9C9A9A;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 6px;
    width: 100%;
}

/* Αγγλικά - περισσότερες επιλογές */
html[lang*="en"] .woocommerce .quantity:before,
body[class*="en"] .woocommerce .quantity:before,
body.lang-en .woocommerce .quantity:before {
    content: 'Select quantity' !important;
}


.woocommerce .quantity .qty {
    width: 50px;
    height: 28px;
    text-align: center;
    font-size: 16px;
    border: none;
    background: transparent;
    font-weight: 600;
    pointer-events: none;
    line-height: 28px;
}
.woocommerce .quantity .custom-qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}
.woocommerce .quantity .custom-qty-btn svg { width: 24px; height: 24px; }
.woocommerce .quantity .custom-qty-btn .qty-sign {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgb(80, 78, 79);
    pointer-events: none;
}
.product-info-card .cart, .product-info-card form.cart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.single_add_to_cart_button { margin-top: 20px !important; }

/* Για μικρότερες desktop οθόνες - padding 5% σε όλα */
@media (max-width: 1500px) and (min-width: 992px) {
    .container-xxl {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
    
    .row.g-4.mb-5 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .product-description,
    .product-info-card,
    .faq-accordion-container,
    .product-notice-container {
        transform: scale(0.95);
        transform-origin: top left;
    }
}

/* Related Products */
.related.products .related-products-wrapper { grid-template-columns: repeat(2, 1fr) !important; }
.related-product-3 { display: none !important; }
.related-products-custom-heading {
    color: #000 !important;
    font-size: 30px !important;
    font-weight: 700;
    line-height: 20px !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 30px !important;
}

/* FAQ & Notice */
.faq-accordion { margin-top: 0; }
.faq-item {
    border-bottom: 1px solid rgba(182, 181, 181, 0.50);
    margin-bottom: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-header:hover { opacity: 0.8; }
.faq-title {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin: 0 15px 0 0;
}
.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.faq-item.active .arrow-icon { transform: rotate(180deg); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-content.active { max-height: 600px; }
.faq-content-inner {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.1px;
    margin: 10px 0 0 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.faq-content-inner p { margin: 0 0 15px 0; color: #000; }
.faq-content-inner p:last-child { margin-bottom: 0; }
.faq-content-inner ul, .faq-content-inner ol { margin: 15px 0; padding-left: 25px; color: #000; }
.faq-content-inner li { margin-bottom: 10px; line-height: 1.6; }
.faq-content-inner strong { color: #000; font-weight: 600; }
.faq-content-inner a { color: #B00149; text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
.faq-content-inner a:hover { color: #8a0136; text-decoration: underline; }

/* Product Notice Box */
.product-notice-container { margin-bottom: 20px; }
.product-notice-box {
    background: #EFEFEF;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 220px;
}
.notice-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notice-icon svg {
    width: 38px;
    height: 36px;
}
.notice-exclamation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #B00149;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.notice-content, .notice-content p, .notice-content li {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
}
.notice-content { flex: 1; padding: 0; }
.notice-content p { margin: 0 0 12px 0; }
.notice-content p:last-child { margin-bottom: 0; }
.notice-content ul, .notice-content ol { margin: 12px 0; padding-left: 20px; }
.notice-content li { margin-bottom: 6px; }
.notice-content strong { color: #B00149; font-weight: 600; }
.notice-content a { color: #B00149; text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
.notice-content a:hover { color: #8a0136; text-decoration: underline; }

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000;
}
.form-input, .form-select, .form-textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #B00149;
}
.form-select { background: white; min-width: 250px; }
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-submit {
    background: #B00149;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(176, 1, 73, 0.2);
}
.form-submit:hover {
    background: #8a0136;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(176, 1, 73, 0.3);
}

/* Hide WooCommerce defaults */
.woocommerce-tabs, .woocommerce-Reviews, #reviews, .reviews_tab, .wc-tabs-wrapper, .woocommerce-product-tabs, .custom-reviews-section, .product-reviews, .reviews-section { display: none !important; }

/* Responsive */
@media (min-width: 1200px) {
    .related.products .related-products-wrapper { grid-template-columns: repeat(3, 1fr) !important; }
    .related-product-3 { display: block !important; }
}

@media (max-width: 991.98px) {
    .product-info-card { 
        max-width: 100%; 
        min-height: 200px; 
        margin-top: 20px; 
        padding: 12px; 
    }
    .product-info-item { 
        font-size: 16px; 
        padding: 6px 8px; 
    }
    .product-info-card .archive-product-price { 
        font-size: 32px !important; 
    }
    .main-image-container { aspect-ratio: 16/9; margin-bottom: 20px; }
    .product-notice-box { min-height: 200px; padding: 30px; gap: 20px; }
    .notice-content, .notice-content p, .notice-content li { font-size: 18px; letter-spacing: 0.4px; }
    .notice-exclamation { font-size: 20px; }
    .product-notice-container { margin-bottom: 30px; }
}
@media (max-width: 768px) {
    .product-info-card { 
        padding: 10px; 
        gap: 10px; 
    }
    .product-info-item { 
        font-size: 14px; 
        padding: 5px 6px; 
    }
    .product-info-card .archive-product-price { 
        font-size: 24px !important; 
    }
    .product-info-card .archive-product-price-container { 
        padding: 8px 10px; 
    }
    .lightbox-prev, .lightbox-next { font-size: 24px; padding: 12px; }
    .lightbox-close { font-size: 30px; top: 15px; right: 20px; }
    .related-products-custom-heading { font-size: 22px !important; line-height: 26px !important; margin-bottom: 20px !important; }
    .faq-header { padding: 25px 0; }
    .faq-title { font-size: 17px; line-height: 26px; margin-right: 12px; }
    .faq-content.active { max-height: 80vh; overflow-y: auto; }
    .faq-content-inner { padding: 20px; font-size: 16px; }
    .faq-content.active::-webkit-scrollbar { width: 4px; }
    .faq-content.active::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.05); border-radius: 2px; }
    .faq-content.active::-webkit-scrollbar-thumb { background: rgba(176, 1, 73, 0.3); border-radius: 2px; }
    .faq-content.active::-webkit-scrollbar-thumb:hover { background: rgba(176, 1, 73, 0.5); }
    .form-row { grid-template-columns: 1fr; }
    .form-select { min-width: auto; }
    .product-notice-box { padding: 25px; gap: 15px; margin-bottom: 30px; }
    .notice-content, .notice-content p, .notice-content li { font-size: 16px; letter-spacing: 0.3px; }
    .notice-exclamation { font-size: 18px; }
}
@media (max-width: 576px) {
    .single-product-title { font-size: 24px; line-height: 30px; }
    .main-image-container { aspect-ratio: 4/3; }
    .product-info-card { 
        padding: 8px; 
        gap: 8px; 
    }
    .product-info-item { 
        font-size: 13px; 
        padding: 4px 5px; 
    }
    .product-info-card .archive-product-price { 
        font-size: 20px !important; 
    }
    .product-info-card .archive-product-price-container { 
        padding: 6px 8px; 
    }
}
@media (max-width: 480px) {
    .lightbox-prev, .lightbox-next { font-size: 20px; padding: 10px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { font-size: 35px; top: 15px; right: 15px; }
    .image-counter { bottom: 15px; font-size: 14px; padding: 6px 12px; }
    .related-products-custom-heading { font-size: 22px !important; line-height: 24px !important; margin-bottom: 15px !important; }
    .main-image-container { aspect-ratio: 1/1; }
    .product-info-card { 
        padding: 13px; 
        gap: 6px; 
    }
    .product-info-item { 
        font-size: 15px; 
        padding: 3px 4px; 
    }
    .product-info-card .archive-product-price { 
        font-size: 25px !important; 
    }
}


/* CART */
.cart-icon-wrapper {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -1em;
  right: -0.8em;
  background-color: #B00149;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 0.45em 0.6em;
  min-width: 1.6em;
  text-align: center;
  line-height: 1;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive - Î³Î¹Î± Ï€Î»Ï Î¼Î¹ÎºÏÎ­Ï‚ Î¿Î¸ÏŒÎ½ÎµÏ‚ */
@media (max-width: 480px) {
  .cart-count {
    top: -0.8em;
    right: -0.6em;
    font-size: 0.5rem;
    padding: 0.35em 0.5em;
    min-width: 1.4em;
  }
}

/* Responsive - Î³Î¹Î± tablet ÎºÎ±Î¹ Ï€Î¬Î½Ï‰ */
@media (min-width: 768px) {
  .cart-count {
    font-size: 0.85rem;
    padding: 0.5em 0.7em;
    top: -1.1em;
    right: -0.9em;
  }
}



/* ============================================
   YITH WISHLIST STYLING - LIONTHEME
   ============================================ */
/* Προεπιλογή: 50px σε όλα  για variables*/
.woocommerce div.product.product-type-variable .cart-wishlist-container .archive-product-wishlist-wrapper {
    margin-top: 50px !important;
}

/* Από 1121px έως 1653px */
@media (max-width: 1653px) and (min-width: 1121px) {
    .woocommerce div.product.product-type-variable .cart-wishlist-container .archive-product-wishlist-wrapper {
        margin-top: 90px !important;
    }
}

/* Για κινητά - κάτω από 541px ή ό,τι όριο θέλεις */
@media (max-width: 541px) {
    .woocommerce div.product.product-type-variable .cart-wishlist-container .archive-product-wishlist-wrapper {
        margin-top: 90px !important;
    }
}

.woocommerce .wishlist-title {
    display: none;
}



/* Wishlist wrapper positioning */
.archive-product-wishlist-wrapper,
.deals-wishlist-wrapper {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 15;
}

/* Main wishlist button container */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hover effect */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist:hover,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    transform: scale(1.02);
}

/* Link styling */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist a,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    position: relative !important;
    border-radius: 50% !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide all default plugin elements */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-icon,
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist img,
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-add-button-text,
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .feedback,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-icon,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist img,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-add-button-text,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .feedback {
    display: none !important;
    visibility: hidden !important;
}

/* Custom heart icon - default state (heart.png) */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('/wp-content/themes/liontheme/assets/images/heart.png') center center / contain no-repeat;
    transition: all 0.3s ease;
}

/* Custom heart icon - selected state (heart-2.png) */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist.exists a::before,
.archive-product-wishlist-wrapper .yith-wcwl-wishlistaddedbrowse a::before,
.archive-product-wishlist-wrapper .yith-wcwl-wishlistexistsbrowse a::before,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist.exists a::before,
.deals-wishlist-wrapper .yith-wcwl-wishlistaddedbrowse a::before,
.deals-wishlist-wrapper .yith-wcwl-wishlistexistsbrowse a::before {
    background: url('/wp-content/themes/liontheme/assets/images/heart-2.png') center center / contain no-repeat;
}

/* Hide loading states */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .ajax-loading,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .ajax-loading {
    display: none !important;
}

/* Additional states styling */
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .archive-product-wishlist-wrapper,
    .deals-wishlist-wrapper {
        top: 6px;
        right: 6px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .archive-product-wishlist-wrapper,
    .deals-wishlist-wrapper {
        top: 4px;
        right: 4px;
    }
    
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist,
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
        width: 36px !important;
        height: 36px !important;
    }
    
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before {
        width: 18px;
        height: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .archive-product-wishlist-wrapper,
    .deals-wishlist-wrapper {
        top: 3px;
        right: 3px;
    }
    
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist,
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
        width: 32px !important;
        height: 32px !important;
    }
    
    .archive-product-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before,
    .deals-wishlist-wrapper .yith-wcwl-add-to-wishlist a::before {
        width: 16px;
        height: 14px;
    }
}


.woocommerce ins,
.woocommerce ins .woocommerce-Price-amount.amount {
  text-decoration: none !important;
}

.woocommerce-message {
    display: none !important;
}


.page-content-wrapper {
    padding: 0; 
}

.wishlist_table.mobile li .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;     
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 7px;
    padding-bottom: 15px;
    border-bottom: 2px solid #EDBC43;; 
    width: 100%; 
    box-sizing: border-box; 
}

.wishlist_table.mobile li:last-child .item-wrapper {
    border-bottom: none; 
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail{
    max-width: 70% !important;

}


.page-content a {
    font-size: 18px !important;
    font-weight: 600 !important;
}
.page-content h3::before {
    display: none !important;
}

td.product-price {
    font-size: 19px;
    font-weight: 700;
    color: #B00149;
    
}


.wishlist_table.mobile li .item-details table.item-details-table td.label {
    font-size: 18px !important;
}

.wishlist_table.mobile li .item-details table.item-details-table td.value {
    font-size: 14px !important;
    font-weight: 700;
    color: #B00149;
}

.page-content table {
    text-align: center;
}

.page-content table th,
.page-content table td {
    text-align: center;
}

.fa.fa-trash {
    font-size: 26px !important;
}




/* ==============================================
   QUESTIONS & ANSWERS FEATURE - CSS ONLY
   ============================================== */

/* FAQ Content - ΠΛΗΡΗΣ ΕΛΕΥΘΕΡΙΑ ΥΨΟΥΣ */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content.active { 
    max-height: none !important; /* Καμία περικοπή */
    height: auto !important; /* Αυτόματο ύψος */
    overflow: visible !important; /* Χωρίς scroll */
}

/* Questions Section - ΧΩΡΙΣ ΠΕΡΙΟΡΙΣΜΟΥΣ */
.questions-section {
    margin-top: 20px;
    /* Καμία περικοπή ύψους */
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    /* Ελεύθερο ύψος */
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* Question Item - Normal styling */
.question-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.question-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.question-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.question-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #B00149;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.question-meta {
    flex: 1;
}

.question-author {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 4px;
}

.question-date {
    color: #666;
    font-size: 14px;
}

.question-text {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 52px; /* Align with avatar */
}

/* Answer styling */
.answer {
    margin-top: 15px;
    margin-left: 52px; /* Align with question text */
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #B00149;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.answer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.answer-label {
    background: #B00149;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.answer-author {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.answer-date {
    color: #666;
    font-size: 12px;
}

.answer-text {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}

/* Question form */
.question-form {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    display: none;
}

.question-form.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-form .form-group {
    margin-bottom: 20px;
}

.question-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.question-form .form-input,
.question-form .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.question-form .form-input:focus,
.question-form .form-textarea:focus {
    outline: none;
    border-color: #B00149;
    box-shadow: 0 0 0 3px rgba(176, 1, 73, 0.1);
}

.question-form .form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.question-form .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.question-form .form-submit,
.question-form .form-cancel {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.question-form .form-submit {
    background: #B00149;
    color: white;
    flex: 1;
}

.question-form .form-submit:hover {
    background: #8a0136;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 1, 73, 0.3);
}

.question-form .form-cancel {
    background: #e0e0e0;
    color: #666;
    flex: 0 0 auto;
    padding: 12px 20px;
}

.question-form .form-cancel:hover {
    background: #d0d0d0;
}

/* Action buttons */
.questions-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ask-question-btn, .view-all-questions-btn {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.ask-question-btn {
    background: #B00149;
    color: white;
    flex: 1;
}

.ask-question-btn:hover {
    background: #8a0136;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.view-all-questions-btn {
    background: transparent;
    color: #B00149;
    border: 2px solid #B00149;
    flex: 1;
}

.view-all-questions-btn:hover {
    background: #B00149;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* No questions state */
.no-questions {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

/* Success/Error messages */
.question-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.question-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Loading state */
.question-form.loading .form-submit {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.question-form.loading .form-submit:hover {
    transform: none;
}

/* Responsive Design - ΧΩΡΙΣ ΠΕΡΙΟΡΙΣΜΟΥΣ ΥΨΟΥΣ */
@media (max-width: 991.98px) {
    /* Διατηρούμε την ελευθερία ύψους */
    .faq-content.active { 
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .questions-section {
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .question-item {
        padding: 18px;
    }
    
    .question-header {
        gap: 10px;
    }
    
    .question-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .question-text {
        padding-left: 46px;
    }
    
    .answer {
        margin-left: 46px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    /* ΚΑΙ ΣΤΟ MOBILE - ΧΩΡΙΣ ΠΕΡΙΟΡΙΣΜΟΥΣ */
    .faq-content.active { 
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .questions-section {
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .questions-list {
        gap: 15px;
    }
    
    .question-item {
        padding: 15px;
    }
    
    .question-header {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .question-text {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .answer {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .question-form {
        padding: 20px;
    }
    
    .question-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .questions-actions {
        flex-direction: column;
    }
    
    .ask-question-btn, .view-all-questions-btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* ΚΑΙ ΣΤΑ ΜΙΚΡΑ MOBILE - ΧΩΡΙΣ ΠΕΡΙΟΡΙΣΜΟΥΣ */
    .faq-content.active { 
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .questions-section {
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .questions-list {
        gap: 12px;
    }
    
    .question-item {
        padding: 12px;
    }
    
    .question-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .question-author {
        font-size: 15px;
    }
    
    .question-text {
        font-size: 15px;
    }
    
    .answer-text {
        font-size: 14px;
    }
    
    .question-form {
        padding: 15px;
    }
    
    .question-form .form-input,
    .question-form .form-textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .question-form .form-actions {
        flex-direction: column;
    }
    
    .question-form .form-submit,
    .question-form .form-cancel {
        width: 100%;
        padding: 14px;
    }
}
