:root {
    --primary-color: #2e7d32;
    --primary-dark: #1c5f25;
    --primary-light: #e8f5e9;
    --secondary-green: #5e9f45;
    
    /* Gold Color Palette */
    --accent-color: #d4a017;
    --gold-dark: #b8860b;
    --gold-sandy: #f5d76e;
    --gold-light: #fff3c4;
    --bg-gold: #fffaf0;
    
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #fdfdfb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --gold-border-light: rgba(212, 160, 23, 0.25);
    
    --shadow-sm: 0 10px 30px rgba(31, 41, 55, 0.05);
    --shadow-md: 0 20px 45px rgba(46, 125, 50, 0.08);
    --shadow-premium: 0 25px 50px rgba(184, 134, 11, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    background: var(--bg-light);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
}

h1,
h2 {
    letter-spacing: -0.03em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.js-ready .animate-on-load {
    position: relative;
    top: 14px;
    opacity: 0;
}

/* Navbar Styles */
.frontend-navbar {
    padding: 18px 0;
    transition: padding 0.3s ease, background 0.3s ease;
    z-index: 1030;
}

.frontend-navbar.navbar-scrolled {
    padding: 10px 0;
    background: rgba(255, 250, 240, 0.92); /* Rich soft cream background */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--gold-border-light);
}

.navbar-shell {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 8px 12px 8px 22px;
    border: 1.5px solid var(--gold-border-light);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-shell {
    border-color: var(--gold-sandy);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.12);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.navbar-brand img,
.footer-brand img {
    border-radius: 6px;
    background: #fff;
    padding: 2px;
    border: 1px solid rgba(212, 160, 23, 0.15);
}

.brand-logo {
    height: 80px; /* Desktop height: 75px to 90px */
    width: auto;
    object-fit: contain;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    transition: height 0.3s ease;
}

@media (max-width: 991.98px) {
    .brand-logo {
        height: 60px; /* Mobile height: 55px to 65px */
    }
}

.navbar-brand strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.navbar-brand small {
    display: block;
    margin-top: 2px;
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-mark {
    display: inline-grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-green));
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.2);
}

.navbar-nav {
    gap: 6px;
}

.navbar .nav-link {
    padding: 8px 18px !important;
    color: var(--text-dark);
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-light);
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    color: var(--primary-color);
    border: 1.5px solid var(--gold-sandy);
    border-radius: 50%;
    background: var(--bg-gold);
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler i {
    font-size: 1.4rem;
}

/* Button Customizations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

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

.btn-brand {
    color: #fff;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), #104216);
    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.3);
}

.btn-soft {
    color: var(--primary-dark);
    border-color: var(--gold-sandy);
    background: var(--bg-gold);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.05);
}

.btn-soft:hover {
    color: var(--primary-dark);
    background: var(--gold-light);
    border-color: var(--accent-color);
}

.btn-gold {
    color: var(--text-dark);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--gold-sandy), var(--accent-color));
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.15);
}

.btn-gold:hover {
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--accent-color), var(--gold-dark));
    box-shadow: 0 12px 24px rgba(212, 160, 23, 0.25);
}

.btn-card-action {
    color: var(--primary-color);
    background: var(--bg-gold);
    border: 1.5px solid var(--gold-sandy);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 16px;
    width: 100%;
}

.btn-card-action:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.18);
}

/* Hero Section */
.hero-section {
    padding: 30px 0 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: clamp(35px, 6vw, 75px);
    border: 1.5px solid var(--gold-sandy);
    border-radius: 40px;
    background:
        radial-gradient(circle at 85% 15%, var(--gold-light), transparent 35%),
        linear-gradient(135deg, #f7fbef 0%, #fffaf0 60%, #fff7d6 100%);
    box-shadow: var(--shadow-md);
}

.hero-card::before {
    position: absolute;
    right: 28%;
    bottom: -60px;
    width: 200px;
    height: 200px;
    content: "";
    border: 40px solid rgba(212, 160, 23, 0.08);
    border-radius: 50%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold-sandy);
    padding-bottom: 4px;
}

