/*
Theme Name: HK Deals Guru
Description: Hong Kong deals and offers website inspired by marktguru.de
Version: 1.3
Author: Kiro
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Mobile Header Styles */
.mobile-header {
    display: none;
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Search Expanded State */
.mobile-header.search-expanded .mobile-logo,
.mobile-header.search-expanded .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
}

.mobile-header.search-expanded .mobile-search-container {
    flex: 1;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1001;
}

.mobile-header.search-expanded .mobile-search-input-wrapper {
    border-radius: 8px;
    border-color: #07aae7;
    box-shadow: 0 4px 12px rgba(7, 170, 231, 0.2);
    height: 80px;
}

.mobile-header.search-expanded .mobile-search-input {
    font-size: 22px;
    padding: 0 12px;
    margin: 17px 0px 0px 0;
    height: 22px;
    box-sizing: border-box;
}

.mobile-header.search-expanded .mobile-search-input::placeholder {
    font-size: 22px;
}

.mobile-header.search-expanded .mobile-search-icon {
    font-size: 22px;
    margin-top: 17px;
    margin-left: 12px;
}

.mobile-header.search-expanded {
    padding-top: 0;
}

/* Search Backdrop */
.mobile-search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
}

.mobile-header.search-expanded .mobile-search-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-logo {
    flex-shrink: 0;
}

.mobile-logo img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.mobile-search-container {
    flex: 1;
    max-width: calc(100% - 120px);
    position: relative;
}

.mobile-search-form {
    width: 100%;
}

.mobile-search-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 0;
    height: 44px;
    position: relative;
    z-index: 999;
}

.mobile-search-icon {
    color: #999;
    margin-left: 12px;
    font-size: 14px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
    border-radius: 20px;
}

.mobile-search-input::placeholder {
    color: #999;
    font-size: 14px;
}

/* Mobile Search Suggestions */
.mobile-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

/* Enhanced suggestions when search is expanded */
.mobile-header.search-expanded .mobile-search-suggestions {
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    border-color: #07aae7;
}

.mobile-search-container {
    position: relative;
}

.mobile-search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.mobile-search-suggestions .suggestion-item:hover,
.mobile-search-suggestions .suggestion-item.active {
    background-color: #f8f9fa;
}

.mobile-search-suggestions .suggestion-item img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.mobile-search-suggestions .suggestion-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 4px;
    margin-right: 10px;
    color: #666;
    font-size: 14px;
}

.mobile-search-suggestions .suggestion-item .suggestion-content {
    flex: 1;
    min-width: 0;
}

