/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

:root {
    --primary-gradient: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    --secondary-gradient: linear-gradient(135deg, #7d9d9c 0%, #5a7c7a 100%);
    --accent-gradient: linear-gradient(135deg, #a8c5c3 0%, #8ba9a7 100%);
    --primary-color: #2c5f5d;
    --secondary-color: #5a7c7a;
    --accent-color: #8ba9a7;
    --text-dark: #2c3e50;
    --text-light: #e8ebe9;
    --bg-light: #fafaf8;
    --bg-dark: #1a1f1e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

body.menu-open {
    overflow: hidden;
}

body:not(.loaded) > *:not(.page-loader) {
    opacity: 0;
    visibility: hidden;
}

body.loaded {
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f6f4 50%, #e8ebe9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .page-loader {
    background: linear-gradient(135deg, #1a1f1e 0%, #252a29 50%, #2c3e3c 100%);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    padding: 0 20px;
}

.loader-logo {
    opacity: 0;
    animation: logoFadeIn 1s ease forwards 0.3s;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-logo-circle {
    width: 150px;
    height: 150px;
    /* background: var(--primary-gradient); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(44, 95, 93, 0.3); */
    margin-bottom: 20px;
}

.loader-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.loader-logo h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 3px;
    /* text-transform: lowercase; */
    color: var(--primary-color);
    margin-bottom: 5px;
}

body.dark-mode .loader-logo h1 {
    color: var(--text-light);
}

.loader-logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 50px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent-color);
}

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

.loader-progress {
    width: 300px;
    height: 3px;
    background: rgba(44, 95, 93, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 25px;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 3s ease-in-out forwards;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    30% {
        width: 30%;
    }
    60% {
        width: 60%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}

.loader-text {
    font-size: 12px;
    color: #6a7a78;
    letter-spacing: 2px;
    opacity: 0;
    animation: textFadeIn 0.5s ease forwards 1s;
}

body.dark-mode .loader-text {
    color: #b8c4c2;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 100;
    background: rgba(250, 250, 248, 0.98);
    box-shadow: 0 4px 20px rgba(44, 95, 93, 0.08);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(44, 95, 93, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode header {
    background: rgba(26, 31, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(168, 197, 195, 0.1);
}

.header-left {
    flex: 0 0 auto;
}

.header-logo-link {
    text-decoration: none;
}

.header-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(44, 95, 93, 0.2);
    transition: all 0.3s ease;
}

.header-logo-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 95, 93, 0.3);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo h1 {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    /* text-transform: lowercase; */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    transition: all 0.3s ease;
}

body.dark-mode .logo h1 {
    color: var(--text-light);
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 5px;
    margin-top: -5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 103;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .menu-btn span {
    background: var(--text-light);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

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

.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* ===== SIDEBAR MENU ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 102;
    padding: 100px 50px 120px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

body.dark-mode .sidebar {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    right: 0;
}

.sidebar-logo {
    position: absolute;
    left: 50px;
    top: 30px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-logo {
    opacity: 1;
}

.sidebar-logo h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    /* text-transform: lowercase; */
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

body.dark-mode .sidebar-logo h2 {
    color: var(--text-light);
}

.sidebar-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: -3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.sidebar.active .sidebar-close {
    opacity: 1;
}

.sidebar-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

body.dark-mode .sidebar-close span {
    background: var(--text-light);
}

.sidebar-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sidebar-close span:nth-child(2) {
    opacity: 0;
}

.sidebar-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-close:hover span {
    background: var(--primary-color);
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.sidebar.active nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.active nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}
.sidebar.active nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}
.sidebar.active nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}
.sidebar.active nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}
.sidebar.active nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}
.sidebar.active nav ul li:nth-child(6) {
    transition-delay: 0.6s;
}
.sidebar.active nav ul li:nth-child(7) {
    transition-delay: 0.7s;
}

.sidebar nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
    display: block;
    position: relative;
}

body.dark-mode .sidebar nav ul li a {
    color: var(--text-light);
}

.sidebar nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f5f5dc;
    transition: width 0.3s ease;
}

.sidebar nav ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.sidebar nav ul li a:hover::after {
    width: 60px;
}

/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 101;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    background: var(--secondary-gradient);
    box-shadow: 0 6px 25px rgba(44, 95, 93, 0.35);
    transform: scale(1.08);
}

.dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
}

.dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

.dark-mode-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

/* ===== PROMOTION PAGE STYLES ===== */
.promotion-main {
    padding-top: 6rem;
    min-height: 100vh;
}

.promotion-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.promotion-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.promotion-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

body.dark-mode .promotion-header h1 {
    color: var(--text-light);
}

.promotion-header p {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
}

body.dark-mode .promotion-header p {
    color: #b0b0b0;
}

.promotion-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 4rem;
}

/* ===== TENANT FILTER SIDEBAR ===== */
.tenant-filter-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

body.dark-mode .tenant-filter-sidebar {
    background: #2a2a2a;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-color: #3a3a3a;
}

.filter-header {
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    padding: 25px 30px;
    color: white;
}

.filter-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-header h3 svg {
    width: 24px;
    height: 24px;
}

.filter-header p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.filter-body {
    padding: 20px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.tenant-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

body.dark-mode .tenant-search-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tenant-search-container:focus-within {
    background: rgba(44, 95, 93, 0.05);
    border-color: #2c5f5d;
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

body.dark-mode .tenant-search-container:focus-within {
    background: rgba(245, 245, 220, 0.1);
    border-color: #f5f5dc;
    box-shadow: 0 0 0 3px rgba(245, 245, 220, 0.1);
}

.tenant-search-container svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

body.dark-mode .tenant-search-container svg {
    stroke: #b0b0b0;
}

.tenant-search-container:focus-within svg {
    stroke: #2c5f5d;
}

body.dark-mode .tenant-search-container:focus-within svg {
    stroke: #f5f5dc;
}

.tenant-search-container input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    font-family: "Montserrat", sans-serif;
}

body.dark-mode .tenant-search-container input {
    color: var(--text-light);
}

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

body.dark-mode .tenant-search-container input::placeholder {
    color: #666;
}

.tenant-filter-item.hidden {
    display: none;
}

.filter-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
    margin: 15px 0;
}