.eyebrow.light {
    color: var(--gold-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-card h1,
.page-hero-card h1,
.profile-hero-card h1 {
    max-width: 800px;
    margin-bottom: 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    line-height: 1.05;
    color: var(--primary-dark);
}

.hero-card h1 em {
    color: var(--gold-dark);
    font-style: normal;
    background: linear-gradient(120deg, var(--gold-sandy) 0%, var(--accent-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
}

.hero-copy {
    max-width: 620px;
    margin-bottom: 32px;
    color: #4a554d;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    color: #526256;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-trust i {
    margin-right: 4px;
    color: var(--gold-dark);
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 380px;
    place-items: center;
}

.hero-orbit {
    position: absolute;
    border: 1px solid var(--gold-border-light);
    border-radius: 50%;
}

.orbit-one {
    width: 320px;
    height: 320px;
}

.orbit-two {
    width: 240px;
    height: 240px;
    border-style: dashed;
    border-color: var(--gold-sandy);
}

.showcase-card {
    position: absolute;
    z-index: 2;
    border: 1.5px solid var(--gold-sandy);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}

.showcase-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(260px, 80%);
    padding: 38px 24px;
    border-radius: 24px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.showcase-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 15px;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 50%;
    background: var(--primary-light);
    font-size: 2rem;
    border: 1.5px solid rgba(46, 125, 50, 0.15);
}

.showcase-main small {
    color: var(--text-muted);
    font-weight: 600;
}

.showcase-main strong {
    margin-top: 4px;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.showcase-float {
    right: 15px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 18px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--bg-gold);
    transform: rotate(2deg);
}

.showcase-float i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.showcase-leaf {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--accent-color);
    font-size: 2.8rem;
    transform: rotate(15deg);
}

/* Category Strip styling */
.category-strip {
    padding-top: 28px;
}

.category-row {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    scrollbar-width: none;
}

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

.category-label {
    flex: 0 0 auto;
    padding: 8px 12px;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--primary-dark);
    border-radius: 999px;
    background: var(--primary-light);
    font-size: 0.84rem;
    font-weight: 700;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.category-chip span {
    display: grid;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    place-items: center;
    color: var(--text-dark);
    border-radius: 999px;
    background: var(--gold-sandy);
    font-size: 0.68rem;
    font-weight: 700;
}

.category-chip:hover {
    color: var(--text-dark);
    background: var(--gold-light);
    border-color: var(--accent-color);
}

/* Page spacing sections */
.section-space {
    padding: 80px 0;
}

.section-soft {
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    background: var(--bg-gold);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2,
.store-info-card h2,
.contact-highlight h2,
.cta-card h2 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--primary-dark);
}

.section-heading p {
    max-width: 600px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.text-link {
    flex: 0 0 auto;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 2px solid var(--gold-sandy);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.text-link i {
    display: inline-block;
    transition: transform 0.2s ease;
}

.text-link:hover {
    color: var(--gold-dark);
    border-color: var(--accent-color);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Product Grid and Card layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.is-hovered,
.product-card:hover {
    border-color: var(--gold-sandy);
    box-shadow: var(--shadow-premium);
    transform: translateY(-6px);
}

.product-image-wrap,
.detail-image {
    position: relative;
    display: grid;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 25% 20%, #fff, transparent 30%),
        linear-gradient(135deg, var(--bg-gold), #e8f3e5);
}

.product-image-wrap {
    height: 250px;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.no-image {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    color: #a2b49f;
}

.no-image i {
    font-size: 2.4rem;
    color: var(--accent-color);
}

.no-image small {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-image-wrap img + .no-image,
.detail-image img + .no-image {
    display: none;
}

/* Badges */
.stock-badge,
.discount-badge,
.category-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.product-image-wrap .stock-badge {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
}

.product-image-wrap .discount-badge,
.detail-image .discount-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
}

.stock-in {
    color: var(--primary-dark);
    background: var(--primary-light);
    border-color: rgba(46, 125, 50, 0.2);
}

.stock-low {
    color: var(--gold-dark);
    background: var(--gold-light);
    border-color: var(--gold-sandy);
}

.stock-out {
    color: #a02d2d;
    background: #fee2e2;
    border-color: rgba(160, 45, 45, 0.2);
}

.discount-badge {
    color: var(--gold-dark);
    background: var(--gold-light);
    border-color: var(--gold-sandy);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.1);
}

.category-badge {
    color: var(--primary-color);
    background: var(--primary-light);
}

/* Card content */
.product-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-meta {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.product-card-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-meta span:first-child {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card h3 {
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card h3 a {
    color: var(--text-dark);
}

.product-card h3 a:hover {
    color: var(--primary-color);
}

.product-description {
    display: -webkit-box;
    overflow: hidden;
    min-height: 40px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.price-block strong {
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.price-block del {
    color: #9ca3af;
    font-size: 0.78rem;
}

/* Feature grid and cards */
.feature-grid,
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.location-card {
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.location-card:hover {
    border-color: var(--gold-sandy);
    box-shadow: var(--shadow-md);
}

.feature-card > span,
.location-card > span {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--primary-color);
    border-radius: 14px;
    background: var(--primary-light);
    font-size: 1.35rem;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.feature-card:nth-child(2) > span {
    color: var(--gold-dark);
    background: var(--gold-light);
    border-color: var(--gold-sandy);
}

.feature-card h3,
.location-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-card p,
.location-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.location-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.location-card a:hover {
    color: var(--gold-dark);
}

/* Call to action */
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(35px, 6vw, 70px);
    color: #fff;
    border-radius: 36px;
    background:
        radial-gradient(circle at 85% 10%, rgba(245, 215, 110, 0.2), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2);
    border: 1.5px solid var(--gold-sandy);
}

.cta-card h2 {
    margin-bottom: 10px;
    color: #fff;
}

.cta-card p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--primary-light);
    font-size: 1.05rem;
}

.page-hero {
    padding: 40px 0 60px;
}

.page-hero-card {
    padding: clamp(40px, 6vw, 75px);
    border: 1.5px solid var(--gold-sandy);
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(212, 160, 23, 0.12), transparent 35%),
        linear-gradient(135deg, var(--bg-gold), #e8f3e5);
    text-align: center;
}

.page-hero-card h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-hero-card p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Filters Card */
.filter-card {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(240px, 2fr) repeat(2, minmax(150px, 1fr)) auto;
    gap: 12px;
    padding: 16px;
    margin-top: -31px;
    border: 1.5px solid var(--gold-sandy);
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.filter-card:has(select[name="store"]) {
    grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr)) auto;
}

.filter-search {
    position: relative;
}

.filter-search i {
    position: absolute;
    top: 50%;
    left: 16px;
    color: var(--text-muted);
    transform: translateY(-50%);
    font-size: 1rem;
}

.filter-card input,
.filter-card select {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    background: #fdfdfb;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-card input {
    padding-left: 44px;
}

.filter-card input:focus,
.filter-card select:focus,
.filter-card .input-focused {
    border-color: var(--gold-dark);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}

.filter-clear {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #a02d2d;
    border-radius: 12px;
    background: #fee2e2;
    border: 1px solid rgba(160, 45, 45, 0.15);
    transition: all 0.2s ease;
}

.filter-clear:hover {
    background: #fca5a5;
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 4px 20px;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.results-bar p {
    margin: 0;
}

.results-bar strong {
    color: var(--text-dark);
}

.results-bar span {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border: 1px solid var(--gold-sandy);
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.pagination {
    gap: 6px;
}

.page-link {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    background: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.page-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-sandy);
    background: var(--bg-gold);
}

.page-item.active .page-link {
    color: #fff !important;
    border-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
}

.page-item.disabled .page-link {
    color: #bbb;
    background: #f8f8f8;
    border-color: #eee;
    box-shadow: none;
}

/* Empty Page States */
.empty-state {
    padding: 80px 30px;
    border: 2px dashed var(--gold-sandy);
    border-radius: 28px;
    background: var(--bg-gold);
    text-align: center;
}

.empty-state > i {
    display: block;
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 3.2rem;
}

.empty-state h3 {
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
    font-size: 1.85rem;
    color: var(--primary-dark);
}

.empty-state p {
    margin: 0 auto 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
}

/* Single Product Details */
.detail-section {
    padding: 30px 0 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-sandy);
}

.back-link:hover i {
    transform: translateX(-4px);
}

.back-link i {
    transition: transform 0.2s ease;
}

.detail-card {
    overflow: hidden;
    border: 1.5px solid var(--gold-sandy);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-premium);
}

.detail-image {
    min-height: 100%;
    padding: 35px;
    background: var(--bg-gold);
    border-right: 1.5px solid var(--gold-border-light);
}

.detail-image img {
    width: 100%;
    max-height: 620px;
    border-radius: 16px;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.detail-image .no-image i {
    font-size: 4.5rem;
}

.detail-content {
    padding: clamp(30px, 5vw, 60px);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.detail-content h1 {
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    color: var(--primary-dark);
}

.store-line {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.store-line i {
    margin-right: 6px;
    color: var(--gold-dark);
}

.detail-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.detail-price strong {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
}

.detail-price del {
    color: #9ca3af;
    font-size: 1.2rem;
}

.detail-price span {
    padding: 6px 14px;
    color: var(--gold-dark);
    border-radius: 8px;
    background: var(--gold-light);
    border: 1px solid var(--gold-sandy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.detail-description {
    margin-bottom: 30px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-line;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.meta-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 10px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-gold);
    border-left: 3.5px solid var(--accent-color);
}

.meta-card i {
    grid-row: span 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 10px;
    background: var(--primary-light);
    font-size: 1.15rem;
    border: 1.5px solid rgba(46, 125, 50, 0.15);
}

.meta-card span {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-card strong {
    overflow: hidden;
    font-size: 0.85rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-dark);
}

.meta-card-wide {
    grid-column: 1 / -1;
}

/* Contact Store Hero & Layout */
.profile-hero {
    padding: 30px 0 0;
}

.profile-hero-card {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(35px, 6vw, 75px);
    color: #fff;
    border-radius: 38px;
    background:
        radial-gradient(circle at 85% 10%, rgba(245, 215, 110, 0.25), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.18);
    border: 1.5px solid var(--gold-sandy);
}

.profile-hero-card h1 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    color: #fff;
}

.profile-hero-card p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--primary-light);
    font-size: 1.05rem;
}

.profile-monogram {
    display: grid;
    flex: 0 0 auto;
    width: clamp(140px, 18vw, 200px);
    height: clamp(140px, 18vw, 200px);
    place-items: center;
    border: 2px solid var(--gold-sandy);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.05);
    transform: rotate(4deg);
}

.profile-monogram span {
    font-family: "Playfair Display", serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: var(--gold-light);
}

.store-info-card,
.contact-highlight {
    height: 100%;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 28px;
}

.store-info-card {
    border: 1.5px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.store-intro {
    max-width: 560px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-gold);
    transition: all 0.25s ease;
}

a.contact-item:hover {
    border-color: var(--gold-sandy);
    background: #fff;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.contact-item > span {
    display: grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 12px;
    background: var(--primary-light);
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.contact-item div {
    display: grid;
    flex: 1;
}

.contact-item small {
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-item strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-item > i {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.15), transparent 35%),
        linear-gradient(135deg, var(--gold-dark), var(--accent-color));
    box-shadow: 0 20px 48px rgba(184, 134, 11, 0.2);
    border: 1.5px solid var(--gold-sandy);
}

.contact-highlight-icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.contact-highlight p {
    margin-bottom: 28px;
    color: var(--bg-gold);
    font-size: 1.05rem;
}

.empty-inline {
    padding: 20px;
    color: var(--text-muted);
    border-radius: 14px;
    background: var(--bg-gold);
    border: 1px dashed var(--gold-sandy);
}

/* Footer layout */
.site-footer {
    background: var(--primary-dark);
    border-top: 3px solid var(--accent-color);
    color: var(--primary-light);
    padding: 30px 0 20px;
    font-family: "DM Sans", sans-serif;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-description {
    margin: 10px 0 0;
    font-size: 0.82rem;
    color: var(--primary-light);
    max-width: 450px;
    line-height: 1.6;
    font-weight: 500;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-logo {
    height: 90px; /* Desktop: 80px to 100px */
    width: auto;
    object-fit: contain;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    transition: height 0.3s ease;
}

.footer-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    margin: 0;
    font-size: 0.82rem;
    color: var(--gold-sandy);
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-links a {
    color: var(--primary-light);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: var(--gold-sandy);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
}

.footer-copy {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

@media (max-width: 767.98px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-logo {
        height: 70px; /* Mobile: 65px to 80px */
    }
    
    .footer-description {
        text-align: center;
        margin-top: 12px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Responsiveness media queries */
@media (max-width: 1199.98px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filter-card,
    .filter-card:has(select[name="store"]) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .navbar-shell {
        border-radius: 24px;
    }

    .navbar-collapse {
        width: 100%;
        padding: 12px 5px 6px;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: 8px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .showcase-float {
        right: 8%;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-image {
        min-height: 450px;
        border-right: 0;
        border-bottom: 1.5px solid var(--gold-border-light);
    }

    .profile-hero-card {
        align-items: flex-start;
    }

    .profile-monogram {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 60px 0;
    }

    .hero-card,
    .page-hero-card,
    .profile-hero-card {
        border-radius: 28px;
    }

    .hero-card h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        min-height: 280px;
    }

    .orbit-one {
        width: 270px;
        height: 270px;
    }

    .orbit-two {
        width: 200px;
        height: 200px;
    }

    .showcase-main {
        width: 200px;
        padding: 28px 18px;
    }

    .showcase-icon {
        width: 64px;
        height: 64px;
    }

    .showcase-float {
        right: 0;
        bottom: 20px;
    }

    .section-heading,
    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .filter-card,
    .filter-card:has(select[name="store"]) {
        grid-template-columns: 1fr;
    }

    .filter-search {
        grid-column: auto;
    }

    .filter-clear {
        width: 100%;
        min-height: 44px;
    }

    .profile-monogram {
        display: none;
    }

    .footer-links {
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand small {
        display: none;
    }

    .navbar-brand strong {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrap {
        height: 270px;
    }

    .meta-grid {
        grid-template-columns: 1fr;
    }

    .meta-card-wide {
        grid-column: auto;
    }

    .detail-image {
        min-height: 320px;
    }

    .detail-contact {
        width: 100%;
    }

    .results-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
