.product-card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
  max-height: 2.8em;
}
/* Product card hover effect */
.product-card {
  border: 0.05rem solid #335c5d87;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.52s cubic-bezier(0.4,0,0.2,1), transform 0.32s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
  min-height: 370px;
  max-height:auto;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,0.18), 0 0.5rem 1rem rgba(0,0,0,0.10);
  transform: translateY(-5px) scale(1.005);
  z-index: 3;
}
.product-card .card-img-top {
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.product-card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
  max-height: 2.8em;
}
.product-card:hover .card-img-top {
  transform: scale(1.08);
}

/* Global Styles */
body {
    font-family: 'open-sans', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}


/* Top Header Styling with ease down effect */
#top-header {
  background-color: #e9e9e9;
  color: #292929;
  padding: 3px 0;
  font-size: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(-100%);
  opacity: 0;
}

#top-header.show {
  transform: translateY(0);
  opacity: 1;
}

#top-header .contact-info i {
  margin-right: 5px;
  color: #464646;
}

#top-header .social-links a {
  color: #7A8769;
  margin-left: 15px;
  transition: color 0.3s ease;
}

#top-header .social-links a:hover {
  color: #7A8769;
}

/* === Modern Sticky Header === */
#header {
  background: rgba(255,255,255,0.98);
  color: #151515;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, box-shadow 0.3s, top 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: padding, background, box-shadow, top, opacity;
  backdrop-filter: blur(2px);
}

/* Header ease up (slide up & hide) */
#header.hide {
  top: -100px;
  opacity: 0;
  pointer-events: none;
}

#header.shrink {
  padding: 7px 0 !important;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  animation: headerShrinkIn 0.25s cubic-bezier(0.4,0,0.2,1);
}

@keyframes headerShrinkIn {
  from {
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  to {
    padding: 7px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  }
}

/* Logo scaling */
#header .logo h1 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #7A8769;
  margin: 0;
  transition: font-size 0.3s cubic-bezier(0.4,0,0.2,1);
}
#header.shrink .logo h1 {
  font-size: 1.25rem;
}

/* Responsive header padding */
@media (max-width: 768px) {
  #header {
    padding: 10px 0;
  }
  #header.shrink {
    padding: 4px 0 !important;
  }
  #header .logo h1 {
    font-size: 1.2rem;
  }
  #header.shrink .logo h1 {
    font-size: 1rem;
  }
}

/* Header Styling  */

#header .logo img {
    max-height: 50px;

}

#header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Χρήση flexbox για να εμφανίζονται τα στοιχεία σε μία γραμμή */
    gap: 15px; /* Απόσταση μεταξύ των στοιχείων */
}

#header nav ul li {
    margin: 0;
}

#header nav ul li a {
    color: #151515;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

#header nav ul li a:hover,
#header nav ul li a.active {
    color: #5d6b50; /* Χρώμα για hover και active */
}

.nav-link {
    color: #151515 !important;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav .nav-link:hover
{
    color: #696969 !important;

}

/**Search Bar Styles */

.search-bar .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar .form-control {
    border: none;
    padding-left:5px;
}

.search-bar .btn {
    border: none;
    padding: 10px 20px;
}

.search-form {
    max-width: 550px;
    width: 100%;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    flex: 1 1 600px;
}
.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    background: #DCE0D7;
}
.search-input::placeholder {
    color: #888;
    opacity: 1;
}
@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
        padding: 0 10px;
    }
    .search-input {
        font-size: 0.95rem;
    }
    .search-icon {
        left: 10px;
        font-size: 1rem;
    }
}


.search-dropdown-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 100%;
}
.search-dropdown-results .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    transition: background 0.15s;
}

.search-dropdown-results .dropdown-item:last-child {
    border-bottom: none;
}
.search-dropdown-results .dropdown-item:hover {
    background: #f8f9fa;
}
.search-dropdown-results .dropdown-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    background: #f2f2f2;
}
.search-dropdown-results .dropdown-title {
    font-weight: 500;
    color: #222;
    font-size: 1rem;
}
.search-dropdown-results .dropdown-price {
    margin-left: auto;
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
}



/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #7A8769;
    transform: translateX(5px);
}

/* Main Content */
main.main-content {
    min-height: calc(100vh - 76px);
    padding-top: 130px; /* Space for fixed header */
    padding-bottom: 1.5rem;
}

/* Desktop only - fixed header needs padding */
@media (min-width: 992px) {
    main.main-content {
        padding-top: 152px;
    }
}