body.dark-mode .filter-divider {
    background: linear-gradient(90deg, transparent, #3a3a3a, transparent);
}

/* ===== CATEGORY FILTER ===== */
.category-filter-section {
    margin-bottom: 15px;
}

.filter-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-mode .filter-section-title {
    color: var(--text-light);
}

.filter-section-title svg {
    width: 16px;
    height: 16px;
    stroke: #2c5f5d;
}

body.dark-mode .filter-section-title svg {
    stroke: #f5f5dc;
}

.category-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .category-chip {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.category-chip:hover {
    background: rgba(44, 95, 93, 0.1);
    border-color: #2c5f5d;
    transform: translateY(-2px);
}

body.dark-mode .category-chip:hover {
    background: rgba(245, 245, 220, 0.15);
    border-color: #f5f5dc;
}

.category-chip.active {
    background: linear-gradient(135deg, #2c5f5d, #1a3a38);
    border-color: #2c5f5d;
    color: white;
}

body.dark-mode .category-chip.active {
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    border-color: #f5f5dc;
    color: #2c5f5d;
}

.category-chip-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
}

.category-chip.active .category-chip-count {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 245, 220, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #e8e6ca, #2c5f5d);
    box-shadow: 0 6px 25px rgba(245, 245, 220, 0.4);
    transform: translateY(-5px);
    color: #f5f5dc;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #2c5f5d;
}

/* ===== STATUS BADGES ===== */
.status-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 2;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-badge.new {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.status-badge.ending-soon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 2px 15px rgba(255, 152, 0, 0.6);
    }
}

/* ===== SHARE BUTTON ===== */
.share-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

body.dark-mode .share-btn {
    background: rgba(42, 42, 42, 0.9);
}

.share-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .share-btn:hover {
    background: #2a2a2a;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    stroke: #2c5f5d;
}

body.dark-mode .share-btn svg {
    stroke: #f5f5dc;
}

/* ===== BOOKMARK BUTTON ===== */
.bookmark-btn {
    position: absolute;
    top: 15px;
    left: 65px;
    right: auto;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

body.dark-mode .bookmark-btn {
    background: rgba(42, 42, 42, 0.9);
}

.bookmark-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .bookmark-btn:hover {
    background: #2a2a2a;
}

.bookmark-btn svg {
    width: 18px;
    height: 18px;
    stroke: #2c5f5d;
    fill: transparent;
    transition: all 0.3s ease;
}

body.dark-mode .bookmark-btn svg {
    stroke: #f5f5dc;
}

.bookmark-btn.active svg {
    fill: #2c5f5d;
    stroke: #2c5f5d;
}

body.dark-mode .bookmark-btn.active svg {
    fill: #2c5f5d;
    stroke: #2c5f5d;
}

/* ===== REUSABLE TOOLBAR ===== */
.promotion-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== SORT DROPDOWN ===== */
.sort-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.sort-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 40px 10px 15px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

body.dark-mode .sort-dropdown select {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.sort-dropdown select:hover,
.sort-dropdown select:focus {
    border-color: #2c5f5d;
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

body.dark-mode .sort-dropdown select:hover,
body.dark-mode .sort-dropdown select:focus {
    border-color: #f5f5dc;
    box-shadow: 0 0 0 3px rgba(245, 245, 220, 0.1);
}

.sort-icon {
    position: absolute;
    right: 15px;
    width: 16px;
    height: 16px;
    pointer-events: none;
    color: #666;
}

body.dark-mode .sort-icon {
    color: #aaa;
}

/* ===== VIEW TOGGLE ===== */
.view-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 4px;
}

body.dark-mode .view-toggle {
    background: rgba(255, 255, 255, 0.05);
}

.view-btn {
    border: none;
    background: transparent;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

body.dark-mode .view-btn {
    color: #aaa;
}

.view-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.dark-mode .view-btn.active {
    background: #2a2a2a;
    color: #f5f5dc;
}

.view-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== LIST VIEW LAYOUT ===== */
.promotion-grid.list-view {
    grid-template-columns: 1fr;
}

.list-view .promotion-card {
    display: flex;
    flex-direction: row;
    height: 280px;
}

.list-view .promotion-image {
    width: 350px;
    height: 100%;
    flex-shrink: 0;
}

.list-view .promotion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.list-view .promotion-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

/* ===== MOBILE FILTER & TOOLBAR ===== */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .mobile-filter-toggle {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.mobile-filter-toggle svg {
    width: 18px;
    height: 18px;
}

.mobile-filter-close-btn {
    display: none;
}

.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

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

/* Clear Filters Button */
.clear-filters-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #1a3a38;
    transform: translateY(-2px);
}

body.dark-mode .clear-filters-btn {
    background: #f5f5dc;
    color: #1a1a1a;
}

body.dark-mode .clear-filters-btn:hover {
    background: #e8e6ca;
}

@media (max-width: 991px) {
    .mobile-filter-toggle {
        display: flex;
    }

    .tenant-filter-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80vh;
        z-index: 999;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px;
        overflow-y: auto;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    }

    .mobile-filter-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #f5f5f5 !important;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #333 !important;
        z-index: 2000 !important;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    body.dark-mode .mobile-filter-close-btn {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-light);
    }

    .mobile-filter-close-btn svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.5;
    }

    .tenant-filter-sidebar.active {
        transform: translateY(0);
    }
}

/* ===== TOAST NOTIFICATION TYPES ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.toast-notification.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

body.dark-mode .toast-notification {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
}

.toast-notification.success {
    border-left: 4px solid #4caf50;
}

.toast-notification.info {
    border-left: 4px solid #2196f3;
}

.toast-notification.error {
    border-left: 4px solid #f44336;
}

/* Responsive List View */
@media (max-width: 768px) {
    .list-view .promotion-card {
        flex-direction: column;
        height: auto;
    }

    .list-view .promotion-image {
        width: 100%;
        height: 250px;
    }

    .promotion-grid.list-view {
        grid-template-columns: 1fr;
    }
}

.tenant-filter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.tenant-filter-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

body.dark-mode .tenant-filter-item:hover {
    background: #333;
}

.tenant-filter-item.active {
    background: rgba(44, 95, 93, 0.1);
    border-color: #2c5f5d;
}

body.dark-mode .tenant-filter-item.active {
    background: rgba(245, 245, 220, 0.15);
    border-color: #f5f5dc;
}

.tenant-filter-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark-mode .tenant-filter-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tenant-filter-icon img {
    max-width: 35px;
    max-height: 35px;
    object-fit: contain;
}

.tenant-filter-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2c5f5d;
}