.mobile-search-suggestions .suggestion-item .suggestion-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.mobile-search-suggestions .suggestion-item .suggestion-subtitle {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.mobile-search-suggestions .suggestion-item .suggestion-price {
    font-weight: bold;
    color: #07aae7;
    margin-left: 8px;
    font-size: 12px;
}

.mobile-search-suggestions .suggestion-item .suggestion-type-badge {
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    text-transform: uppercase;
    margin-left: 8px;
    color: white;
}

.mobile-search-suggestions .section-header {
    padding: 6px 12px;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    border-bottom: 1px solid #e9ecef;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 80px 0 20px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Language Switcher */
.mobile-language-switcher {
    padding: 0 20px 30px 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.mobile-language-switcher h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-lang-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.mobile-lang-item.active {
    background: #07aae7;
    color: white;
}

.mobile-lang-item .lang-flag {
    font-size: 18px;
    margin-right: 12px;
}

.mobile-lang-item .lang-name {
    flex: 1;
    font-weight: 500;
}

.mobile-lang-item .fa-check {
    color: #28a745;
    font-size: 14px;
}

.mobile-lang-item.active .fa-check {
    color: white;
}

/* Mobile Navigation */
.mobile-navigation {
    padding: 0 20px;
}

.mobile-navigation h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.mobile-nav-item.active {
    background: #07aae7;
    color: white;
}

.mobile-nav-item i:first-child {
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #07aae7;
}

.mobile-nav-item.active i:first-child {
    color: white;
}

.mobile-nav-item span {
    flex: 1;
}

.mobile-nav-item i:last-child {
    font-size: 12px;
    color: #999;
}

.mobile-nav-item.active i:last-child {
    color: white;
}

/* Desktop Header */
.desktop-header {
    display: block;
}

/* Header Top Banner */
.header-top-banner {
    background: #07aae7;
    padding: 0px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

.container-full {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Promo Chips */
.promo-chips {
    display: flex;
    gap: 15px;
    align-items: center;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.chip i {
    font-size: 14px;
    color: #fff;
}

.chip:nth-child(1) i {
    color: #ffeb3b;
}

.chip:nth-child(2) i {
    color: #ffc107;
}

.chip:nth-child(3) i {
    color: #ff9800;
}

.chip:nth-child(4) i {
    color: #e91e63;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-content: flex-end;
    align-items: flex-end;
    flex: 1;
}

.location-selector {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}

.location-selector i {
    margin-right: 5px;
    color: #07aae7;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-item {
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.lang-item.active {
    background: #07aae7;
    color: white;
}

/* Header Main */
.header-main {
    padding: 15px 0;
    background: white;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 45px;
}

/* Search Container - Centered and Larger */
.search-container {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #07aae7;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(7, 170, 231, 0.1);
}

.search-icon {
    color: #999;
    margin-left: 15px;
    font-size: 16px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

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

.search-button {
    background: #07aae7;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 0 23px 23px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.search-button:hover {
    background: #0698d1;
}

/* User Actions */
.user-actions {
    flex-shrink: 0;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.user-link:hover {
    background: #f8f9fa;
    color: #07aae7;
}

.user-link i {
    font-size: 18px;
}

/* Navigation Simple */
.main-navigation {
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 0;
}

.nav-menu-simple {
    display: flex;
}

.nav-item {
    width: 33%;
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 15px 25px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-item:hover,
.nav-item.active {
    color: #07aae7;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 18px;
}

.nav-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Header Photo */
.header-photo {
    flex-shrink: 0;
}

/* Container */
.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Banner */
.hero-banner {
    background: #07aae7;
    color: #04295b;
    padding: 32px 40px;
    margin: 20px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 46%;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-image {
    flex-shrink: 0;
}

/* Section Styles */
.content-section {
    margin: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.view-all-link {
    color: #07aae7;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* ============================================
   PRODUCT CARD - DESKTOP STYLES (Card View)
   ============================================ */
.product-card {
    background: white;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.product-card .product-card-link {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-decoration: none !important;
    color: inherit;
    height: 100%;
}

.product-card .product-image-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-card .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card .product-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 30px;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.product-card .product-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-brand {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.product-card .product-price-row {
    margin-top: auto;
}

.product-card .price-current {
    font-size: 18px;
    font-weight: bold;
    color: #07aae7;
}

.product-card .price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Desktop: Hide mobile-only elements */
.product-card .product-badges,
.product-card .product-validity,
.product-card .product-arrow {
    display: none;
}

.product-card .product-store-name {
    display: block;
    font-size: 13px;
    color: #888;
    margin: 4px 0;
    text-align: left;
}

/* Desktop: Show discount badge and promotion ribbon side by side */
.product-card .product-badges-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.product-card .promotion-ribbon {
    background: #ffc107;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    width: auto;
}

.product-card .discount-badge {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    width: auto;
}

.product-card .product-store {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.product-card .product-store img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Legacy class support */
.product-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.product-brand {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #07aae7;
    margin-bottom: 5px;
}

.product-unit-price {
    font-size: 12px;
    color: #999;
}

/* Prospekt Grid */
.prospekt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.prospekt-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.prospekt-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prospekt-info {
    padding: 20px;
    text-align: center;
}

.prospekt-store {
    color: #07aae7;
    font-weight: bold;
    margin-bottom: 5px;
}

.prospekt-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.prospekt-dates {
    color: #666;
    font-size: 14px;
}

/* Category Links */
.category-links {
    text-align: left;
    line-height: 1.8;
}

.category-link {
    color: #07aae7;
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px;
    transition: color 0.3s;
}

.category-link:hover {
    color: #0698d1;
    text-decoration: underline;
}

/* Store Filter */
.store-filter {
    margin: 30px 0;
}

.store-filter h3 {
    margin-bottom: 15px;
    color: #333;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.store-link {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.store-link:hover {
    background: #07aae7;
    color: white;
}

/* Newsletter CTA */
.newsletter-cta {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-image {
    position: relative;
}

.newsletter-form-section {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.newsletter-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.newsletter-logo {
    flex-shrink: 0;
    margin-left: 20px;
}

.newsletter-subtitle {
    font-size: 18px;
    color: #07aae7;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.newsletter-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.benefit-item i {
    color: #07aae7;
    margin-right: 10px;
    font-size: 16px;
}

.newsletter-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #07aae7;
}

.newsletter-submit {
    width: 100%;
    background: #07aae7;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit:hover {
    background: #0698d1;
}

.newsletter-privacy {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.newsletter-privacy p {
    margin-bottom: 8px;
}

/* Simple Footer */
.site-footer.simple-footer {
    background: #d0d5db;
    color: #333;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
}

.footer-main-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-main-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.footer-main-links a:hover {
    text-decoration: underline;
}

.footer-main-links .divider {
    color: #666;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
}

@media (max-width: 768px) {
    .site-footer.simple-footer {
        padding: 20px 15px;
        margin-bottom: 60px;
    }

    .footer-main-links {
        gap: 6px;
    }

    .footer-main-links a {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }

    .desktop-header {
        display: none;
    }

    .header-main .container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .search-container {
        margin: 0;
        max-width: 100%;
    }

    .main-menu {
        flex-direction: column;
        width: 100%;
    }

    .main-menu a {
        padding: 15px 20px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-steps {
        flex-direction: column;
        gap: 15px;
    }

    .products-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-left: -20px;
        margin-right: -20px;
        background: #fff;
    }

    .products-grid .product-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .content-section {
        margin: 0 -20px;
        padding: 16px;
        background: #fff;
        border-top: 8px solid #f5f5f5;
    }

    .content-section:first-of-type {
        border-top: none;
    }

    .content-section .description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .category-links {
        margin-bottom: 16px;
        font-size: 13px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }

    .category-links a {
        display: inline-block;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 17px;
    }

    .view-all-link {
        font-size: 13px;
    }

    /* Hero banner mobile - full width */
    .hero-banner {
        margin: 0 -20px 0;
        border-radius: 0;
        padding: 20px;
    }

    /* Remove products-grid negative margin inside content-section */
    .content-section .products-grid {
        margin-left: -16px;
        margin-right: -16px;
    }

    /* Newsletter Mobile Responsiveness */
    .newsletter-cta {
        padding: 40px 0;
        margin-top: 40px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    /* Reorder elements: form first, then image */
    .newsletter-form-section {
        order: 1;
        padding: 30px 20px;
        margin: 0 10px;
    }

    .newsletter-image {
        order: 2;
        margin: 0 20px;
    }

    .newsletter-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .newsletter-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .newsletter-logo {
        margin-left: 0;
        margin-top: 10px;
    }

    .newsletter-subtitle {
        font-size: 16px;
    }

    .newsletter-description {
        font-size: 14px;
    }

    .newsletter-form {
        margin-bottom: 20px;
    }

    .newsletter-input {
        width: 100%;
        margin-bottom: 15px;
    }

    .newsletter-submit {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .newsletter-privacy {
        font-size: 12px;
    }

    .newsletter-privacy p {
        margin: 0;
        line-height: 1.4;
    }

    /* Filters Section Mobile Responsiveness */
    .filters-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .filters-section > div {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .filter-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .filter-group label {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 14px;
        color: #333;
    }

    .filter-group select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        background: white;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
    }

    .filter-group select:focus {
        outline: none;
        border-color: #07aae7;
        box-shadow: 0 0 0 3px rgba(7, 170, 231, 0.1);
    }

    #apply-filters {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        margin-top: 10px;
        background: #07aae7;
        transition: all 0.3s ease;
    }

    #apply-filters:hover {
        background: #0691c7;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(7, 170, 231, 0.3);
    }

    /* Active Filters Mobile */
    .active-filters {
        margin-bottom: 20px;
        padding: 0;
    }

    .active-filters span:first-child {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }

    .filter-tag {
        display: inline-block;
        padding: 6px 10px;
        margin: 2px 5px 2px 0;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    .filter-tag a {
        margin-left: 8px;
        font-weight: bold;
        font-size: 14px;
    }

    /* Archive Header Mobile */
    .archive-header {
        text-align: left;
        margin-bottom: 30px;
    }

    .archive-header h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .archive-header p {
        font-size: 14px;
        color: #666;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin: 40px 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 20px;
    color: #07aae7;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.mission-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.about-content {
    background: #f8f9fa;
    border-radius: 15px;
    margin: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #07aae7;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.team-role {
    color: #07aae7;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.5;
}

.contact-cta {
    background: #07aae7;
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-item i {
    font-size: 20px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h1 {
        font-size: 32px;
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green {
    color: #07aae7;
}

.bg-green {
    background-color: #07aae7;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Product Card Improvements */
.product-card {
    text-decoration: none !important;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none !important;
    border-color: #ddd;
}

.product-card a {
    text-decoration: none !important;
    color: inherit;
}

.product-card .product-name {
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.product-card .product-brand {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-card .product-price {
    font-weight: bold;
    color: #07aae7;
    font-size: 18px;
    margin: 8px 0;
}

.product-card .product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

.product-card .product-promotion {
    font-size: 11px;
    color: #dc3545;
    margin-top: 3px;
    font-weight: 500;
}

.product-card .product-store {
    font-size: 12px;
    color: #07aae7;
    margin-top: 5px;
}

/* Search Suggestions Styling */
.search-suggestions {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover,
.suggestion-item.active {
    background-color: #f8f9fa !important;
}

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

/* Single Product Page Styling */
.product-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Price section - single definition */
.price-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: #07aae7;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Breadcrumb Styling */
.breadcrumb {
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #07aae7;
    text-decoration: none;
}

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

/* Related Products Section */
.related-products-section {
    margin: 60px 0;
}

.related-products-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

/* Product Meta Styling */
.product-meta {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
}

.product-categories a {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 5px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
}

.product-categories a:hover {
    background: #dee2e6;
    text-decoration: none;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.error {
    text-align: center;
    padding: 40px;
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
}

/* Owl Carousel Styling */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: #07aae7 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px !important;
}

.owl-carousel .owl-nav button.owl-next {
    right: -20px !important;
}

.owl-carousel .owl-nav button:hover {
    background: #0698d1 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.store-section {
    position: relative;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .store-section {
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
        background: #fff;
        border-top: 8px solid #f5f5f5;
    }

    .store-section .section-header {
        padding: 12px 16px;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }

    .store-section .section-header-left {
        gap: 10px;
    }

    .store-section .store-logo-img {
        width: 40px;
        height: 40px;
    }

    .store-section .section-title {
        font-size: 16px;
    }

    .store-products-slider .product-card {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.owl-item-wrapper {
    padding: 0;
}

/* Pagination Styling */
.pagination-wrapper {
    margin: 40px 0;
    text-align: center;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover {
    background: #07aae7;
    color: white;
    border-color: #07aae7;
}

.pagination-wrapper .page-numbers.current {
    background: #07aae7;
    color: white;
    border-color: #07aae7;
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
    font-weight: 500;
}

/* Store and Brand Page Styling */
.store-info h4,
.brand-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.product-count {
    color: #666;
    font-size: 14px;
}

.view-store,
.view-brand {
    color: #07aae7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-store:hover,
.view-brand:hover {
    text-decoration: underline;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .product-single {
        padding: 0px;
    }

    .current-price {
        font-size: 24px;
    }

    .price-section {
        padding: 15px;
    }

    .store-section {
        padding: 0 15px;
    }

    .owl-carousel .owl-nav {
        display: none !important;
    }

    .pagination-wrapper .page-numbers {
        padding: 6px 10px;
        margin: 0 2px;
        font-size: 14px;
    }
}

/* Archive and Filter Styles */
.archive-header {
    margin: 40px 0;
}

.archive-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.archive-header p {
    color: #666;
    font-size: 16px;
}

.filters-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.active-filters {
    margin-bottom: 15px;
}

.active-filters span {
    font-weight: 500;
    margin-right: 10px;
}

.filter-tag {
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 14px;
}

.filter-tag.brand {
    background: #e3f2fd;
    color: #1976d2;
}

.filter-tag.store {
    background: #e8f5e8;
    color: #2e7d32;
}

.filter-tag.category {
    background: #fff3e0;
    color: #f57c00;
}

.filter-tag a {
    margin-left: 5px;
    text-decoration: none;
    color: inherit;
}

.filters-section > div {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 500;
    margin-right: 10px;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#apply-filters {
    background: #07aae7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

#apply-filters:hover {
    background: #07aae7;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
}

.no-products i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-products h3 {
    margin-bottom: 10px;
    color: #666;
}

.no-products p {
    color: #999;
}

/* Featured Stores Section */
.featured-stores {
    margin: 60px 0;
}

.featured-stores h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.store-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.store-card:hover {
    transform: translateY(-2px);
}

.store-logo {
    margin-bottom: 15px;
}

.store-logo img {
    max-width: 80px;
    height: auto;
}

.store-card h3 {
    margin-bottom: 10px;
}

.store-card p {
    color: #666;
    margin-bottom: 15px;
}

.store-card a {
    color: #07aae7;
    text-decoration: none;
    font-weight: 500;
}

.store-card a:hover {
    text-decoration: underline;
}

/* Category Page Styles */
.category-header {
    margin: 40px 0;
    text-align: center;
}

.category-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.category-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
}

.category-meta {
    margin-top: 20px;
    color: #666;
}

.category-meta span {
    background: #07aae7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.related-categories {
    margin: 60px 0;
}

.related-categories h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.related-categories > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.related-categories a {
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-categories a:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.related-categories a i {
    color: #07aae7;
}

.related-categories a span {
    background: #e9ecef;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Store Page Styles */
.store-header {
    margin: 40px 0;
    text-align: center;
}

.store-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.store-description {
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #666;
    font-size: 16px;
}

.store-meta {
    margin-top: 20px;
    color: #666;
}

.store-meta span,
.store-meta a {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;
}

.store-meta span:first-child {
    background: #07aae7;
    color: white;
}

.store-meta a[href^='http'] {
    background: #f8f9fa;
    color: #495057;
}

.store-meta span:not(:first-child) {
    background: #e9ecef;
    color: #495057;
}

.store-meta a[href^='tel'] {
    background: #e9ecef;
    color: #495057;
}

/* Store Brands and Products Sections */
.store-brands-section,
.store-products-section,
.store-categories-section {
    margin: 40px 0;
}

.store-brands-section h2,
.store-products-section h2,
.store-categories-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.store-brands-section .category-links {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.brand-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo img {
    max-width: 60px;
    height: auto;
}

.brand-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    background: #f8f9fa;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.category-tag:hover {
    background: #07aae7;
    color: white;
    text-decoration: none;
}

.category-tag .count {
    color: #666;
    font-size: 12px;
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper > div {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-wrapper a {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-wrapper a[style*='background: #07aae7'] {
    background: #07aae7 !important;
    color: white !important;
}

.pagination-wrapper a[style*='background: #f8f9fa'] {
    background: #f8f9fa !important;
    color: #333 !important;
}

.pagination-wrapper a[style*='background: #333'] {
    background: #333 !important;
    color: white !important;
    font-weight: bold !important;
}

.pagination-wrapper span {
    padding: 8px 4px;
    color: #666;
}

/* Responsive Design for Archive Pages */
@media (max-width: 768px) {
    .filters-section > div {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .stores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .brands-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-item {
        flex-direction: column;
        text-align: center;
    }

    .related-categories > div {
        flex-direction: column;
        align-items: center;
    }

    .store-meta span,
    .store-meta a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}

/* Updated Pagination Styles */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper > div {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-page,
.pagination-prev,
.pagination-next {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-page {
    background: #f8f9fa;
    color: #333;
}

.pagination-page:hover {
    background: #e9ecef;
    color: #333;
}

.pagination-current {
    background: #333 !important;
    color: white !important;
    font-weight: bold;
}

.pagination-prev,
.pagination-next {
    background: #07aae7;
    color: white;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #0698d1;
    color: white;
}

.pagination-dots {
    padding: 8px 4px;
    color: #666;
}

/* Store Logo Styling */
.store-logo {
    margin-bottom: 20px;
}

.store-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

/* Additional responsive fixes */
@media (max-width: 768px) {
    .pagination-wrapper > div {
        gap: 3px;
    }

    .pagination-page,
    .pagination-prev,
    .pagination-next {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* 404 Page Styles */
.error-404-page {
    padding: 60px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    max-width: 600px;
}

.error-illustration {
    margin-bottom: 40px;
    position: relative;
}

.error-illustration-404 {
    font-size: 120px;
    font-weight: bold;
    color: #07aae7;
    margin-bottom: 20px;
    position: relative;
}

.error-illustration-404 .error-zero-container {
    display: inline-block;
    position: relative;
}

.error-illustration-404 .error-zero {
    color: #ffc107;
}

.error-illustration-404 .fa-shopping-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #07aae7;
}

.floating-badge {
    position: absolute;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 20px;
    left: 20px;
    background: #dc3545;
}

.floating-badge.badge-2 {
    top: 40px;
    right: 30px;
    background: #07aae7;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 60px;
    left: 40px;
    background: #ffc107;
    color: #212529;
    animation-delay: 2s;
}

.floating-badge.badge-4 {
    bottom: 20px;
    right: 20px;
    background: #17a2b8;
    animation-delay: 0.5s;
}

.error-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.error-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-search {
    margin: 40px 0;
}

.error-search form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.error-search input[type='search'] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #07aae7;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.error-search button {
    background: #07aae7;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

.error-actions {
    margin: 40px 0;
}

.error-action-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.error-action-button i {
    margin-right: 8px;
}

.error-action-button.home {
    background: #07aae7;
    color: white;
}

.error-action-button.deals {
    background: #ffc107;
    color: #212529;
}

.popular-categories {
    margin-top: 50px;
}

.popular-categories h3 {
    color: #333;
    margin-bottom: 20px;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-chips a {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fun-message {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #07aae7;
}

.fun-message p {
    margin: 0;
    color: #666;
    font-style: italic;
}

.fun-message i {
    color: #ffc107;
    margin-right: 8px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.error-actions .error-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-chips a:hover {
    background: #07aae7 !important;
    color: white !important;
    border-color: #07aae7 !important;
    transform: translateY(-2px);
}

.error-search button:hover {
    background: #0698d1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .error-illustration-404 {
        font-size: 80px !important;
    }

    .floating-badge {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }

    .error-actions {
        flex-direction: column;
        gap: 10px;
    }

    .error-actions .error-action-button {
        display: block !important;
        margin: 5px 0 !important;
    }

    .error-search form {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .error-search button {
        padding: 15px !important;
        border-radius: 8px !important;
    }
}

.store-card-featured {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.store-card-featured .store-logo {
    margin-bottom: 15px;
}

.store-card-featured .store-logo img {
    max-width: 80px;
    height: auto;
}

.store-card-featured h3 {
    margin-bottom: 10px;
}

.store-card-featured p {
    color: #666;
    margin-bottom: 15px;
}

.store-card-featured a {
    color: #07aae7;
    text-decoration: none;
    font-weight: 500;
}

.newsletter-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.discount-badge-large {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: #07aae7;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.discount-badge-large.badge-1 {
    top: 250px;
    left: 150px;
}

.discount-badge-large.badge-2 {
    top: 150px;
    right: 150px;
    animation-delay: 1s;
}

.discount-badge-large.badge-3 {
    bottom: 250px;
    left: 100px;
    animation-delay: 2s;
}

.newsletter-logo i {
    color: #07aae7;
    font-size: 32px;
}

.search-input-wrapper {
    position: relative;
}

#search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.hero-image img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.content-section .description {
    margin-bottom: 20px;
    color: #666;
}

.category-links {
    margin-bottom: 30px;
}

.store-section .section-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-section .store-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

.page-content {
    padding: 40px 0;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.about-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.about-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.about-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-icon .fa-search {
    color: #07aae7;
    font-size: 48px;
}

.mission-icon .fa-heart {
    color: #dc3545;
    font-size: 48px;
}

.mission-icon .fa-users {
    color: #17a2b8;
    font-size: 48px;
}

.feature-item .fa-check-circle {
    color: #07aae7;
}

.feature-item .fa-clock {
    color: #ffc107;
}

.feature-item .fa-mobile-alt {
    color: #6f42c1;
}

.feature-item .fa-shield-alt {
    color: #20c997;
}

.content-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-section .section-header p {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item .fa-envelope,
.contact-item .fa-phone,
.contact-item .fa-map-marker-alt {
    color: #07aae7;
}

.accessibility-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.accessibility-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.accessibility-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.compliance-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.compliance-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.compliance-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.help-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.help-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.help-content .faq-item {
    margin-bottom: 30px;
}

.help-content .faq-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.help-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.imprint-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.imprint-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.imprint-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.privacy-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.terms-content {
    max-width: 800px;
    line-height: 1.6;
    color: #666;
}

.terms-content h2 {
    color: #07aae7;
    margin: 30px 0 20px 0;
}

.terms-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.search-header {
    margin: 40px 0;
    text-align: center;
}

.search-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.search-header h1 .search-term {
    color: #07aae7;
}

.search-header h1 .search-term-no-results {
    color: #dc3545;
}

.search-again {
    margin: 20px 0;
}

.search-again form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.search-again input[type='search'] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
}

.search-again button {
    padding: 12px 25px;
    background: #07aae7;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

.results-info {
    margin: 30px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.results-info p {
    margin: 0;
    color: #666;
}

.results-info small {
    color: #07aae7;
}

.search-result-item {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-result-item h3 {
    margin: 0 0 10px 0;
}

.search-result-item h3 a {
    color: #333;
    text-decoration: none;
}

.result-meta {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.result-meta .post-type {
    background: #07aae7;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    text-transform: uppercase;
}

.result-meta .price {
    margin-left: 10px;
    font-weight: bold;
    color: #07aae7;
}

.result-excerpt {
    margin: 10px 0;
    color: #666;
}

.search-pagination {
    margin: 40px 0;
    text-align: center;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    margin: 40px 0;
}

.no-results .fa-search {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 15px;
    color: #666;
}

.no-results p {
    color: #999;
    margin-bottom: 30px;
}

.search-suggestions h4 {
    margin-bottom: 15px;
    color: #333;
}

.search-suggestions .suggestion-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-suggestions .suggestion-link {
    background: #e9ecef;
    color: #495057;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.browse-categories {
    margin: 60px 0;
    text-align: center;
}

.browse-categories h3 {
    margin-bottom: 20px;
    color: #333;
}

.browse-categories .category-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.browse-categories .category-link {
    background: #07aae7;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.browse-categories .category-link span {
    opacity: 0.8;
    margin-left: 5px;
}

.brand-header {
    margin: 40px 0;
    text-align: center;
}

.brand-header .brand-logo {
    margin-bottom: 20px;
}

.brand-header .brand-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

.brand-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.brand-header .brand-description {
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #666;
    font-size: 16px;
}

.brand-meta {
    margin-top: 20px;
    color: #666;
}

.brand-meta .product-count-badge {
    background: #07aae7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
}

.brand-meta .website-link {
    background: #f8f9fa;
    color: #495057;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    margin-right: 10px;
}

.brand-meta .country-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.brand-products-section {
    margin-top: 40px;
}

.brand-products-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.breadcrumb a {
    color: #07aae7;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.product-details-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 40px 0;
}

/* Product details layout is defined in single.php inline styles */

.product-image-section {
    position: relative;
    display: inline-block;
}

.product-image-section img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

.store-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 2px;
    z-index: 10;
}

.store-badge a {
    display: block;
    width: 100%;
    height: 100%;
}

.store-badge img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    border-radius: 50%;
}

.product-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #999;
}

.product-image-placeholder .fa-image {
    font-size: 60px;
}


.product-brand {
    margin-bottom: 15px;
}

.product-brand span {
    color: #666;
    font-size: 14px;
}

.product-brand a {
    color: #07aae7;
    text-decoration: none;
    font-weight: 500;
}

.product-store {
    margin-bottom: 20px;
}

.product-store span {
    color: #666;
    font-size: 14px;
}

.product-store a {
    color: #07aae7;
    text-decoration: none;
    font-weight: 500;
}

.price-section .price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 36px;
    font-weight: bold;
    color: #07aae7;
}

.old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.promotion-box {
    margin-bottom: 20px;
}

.promotion-box-inner {
    background: #fff9db;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #ffc107;
}

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

.promotion-label {
    background: #ffc107;
    color: #212529;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.promotion-tag {
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

.promotion-subtext {
    margin: 0;
    color: #6c757d;
    font-size: 12px;
}

.buy-product-container {
    margin-top: 20px;
}

.buy-product-btn {
    display: inline-block;
    background: #07aae7;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.buy-product-btn i {
    margin-left: 8px;
    font-size: 14px;
}

.product-categories {
    margin: 20px 0;
}

.product-categories a {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 5px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.related-products-section {
    margin: 60px 0;
}

.related-products-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.related-products-section p {
    color: #666;
    font-style: italic;
}

.product-card {
    position: relative;
}

/* Product badges container uses flex - styles defined above */

.product-card .product-image-placeholder {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-card .product-image-placeholder .fa-image {
    font-size: 30px;
}

.product-card .product-name {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1.3;
}

.product-card .product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.product-card .product-store {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.product-card .product-store img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card .product-store .store-name-badge {
    font-size: 10px;
    color: #07aae7;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Single Product Mobile Responsiveness */
@media (max-width: 768px) {
    .product-image-section img,
    .product-image-placeholder {
        max-width: 100%;
        height: auto;
    }

    .store-badge {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }


    .price-section {
        padding: 15px;
        margin: 20px 0;
    }

    .current-price {
        font-size: 28px;
    }

    .old-price {
        font-size: 18px;
    }

    .discount-badge {
        font-size: 14px;
        padding: 6px 12px;
    }

    .buy-product-btn {
        width: 100%;
        text-align: center;
        padding: 18px;
    }
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #07aae7;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.contact-submit {
    background: #07aae7;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit:hover {
    background: #07aae7;
}

.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: #07aae7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ===================================
   Footer Enhancements
   =================================== */

.footer-about {
    flex: 2;
    min-width: 250px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.75rem;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Breadcrumb Styles
   =================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #07aae7;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0590c7;
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* ===================================
   Store/Brand Header Enhancements
   =================================== */

.store-website,
.brand-website {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #07aae7;
    text-decoration: none;
    font-size: 0.9rem;
}

.store-website:hover,
.brand-website:hover {
    text-decoration: underline;
}

/* ===================================
   Search Results Enhancement
   =================================== */

.search-page-form {
    margin-bottom: 2rem;
}

.search-input-wrapper.large {
    max-width: 600px;
}

.search-input-wrapper.large .search-input {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1.1rem;
}

.search-button {
    background: #07aae7;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 0 23px 23px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.search-button:hover {
    background: #0698d1;
}

/* ===================================
   Pagination Styles
   =================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination a,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination a:hover,
.pagination-number:hover {
    background: #f5f5f5;
    border-color: #ddd;
    color: #07aae7;
}

.pagination-number.active {
    background: #07aae7 !important;
    border-color: #07aae7 !important;
    color: #fff !important;
}

.pagination-dots {
    color: #999;
    font-weight: bold;
}

.pagination-prev,
.pagination-next {
    color: #07aae7;
    font-weight: 600;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #07aae7;
    color: #fff;
}

/* ===================================
   Archive Grids (Categories, Stores, Brands)
   =================================== */

.categories-grid,
.stores-grid,
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.category-card,
.store-card,
.brand-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.category-card:hover,
.store-card:hover,
.brand-card:hover {
    border-color: #07aae7;
    box-shadow: 0 5px 15px rgba(7, 170, 231, 0.1);
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #07aae7;
    margin-bottom: 15px;
}

.category-card h3,
.store-card h3,
.brand-card h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px;
    font-weight: 600;
}

.product-count {
    font-size: 0.85rem;
    color: #888;
}

.store-logo,
.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.store-logo-placeholder,
.brand-logo-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 2rem;
}

.brand-logo-placeholder i {
    font-size: 2.5rem;
    color: #07aae7;
}

/* Quick Search in Archives */
.archive-quick-search {
    margin-bottom: 2rem;
    max-width: 400px;
}

.archive-quick-search .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.archive-quick-search .search-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
}

.archive-quick-search input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #eee;
    border-radius: 25px;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.archive-quick-search input:focus {
    border-color: #07aae7;
    box-shadow: 0 0 0 3px rgba(7, 170, 231, 0.1);
}

/* ===================================
   Search Page & Sections
   =================================== */

.search-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.search-section:last-child {
    border-bottom: none;
}

.search-section-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.search-section-title i {
    color: #07aae7;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f8f9fa;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.search-tag:hover {
    background: #07aae7;
    color: #fff;
    border-color: #07aae7;
    transform: translateY(-2px);
}

.search-tag .tag-count {
    color: #888;
    font-size: 0.85rem;
    font-weight: normal;
}

.search-tag:hover .tag-count {
    color: rgba(255, 255, 255, 0.9);
}

.search-tag .tag-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.category-tag {
    background: #f0f7ff;
    border-color: #d0e7ff;
}
.store-tag {
    background: #fff9f0;
    border-color: #ffe8d0;
}
.brand-tag {
    background: #f0fff4;
    border-color: #d0ffd0;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    color: #666;
}

.no-products i {
    font-size: 3.5rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.no-products h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .categories-grid,
    .stores-grid,
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .category-card,
    .store-card,
    .brand-card {
        padding: 15px 10px;
    }
}

/* Share Button Success State */
.share-btn.success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

/* ===================================
   Promo Banner Section
   =================================== */

.promo-banner-section {
    margin: 3rem 0;
}

.promo-banner {
    background: linear-gradient(135deg, #07aae7 0%, #007bb5 100%);
    border-radius: 12px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.promo-text {
    flex: 1;
    min-width: 200px;
}

.promo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.promo-text p {
    opacity: 0.9;
    margin: 0;
    color: #fff;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #07aae7;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #007bb5;
}

.promo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
}

.promo-feature i {
    color: #07aae7;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .promo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Product Card Equal Height & Cutoff
   =================================== */

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    flex: 1 0 auto;
}

.owl-item-wrapper {
    display: flex;
    width: 100%;
}

.store-products-slider {
    margin: 0;
    padding: 0;
}

/* ============================================
   PRODUCT CARD - RESPONSIVE STYLES
   ============================================ */

/* Desktop: Card View (default) */
.product-card .product-card-link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none !important;
    color: inherit;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .product-badges,
.product-card .product-validity,
.product-card .product-arrow {
    display: none;
}

.product-card .product-price-row {
    margin-top: auto;
}

.product-card .price-current {
    font-size: 18px;
    font-weight: bold;
    color: #07aae7;
}

.product-card .price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* ============================================
   MOBILE APP STYLE - LIST VIEW
   ============================================ */
@media (max-width: 768px) {
    .product-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        width: 100% !important;
        background: #fff !important;
        border: none !important;
        border-bottom: 1px solid #eee !important;
        border-radius: 0 !important;
        padding: 12px 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        text-align: left !important;
        position: relative !important;
    }

    .product-card:hover,
    .product-card:active {
        background: #fafafa !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .product-card .product-card-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex: 1;
        min-width: 0;
    }

    .product-card .product-image-wrapper {
        width: 90px !important;
        height: 90px !important;
        flex-shrink: 0 !important;
        margin-right: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-card .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .product-card .product-image-placeholder {
        width: 100% !important;
        height: 100% !important;
        background: #f5f5f5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ccc !important;
        font-size: 24px !important;
    }

    .product-card .product-info {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        justify-content: center !important;
    }

    .product-card .product-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 2px !important;
    }

    .product-card .badge {
        font-size: 10px !important;
        font-weight: 600 !important;
        padding: 2px 6px !important;
        border-radius: 4px !important;
    }

    .product-card .badge-promo {
        background: #e8f5e9 !important;
        color: #2e7d32 !important;
    }

    .product-card .badge-discount {
        background: #ffebee !important;
        color: #c62828 !important;
    }

    .product-card .product-name {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #222 !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin: 0 !important;
        text-align: left !important;
        white-space: normal !important;
        height: auto !important;
    }

    .product-card .product-brand {
        display: none !important;
    }

    .product-card .product-store-name {
        display: block !important;
        font-size: 13px !important;
        color: #888 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    /* Hide desktop store badge on mobile */
    .product-card .product-store {
        display: none !important;
    }

    .product-card .product-price-row {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 4px !important;
    }

    .product-card .price-current {
        background: #4caf50 !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 4px 10px !important;
        border-radius: 16px !important;
    }

    .product-card .price-old {
        font-size: 12px !important;
        color: #999 !important;
        text-decoration: line-through !important;
        margin-left: 0 !important;
    }

    .product-card .product-validity {
        display: flex !important;
        font-size: 11px !important;
        color: #888 !important;
        align-items: center !important;
        gap: 4px !important;
        margin-top: 2px !important;
    }

    .product-card .product-validity i {
        font-size: 10px !important;
    }

    .product-card .product-arrow {
        display: block !important;
        color: #ccc !important;
        font-size: 14px !important;
        margin-left: 8px !important;
        flex-shrink: 0 !important;
    }

    /* Hide desktop card elements on mobile */
    .product-card .product-badges-container {
        display: none !important;
    }
}

/* ============================================
   DESKTOP ACCOUNT DROPDOWN
   ============================================ */
.desktop-account {
    margin-left: 20px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #07aae7;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.login-btn:hover {
    background: #0590c7;
}

.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
}

.account-btn:hover {
    background: #e8e8e8;
}

.account-btn i {
    font-size: 16px;
}

.account-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.account-dropdown:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* ============================================
   DESKTOP FLOATING LISTS BUTTON
   ============================================ */
.desktop-floating-lists {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #07aae7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(7, 170, 231, 0.4);
    text-decoration: none;
    transition: all 0.2s;
    z-index: 999;
}

.desktop-floating-lists:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(7, 170, 231, 0.5);
}

.floating-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .desktop-floating-lists {
        display: none;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
    }

    /* Add padding to body to account for bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Hide desktop account */
    .desktop-account {
        display: none;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-nav-item.active {
    color: #07aae7;
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

.nav-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   MOBILE FILTERS - APP STYLE BOTTOM SHEET
   ============================================ */
.filters-bottom-sheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.filters-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.filters-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.filters-bottom-sheet.active {
    display: block;
}

.filters-bottom-sheet.active .filters-panel {
    transform: translateY(0);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.filters-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.filters-close {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.filters-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

/* Filter Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip.selected {
    background: #e3f2fd;
    border-color: #07aae7;
    color: #07aae7;
}

.filter-chip:active {
    transform: scale(0.95);
}

/* Filter Actions */
.filters-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.filter-btn-reset {
    flex: 1;
    padding: 14px;
    background: #f5f5f5;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
}

.filter-btn-apply {
    flex: 2;
    padding: 14px;
    background: #07aae7;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

/* Mobile Filter Trigger Button */
.mobile-filter-trigger {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: #07aae7;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(7, 170, 231, 0.4);
    cursor: pointer;
    z-index: 100;
}

.mobile-filter-trigger i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .mobile-filter-trigger {
        display: flex;
        align-items: center;
    }
}

/* ============================================
   SAVE TO LIST BUTTON
   ============================================ */
.save-to-list-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.save-to-list-btn:hover {
    transform: scale(1.1);
    color: #ff4081;
}

.save-to-list-btn.saved {
    color: #ff4081;
}

.save-to-list-btn.saved i {
    animation: heartPulse 0.3s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Pulse animation for Lists button/tab when item added */
.pulse-animation {
    animation: listsPulse 0.6s ease;
}

@keyframes listsPulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.desktop-floating-lists.pulse-animation {
    animation: floatingPulse 0.4s ease;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.bottom-nav-item.pulse-animation {
    animation: navPulse 0.6s ease;
}

@keyframes navPulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
        color: #ff4081;
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
        color: #ff4081;
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile save button positioning */
@media (max-width: 768px) {
    .save-to-list-btn {
        top: auto;
        bottom: 12px;
        right: 48px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Save button on single product page */
.product-save-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.product-save-btn:hover {
    border-color: #ff4081;
    color: #ff4081;
}

.product-save-btn.saved {
    background: #ffebee;
    border-color: #ff4081;
    color: #ff4081;
}

.product-save-btn i {
    font-size: 18px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 3000;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.error {
    background: #dc3545;
}

.toast-notification.success {
    background: #4caf50;
}

/* Save Product Container on Single Page */
.save-product-container {
    margin-top: 16px;
}

.buy-product-container + .save-product-container {
    margin-top: 12px;
}

/* Store/Category/Brand Save Buttons */
.entity-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.entity-save-btn:hover {
    border-color: #ff4081;
    color: #ff4081;
}

.entity-save-btn.saved {
    background: #ffebee;
    border-color: #ff4081;
    color: #ff4081;
}

/* Store Header Actions */
.store-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* Category Header with Save Button */
.category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.category-header-info {
    flex: 1;
}

@media (max-width: 768px) {
    .store-header-actions {
        margin-top: 16px;
    }
}

/* Desktop only utility */
.desktop-only {
    display: flex;
}

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

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: block;
    }
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.filter-toggle-btn i {
    color: #07aae7;
}

.filter-toggle-btn .filter-count {
    background: #07aae7;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

/* Mobile Filter Bottom Sheet */
.filter-bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.filter-bottom-sheet.open {
    visibility: visible;
    opacity: 1;
}

.filter-sheet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.filter-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.filter-bottom-sheet.open .filter-sheet-content {
    transform: translateY(0);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.filter-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.filter-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-group-mobile {
    margin-bottom: 25px;
}

.filter-group-mobile h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: #07aae7;
}

.filter-pill.active {
    background: #07aae7;
    border-color: #07aae7;
    color: white;
}

.filter-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.filter-reset-btn {
    flex: 1;
    background: #f5f5f5;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}

.filter-apply-btn {
    flex: 2;
    background: #07aae7;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* Filter pills wrapper with collapsible overflow */
.filter-pills-wrapper {
    position: relative;
}

.filter-pills-wrapper.has-overflow .filter-pills {
    max-height: none;
}

.filter-pills-wrapper.has-overflow:not(.expanded)
    .filter-pills
    .filter-pill:nth-child(n + 12) {
    display: none;
}

.filter-show-more {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    background: transparent;
    border: 1px dashed #ccc;
    border-radius: 20px;
    font-size: 13px;
    color: #07aae7;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-show-more:hover {
    border-color: #07aae7;
    background: rgba(7, 170, 231, 0.05);
}

.filter-pills-wrapper.expanded .filter-show-more {
    display: none;
}

/* Archive Page Padding */
.archive-page-padding {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Store/Category Product Count */
.store-product-count,
.category-product-count {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}

/* Entity Save Button under header */
.store-header-info .entity-save-btn,
.category-header-info .entity-save-btn {
    margin-top: 10px;
    margin-bottom: 5px;
}

/* Hide footer and promo banner on user-related pages for mobile only */
@media (max-width: 768px) {
    .auth-page ~ .promo-banner-section,
    .auth-page ~ footer,
    .settings-page ~ .promo-banner-section,
    .settings-page ~ footer,
    .lists-page ~ .promo-banner-section,
    .lists-page ~ footer {
        display: none;
    }
}