/* Mobile - sticky header, less padding needed */
@media (max-width: 991px) {
    main.main-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-header {
    background-color: #ffffff3a;
    color: #262729;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    border-radius: 0.75rem 0.75rem 0 0 !important;
}

.card-body {
    padding: 0.5rem;
    background-color: #ffffff3a;

}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #7A8769;
    border-color: #7A8769;
}

.btn-primary:hover {
    background-color: #6a7559;
    border-color: #6a7559;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: #7A8769;
    border-color: #7A8769;
}

.btn-outline-primary:hover {
    background-color: #7A8769;
    border-color: #7A8769;
    color: #fff;
}

/* Mini-cart dropdown buttons */
.mini-cart-dropdown .btn-primary,
.mini-cart-footer .btn-primary,
#offcanvasMiniCart .btn-primary {
    background-color: #7A8769 !important;
    border-color: #7A8769 !important;
}

.mini-cart-dropdown .btn-outline-primary,
.mini-cart-footer .btn-outline-primary,
#offcanvasMiniCart .btn-outline-primary {
    color: #7A8769;
    border-color: #7A8769;
}

.mini-cart-dropdown .btn-outline-primary:hover,
.mini-cart-footer .btn-outline-primary:hover,
#offcanvasMiniCart .btn-outline-primary:hover {
    background-color: #7A8769;
    border-color: #7A8769;
    color: #fff;
}

/* Mini-cart badge */
#mini-cart-container .badge,
#mini-cart-container-mobile .badge {
    background-color: #0D0E0B !important;
}

/* Mini-cart spinner - primary color */
.mini-cart-dropdown .spinner-border,
#offcanvasMiniCart .spinner-border {
    color: #7A8769 !important;
}

/* Mini-cart text-primary harmonization */
.mini-cart-dropdown .text-primary,
.mini-cart-footer .text-primary,
#offcanvasMiniCart .text-primary,
.cart-item .text-primary {
    color: #7A8769 !important;
}

/* Mini-cart remove button styling */
.mini-cart-dropdown .mini-cart-remove,
.mini-cart-footer .mini-cart-remove,
#offcanvasMiniCart .mini-cart-remove,
.cart-item .mini-cart-remove {
    color: #7A8769;
    border-color: #7A8769;
    background-color: transparent;
}

.mini-cart-dropdown .mini-cart-remove:hover,
.mini-cart-footer .mini-cart-remove:hover,
#offcanvasMiniCart .mini-cart-remove:hover,
.cart-item .mini-cart-remove:hover {
    background-color: #7A8769;
    border-color: #7A8769;
    color: #fff;
}

/* Mini-cart offcanvas title */
#offcanvasMiniCart .offcanvas-title {
    color: #7A8769;
}

/* Mini-cart border accents */
.mini-cart-dropdown,
#offcanvasMiniCart {
    border-color: rgba(122, 135, 105, 0.2) !important;
}

.mini-cart-footer {
    background-color: rgba(122, 135, 105, 0.08) !important;
}

/* Product page gallery - primary color harmonization */
.gallery-thumb.border-primary {
    border-color: #7A8769 !important;
    box-shadow: 0 0 0 2px rgba(122, 135, 105, 0.3);
}

.gallery-thumb:hover {
    border-color: #7A8769 !important;
}

/* Product page carousel controls */
#relatedProductsCarousel .carousel-control-prev-icon,
#relatedProductsCarousel .carousel-control-next-icon {
    background-color: #7A8769;
    border-radius: 50%;
    padding: 1rem;
}

#lightboxCarousel .carousel-control-prev-icon,
#lightboxCarousel .carousel-control-next-icon {
    background-color: rgba(122, 135, 105, 0.8);
    border-radius: 50%;
    padding: 1rem;
}

/* Product alert info styling */
.product-main-info .alert-info {
    background-color: rgba(122, 135, 105, 0.1);
    border-color: #7A8769;
    color: #5d6b50;
}

.product-main-info .alert-info i {
    color: #7A8769;
}

.btn-success {
    background-color: #037e7e;
    border-color: #037e7e;
}