body.dark-mode .tenant-filter-icon svg {
    stroke: #f5f5dc;
}

.tenant-filter-info {
    flex: 1;
}

.tenant-filter-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

body.dark-mode .tenant-filter-info h4 {
    color: var(--text-light);
}

.promo-count {
    display: inline-block;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    color: #2c5f5d;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* ===== PROMOTION GRID ===== */
.promotion-content {
    min-height: 400px;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promotion-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

body.dark-mode .promotion-card {
    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5f5dc, #ffa07a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.promotion-card:hover::before {
    transform: scaleX(1);
}

.promotion-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(245, 245, 220, 0.3);
}

body.dark-mode .promotion-card:hover {
    box-shadow: 0 25px 50px rgba(245, 245, 220, 0.4);
}

.promotion-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    color: #2c5f5d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(245, 245, 220, 0.4);
}

.tenant-logo-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tenant-logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.promotion-info {
    padding: 25px;
}

.promotion-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

body.dark-mode .promotion-info h3 {
    color: var(--text-light);
}

.promotion-card:hover .promotion-info h3 {
    color: #428381;
}

.promotion-tenant {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

body.dark-mode .promotion-tenant {
    color: #b0b0b0;
}

.promotion-tenant svg {
    width: 14px;
    height: 14px;
    stroke: #2c5f5d;
}

.promotion-validity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2c5f5d;
    font-weight: 600;
    margin-bottom: 15px;
}

.promotion-validity svg {
    width: 14px;
    height: 14px;
}

.promotion-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .promotion-description {
    color: #b0b0b0;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8e6ca 100%);
    color: #2c5f5d;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #e8e6ca 0%, #2c5f5d 100%);
    color: #f5f5dc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 245, 220, 0.4);
}

.view-details-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

/* ===== LOAD MORE & EMPTY STATE ===== */
.load-more-container {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #1a3a38 0%, #0f2220 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 95, 93, 0.3);
}

.load-more-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(4px);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state svg {
    width: 100px;
    height: 100px;
    stroke: #f5f5dc;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

body.dark-mode .empty-state h3 {
    color: var(--text-light);
}

.empty-state p {
    color: #666;
}

body.dark-mode .empty-state p {
    color: #b0b0b0;
}

/* ===== TENANT MODAL (from landing.css) ===== */
.tenant-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tenant-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

body.dark-mode .modal-container {
    background: #2a2a2a;
}

.tenant-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}