.btn-success:hover {
    background-color: #059c9c;
    border-color: #059c9c;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

.btn-dark {
    background-color: #251902;
    border-color: #ac7707;
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #7A8769;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color:#12dada;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #12dada;
}

/* Tables */
.table {
    border-radius: 0.75rem;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Custom Utilities */
.shadow-custom {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


.rounded-custom {
    border-radius: 0.75rem !important;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .card {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .alert {
        display: none !important;
    }

    body {
        background-color: white !important;
    }
}

/* Carousel image hover effect */
.owl-carousel .item img {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.owl-carousel .item:hover img {
  transform: scale(1.08);
  z-index: 2;
}


/* Category Carousel Styling */
.category-carousel {
  position: relative;
  padding: 20px 0;
}

.category-carousel .owl-stage-outer {
  border-radius: 15px;
  padding: 0 30px;
  overflow: hidden;
}

.category-carousel .item {
  padding: 4px;
}

.category-carousel .card {
  height: 140px; /* reduced from previous value for a more compact look */
  min-height: 140px;
  max-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 18px;
  margin-bottom: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.category-carousel .card-img-top {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  margin: 12px auto 4px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-carousel .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.category-carousel .card-title {
  font-size: 0.98rem;
  margin-top: 2px;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}


/* Dots */
.category-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.category-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.category-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(139, 101, 81, 0.4);
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.category-carousel .owl-dots .owl-dot.active span,
.category-carousel .owl-dots .owl-dot:hover span {
  background: rgba(139, 101, 81, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-carousel .owl-stage-outer {
    padding: 0 20px;
  }

  .category-carousel .owl-nav button.owl-prev {
    left: -10px;
  }

  .category-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}

/* Κυκλικό πλαίσιο για εικόνα κατηγορίας */
.category-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 -2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid #fff;
    position: relative;
}

.category-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A8769 0%, #5d6b50 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-circle:hover::before {
    opacity: 1;
}

.category-circle:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(122, 135, 105, 0.25),
        0 8px 16px rgba(93, 107, 80, 0.15);
}

.category-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-circle:hover .category-img-circle {
    transform: scale(1.1);
}

/* Category title styling */
.category-title {
    padding: 8px 4px;
    transition: all 0.3s ease;
}

.category-title .fw-bold {
    font-size: 0.95rem;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.category-carousel .item:hover .category-title .fw-bold {
    color: #7A8769;
}

.category-title .text-muted {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Category carousel container */
.category-carousel-container {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .category-circle {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .category-circle {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    .category-title .fw-bold {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .category-circle {
        width: 90px;
        height: 90px;
    }
}

/** Mini Cart Styles */
        .max-height-300 {
            max-height: 300px;
        }

        .cart-item:hover {
            background-color: #f8f9fa;
        }

        .remove-from-cart {
            width: 30px;
            height: 30px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #miniCartDropdown .badge {
            font-size: 0.7em;
            min-width: 18px;
            height: 18px;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }

        /* Footer Styles */
            .site-footer {
                background-color: #1f2937;
                color: #f3f4f6;
                padding: 3rem 0 1rem;
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1.5rem;
            }

            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                margin-bottom: 3rem;
            }

            .footer-section h3 {
                color: #fff;
                margin-bottom: 1.5rem;
                font-size: 1.25rem;
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li {
                margin-bottom: 0.75rem;
            }

            .footer-links a {
                color: #d1d5db;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer-links a:hover {
                color: #fff;
            }

            .social-links {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
            }

            .social-links a {
                color: #d1d5db;
                font-size: 1.5rem;
                transition: color 0.3s ease;
            }

            .social-links a:hover {
                color: #fff;
            }

            .footer-bottom {
                text-align: center;
                padding-bottom: 1.5rem;
                border-bottom: 1px solid rgba(225, 225, 225, 0.7);
                font-size: 0.875rem;
                color: #9ca3af;
            }
            
            /* Footer copyright text */
            .footer-container .d-flex p {
                font-size: 0.875rem;
            }

            /* Footer Mobile - 2 columns */
            @media (max-width: 767px) {
                .footer-content {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1.5rem;
                }
                
                .footer-section {
                    text-align: center;
                }
                
                .footer-section h3 {
                    font-size: 1rem;
                    margin-bottom: 1rem;
                }
                
                .footer-links li {
                    margin-bottom: 0.5rem;
                }
                
                .footer-links a {
                    font-size: 0.875rem;
                }
                
                .footer-section p {
                    font-size: 0.875rem;
                }
                
                .social-links {
                    justify-content: center;
                }
                
                .footer-logo {
                    display: flex !important;
                    justify-content: center;
                }
                
                .footer-logo img {
                    max-width: 144px !important;
                    height: auto !important;
                }
                
                /* Copyright text mobile */
                .footer-container .d-flex {
                    flex-direction: column;
                    text-align: center;
                    gap: 0.25rem;
                }
                
                .footer-container .d-flex p {
                    font-size: 0.75rem;
                }
            }
            
            /* Footer Extra Small Mobile */
            @media (max-width: 480px) {
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }
                
                .footer-logo img {
                    max-width: 120px;
                }
                
                .footer-section h3 {
                    font-size: 0.9rem;
                }
                
                .footer-links a {
                    font-size: 0.8rem;
                }
                
                .footer-section p {
                    font-size: 0.8rem;
                }
                
                .social-links a {
                    font-size: 1.25rem;
                }
                
                /* Copyright text extra small */
                .footer-container .d-flex p {
                    font-size: 0.65rem;
                }
            }

            /* Newsletter Footer Form */
            .newsletter-footer-form {
                max-width: 42%; /* 40% μικρότερο */
                margin-left: auto;
                margin-right: auto;
            }

            .newsletter-footer-form .form-control {
                background-color: #DCE0D7;
            }

            .newsletter-footer-form .btn-primary {
                background-color: #AFB8A3;
                border-color: #AFB8A3;
            }

            .newsletter-footer-form .btn-primary:hover {
                background-color: #9aa68e;
                border-color: #9aa68e;
            }

            /* Newsletter Mobile */
            @media (max-width: 767px) {
                .newsletter-footer-form {
                    max-width: 100%;
                    padding: 0 1rem;
                }
                
                .newsletter-footer-form .input-group {
                    flex-direction: column;
                    gap: 0.5rem;
                }
                
                .newsletter-footer-form .form-control {
                    border-radius: 0.375rem !important;
                    width: 100%;
                }
                
                .newsletter-footer-form .btn-primary {
                    border-radius: 0.375rem !important;
                    width: 100%;
                }
            }

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1200;
  background: #f29e17;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
#scrollToTopBtn:hover {
  background: #b97912;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}


#featured-products-section {
  margin-bottom: 1.5rem;
}

#featured-products-section .container {
  background: rgba(252, 252, 252, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#offers-section {
  background: rgba(252, 252, 252, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

#product-feature-section {
  margin-bottom: 1.5rem;
}

#product-feature-section .container {
  background: rgba(252, 252, 252, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#about-us-section {
  margin-bottom: 1.5rem;
}

#about-us-section .container {
  background: rgba(252, 252, 252, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#brands-section {
  background: rgba(252, 252, 252, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

#brands-section .container {
  background: transparent;
}

/* Custom slider transitions - moved to slider-hero.css */
/*GDPR & Cookies Policy Page Styling */
    .cookies-policy .card-title {
        color: #7A8769 !important;
    }
    .cookies-policy .card-title i {
        color: #7A8769;
    }
    .cookies-policy h1 {
        color: #5d6b50;
    }
    .cookies-policy .alert-custom {
        background-color: rgba(122, 135, 105, 0.1);
        border-color: #7A8769;
        color: #5d6b50;
    }
    .cookies-policy .alert-custom .alert-link {
        color: #5d6b50;
        font-weight: bold;
    }
    .cookies-policy .card-highlight {
        border-color: #7A8769 !important;
        border-width: 2px;
    }
    .cookies-policy .icon-primary {
        color: #7A8769;
    }
    .cookies-policy a {
        color: #7A8769;
    }
    .cookies-policy a:hover,
    .cookies-policy a:focus {
        color: #5d6b50;
    }
    .cookies-policy .table-cookies th {
        background-color: rgba(122, 135, 105, 0.15);
        color: #5d6b50;
    }
    .cookies-policy .badge-essential {
        background-color: #7A8769;
        color: white;
    }
    .cookies-policy .badge-analytics {
        background-color: #5d6b50;
        color: white;
    }
    .cookies-policy .badge-marketing {
        background-color: #8b9a7a;
        color: white;
    }

/* Privacy Policy Page Styling */
    .privacy-policy .card-title {
        color: #7A8769 !important;
    }
    .privacy-policy .card-title i {
        color: #7A8769;
    }
    .privacy-policy h1 {
        color: #5d6b50;
    }
    .privacy-policy .alert-custom {
        background-color: rgba(122, 135, 105, 0.1);
        border-color: #7A8769;
        color: #5d6b50;
    }
    .privacy-policy .alert-custom .alert-link {
        color: #5d6b50;
        font-weight: bold;
    }
    .privacy-policy .card-highlight {
        border-color: #7A8769 !important;
        border-width: 2px;
    }
    .privacy-policy .icon-primary {
        color: #7A8769;
    }
    .privacy-policy a {
        color: #7A8769;
    }
    .privacy-policy a:hover,
    .privacy-policy a:focus {
        color: #5d6b50;
    }