.modal-carousel {
    position: relative;
    background: #000;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-image {
    min-width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.carousel-swipe-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.carousel-swipe-hint.hidden {
    opacity: 0;
}

.carousel-swipe-hint svg {
    width: 16px;
    height: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.modal-details {
    padding: 40px;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark-mode .modal-logo {
    background: #1a1a1a;
}

.modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-title {
    flex: 1;
}

.modal-promo-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f5f5dc, #e8e6ca);
    color: #2c5f5d;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

body.dark-mode .modal-title h2 {
    color: var(--text-light);
}

.modal-tenant-name {
    font-size: 14px;
    color: #f5f5dc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-info-item {
    display: flex;
    gap: 12px;
}

.modal-info-item svg {
    width: 20px;
    height: 20px;
    stroke: #f5f5dc;
    flex-shrink: 0;
}

.modal-info-item div {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .info-value {
    color: var(--text-light);
}

.modal-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

body.dark-mode .modal-description {
    color: #b0b0b0;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #2c5f5d 0%, #1a3a38 100%);
    color: white;
    padding: 80px 40px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* Kept for spacing */
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(95,207,218,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(95,207,218,0.03)"/></svg>');
    opacity: 0.5;
}

body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f5f5dc;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: #f5f5dc;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #f5f5dc;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: #f5f5dc;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 245, 220, 0.3);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 30px;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand-logo {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

.footer-brand-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .promotion-layout {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .promotion-layout {
        grid-template-columns: 1fr;
    }

    .tenant-filter-sidebar {
        position: relative;
        top: 0;
    }

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

    .modal-content {
        grid-template-columns: 1fr;
    }

    .carousel-image {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo {
        position: static;
        transform: none;
        text-align: left;
        flex: 1;
    }

    .logo h1 {
        font-size: 24px;
    }

    .sidebar {
        width: 100%;
        padding: 80px 30px;
    }

    .promotion-container {
        padding: 0 1.5rem;
    }

    .promotion-header h1 {
        font-size: 2.5rem;
    }

    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-body {
        max-height: 400px;
    }

    .modal-container {
        width: 95%;
    }

    .modal-details {
        padding: 30px 20px;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== SHIMMER LOADING ===== */
.promotion-card.shimmer {
    pointer-events: none;
}

.promotion-card.shimmer .promotion-image,
.promotion-card.shimmer .promotion-info > * {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

body.dark-mode .promotion-card.shimmer .promotion-image,
body.dark-mode .promotion-card.shimmer .promotion-info > * {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* ===== MOBILE RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    /* Header Adjustments */
    /* Header Adjustments */
    header {
        padding: 0 25px !important;
        height: 65px !important; /* Sedikit lebih tinggi agar lega */
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .header-logo-circle,
    .header-left,
    .search-container {
        display: none !important;
    }

    .logo {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        text-align: left !important;
        flex: 1 !important;
    }

    .logo h1 {
        font-size: 20px !important;
        letter-spacing: 1px !important;
        margin: 0 !important;
        line-height: normal !important;
    }

    .logo span {
        font-size: 8px !important;
        letter-spacing: 2px !important;
        display: block !important;
    }

    .menu-btn {
        width: 30px;
        height: auto !important;
        padding: 5px !important; /* Click area */
        margin-right: -5px !important; /* Kompensasi padding kanan agar optis sejajar 25px */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px !important; /* Jarak antar garis menu */
    }

    .menu-btn span {
        margin: 0 !important; /* Reset margin bawaan */
    }

    /* Layout Adjustments - AGGRESSIVE FIX */
    .promotion-main {
        padding-top: 65px !important; /* Matches header height + tiny buffer */
    }

    .promotion-container {
        padding: 0 1rem !important;
    }

    .promotion-header {
        margin-bottom: 0.5rem !important;
        padding: 1rem 0 0.25rem 0 !important;
    }

    .promotion-header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.2 !important;
    }

    .promotion-header p {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
        /* display: none !important;  */
    }

    .promotion-layout {
        display: block !important;
        margin-top: 0.5rem !important;
        padding-top: 0 !important;
        gap: 0 !important;
    }

    /* Ensure sidebar doesn't take flow space */
    .tenant-filter-sidebar {
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden; /* Hide scrollbars when closed */
    }

    /* Restore properties when active */
    .tenant-filter-sidebar.active {
        width: 100% !important;
        height: 80vh !important;
        padding: 20px !important;
        overflow-y: auto !important;
    }

    .promotion-toolbar {
        margin-bottom: 0.5rem !important;
        padding: 5px 0 !important;
    }

    .promotion-content {
        width: 100% !important;
        margin-top: 0 !important;
    }
}
