/* Search Page Specific Styles */
/* ========================================
   PAKSA SEMUA SECTION MENGIKUTI MARGIN HEADER
   Tambahkan di AKHIR file search.css
   ======================================== */

/* PAKSA SEMUA SECTION MENGIKUTI ATURAN YANG SAMA DENGAN HEADER */
.hero-collection,
.filter-section,
.features-section,
.products-section,
.faq-section,
.cta-section,
.footer-main,
.footer-bottom {
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* PAKSA SEMUA CONTAINER */
.hero-collection .container,
.filter-section .container,
.features-section .container,
.products-section .container,
.faq-section .container,
.cta-section .container,
.footer-main .container,
.footer-bottom .container,
.container-1440,
.container {
    max-width: var(--max-width, 1400px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--container-padding, 40px) !important;
    padding-right: var(--container-padding, 40px) !important;
    box-sizing: border-box !important;
}

/* PAKSA FEATURES GRID - PERBAIKI POSISI */
.features-grid {
    max-width: var(--max-width, 1400px) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--container-padding, 40px) !important;
    transform: none !important; /* Hapus transform yang membuat bergeser */
    left: auto !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* PAKSA HERO IMAGE - PERBAIKI POSISI */
.hero-image-wrapper {
    position: relative !important;
    height: auto !important;
    min-height: 400px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-person-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 460px !important;
    object-fit: contain !important;
}

/* PAKSA HERO DECORATION - SESUAIKAN POSISI */
.hero-decoration-left {
    left: calc(var(--container-padding, 40px) - 60px) !important;
}

.hero-decoration-left-top {
    left: calc(var(--container-padding, 40px) - 88px) !important;
}

/* PAKSA BREADCRUMB */
.hero-breadcrumb {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

/* PAKSA FILTER SIDEBAR - AGAR TIDAK MELEBAR */
.filter-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* PAKSA PRODUCTS GRID */
.products-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* PAKSA PAGINATION */
.pagination-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 40px auto 0 auto !important;
}

/* ========================================
   RESPONSIVE - SAMA PERSIS DENGAN HEADER
   ======================================== */

/* Desktop 1200px+ */
@media (min-width: 1200px) {
    .hero-collection .container,
    .filter-section .container,
    .features-section .container,
    .products-section .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .features-grid {
        padding: 0 40px !important;
    }
}

/* Tablet Landscape 1024px */
@media (max-width: 1024px) {
    .hero-collection .container,
    .filter-section .container,
    .features-section .container,
    .products-section .container,
    .container-1440,
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    .features-grid {
        padding: 0 30px !important;
        gap: 15px !important;
    }
    
    .hero-decoration-left {
        left: calc(30px - 60px) !important;
    }
    
    .hero-decoration-left-top {
        left: calc(30px - 88px) !important;
    }
}

/* Tablet Portrait 768px */
@media (max-width: 768px) {
    .hero-collection .container,
    .filter-section .container,
    .features-section .container,
    .products-section .container,
    .container-1440,
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .features-grid {
        padding: 0 20px !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
    }
    
    .hero-decoration-left,
    .hero-decoration-left-top {
        display: none !important; /* Sembunyikan dekorasi di mobile */
    }
    
    .hero-image-wrapper {
        min-height: 350px !important;
        margin-bottom: -20px;
    }
}

/* Mobile 480px */
@media (max-width: 480px) {
    .hero-collection .container,
    .filter-section .container,
    .features-section .container,
    .products-section .container,
    .container-1440,
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .features-grid {
        padding: 0 15px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .hero-image-wrapper {
        min-height: px !important;
    }
}

/* ========================================
   OVERRIDE UNTUK FEATURES SECTION - MEMAKSA POSISI
   ======================================== */

/* Hapus semua transform yang membuat features grid bergeser */
@media (min-width: 1280px) and (max-width: 1366px) {
    .features-grid {
        transform: none !important;
        max-width: var(--max-width, 1400px) !important;
        padding: 0 var(--container-padding, 40px) !important;
        gap: 20px !important;
    }
    
    .feature-icon {
        width: 34px !important;
        height: 34px !important;
    }
    
    .feature-content h3 {
        font-size: 16px !important;
    }
    
    .feature-content p {
        font-size: 14px !important;
    }
}

@media (min-width: 900px) and (max-width: 1024px) {
    .features-grid {
        transform: none !important;
        max-width: var(--max-width, 1400px) !important;
        padding: 0 var(--container-padding, 30px) !important;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .features-grid {
        transform: none !important;
        max-width: var(--max-width, 1400px) !important;
        padding: 0 var(--container-padding, 30px) !important;
    }
}
.hero-collection {
    background: linear-gradient(90deg, rgba(224, 235, 227, 0.08) 0%, rgba(224, 235, 227, 0.538) 19.61%, #E0EBE3 57.62%, #E0EBE3 66.66%, rgba(224, 235, 227, 0.08) 100%);
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 460px;
}


.hero-decoration-left {
    position: absolute;
    width: 436px;
    height: 462px;
    left: -60px;
    top: -2px;
    z-index: 1;
}

.hero-decoration-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decoration-left-top {
    position: absolute;
    width: 195px;
    height: 167px;
    left: -88px;
    top: -56px;
    z-index: 2;
    transform: rotate(154.66deg);
}

.hero-decoration-left-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-collection .container {
    position: relative;
    z-index: 3;
    padding-top: 30px;
}
.hero-breadcrumb {
    margin-bottom: 8px;
}

.hero-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Outfit';
    font-size: 14px;
    line-height: 150%;
    text-transform: capitalize;
}

.hero-breadcrumb .breadcrumb-item i {
    font-size: 14px;
    color: #507C5B;
}

.hero-breadcrumb .breadcrumb-item a {
    color: #659A71;
    text-decoration: none;
    font-weight: 400;
}

.hero-breadcrumb .breadcrumb-item span {
    color: #659A71;
    margin: 0 2px;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #507C5B;
    font-weight: 600;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: none;
}
.hero-collection h1 {
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
    color: #3F425A;
    margin-bottom: 4px;
    margin-top: 40px;
}

.hero-collection .subtitle {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #696F96;
    margin-bottom: 26px;
    text-transform: capitalize;
}
.hero-image-wrapper {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-person-img {
    max-width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    margin-bottom: -20px;
}
.btn-progress {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
    background: #659A71;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.btn-progress:hover {
    background: #507C5B;
    color: #FFFFFF;
    box-shadow: none;
}

.btn-progress i {
    font-size: 20px;
}
.filter-section {
    padding: 40px 0;
    background: #F2F3F7;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 14px;
    border: 1px solid #E1E2EA;
    border-bottom: 1px solid #E1E2EA;
    background: #F2F3F7;
}

.filter-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3e34;
    margin: 0;
}

.btn-reset-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    color: red;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-filter:hover {
    background: #507C5B;
    color: #FFFFFF;
}

.btn-reset-filter i {
    font-size: 14px;
}
.filter-sidebar {
    background: #F2F3F7;
    padding: 14px;
    border: 1px solid #E1E2EA;
    border-top: none;
    box-shadow: none;
}
.filter-group {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    transition: opacity 0.3s ease;
}

.filter-group.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.filter-group h5 {
    font-size: 18px;
    font-weight: 500;
    color: #3F425A;
    margin-bottom: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #C3C5D5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.search-wrapper {
    width: 100%;
}

/* Input full width */
.search-wrapper .search-input-group {
    width: 100%;
}

.search-wrapper .search-input {
    width: 100%;
    max-width: 100%;
}


.filter-group h5 i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}
.search-filter {
    position: relative;
    margin-bottom: 15px;
}

.search-filter input {
    width: 100%;
    padding: 14px 20px 14px 38px;
    border: 1px solid #E1E2EA;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    background: #F2F3F7;
    color: #3F425A;
    border-radius: 0;
}

.search-filter input::placeholder {
    color: #A5A8C0;
    font-size: 14px;
}

.search-filter i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.95rem;
}
.filter-options {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
    padding-left: 20px;
    margin-right: -4px;
}

.filter-options::-webkit-scrollbar {
    width: 6px;
}

.filter-options::-webkit-scrollbar-track {
    background: #E1E2EA;
    border-radius: 20px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #507C5B;
    border-radius: 20px;
}

.filter-options::-webkit-scrollbar-thumb:hover {
    background: #507C5B;
}
.form-check {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 12px;
    gap: 12px;
    background: #F2F3F7;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    cursor: pointer;
    margin-right: 0;
    border: none;
    flex-shrink: 0;
    border-radius: 0;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4167 9.08333C17.4167 13.0117 17.4167 14.9758 16.1958 16.1958C14.9767 17.4167 13.0117 17.4167 9.08333 17.4167C5.155 17.4167 3.19083 17.4167 1.97 16.1958C0.75 14.9767 0.75 13.0117 0.75 9.08333C0.75 5.155 0.75 3.19083 1.97 1.97C3.19167 0.75 5.155 0.75 9.08333 0.75C13.0117 0.75 14.9758 0.75 16.1958 1.97C17.0075 2.78167 17.2792 3.9225 17.3708 5.75' stroke='%23878CAB' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.form-check-input:checked {
    background-color: transparent;
    border-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.16602 9.5L7.83268 11.1667L11.9993 7' stroke='%23507C5B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.4167 9.08333C17.4167 13.0117 17.4167 14.9758 16.1958 16.1958C14.9767 17.4167 13.0117 17.4167 9.08333 17.4167C5.155 17.4167 3.19083 17.4167 1.97 16.1958C0.75 14.9767 0.75 13.0117 0.75 9.08333C0.75 5.155 0.75 3.19083 1.97 1.97C3.19167 0.75 5.155 0.75 9.08333 0.75C13.0117 0.75 14.9758 0.75 16.1958 1.97C17.0075 2.78167 17.2792 3.9225 17.3708 5.75' stroke='%23507C5B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.form-check-input:focus {
    box-shadow: none;
    outline: none;
}

.form-check-label {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #3F425A;
    cursor: pointer;
    margin: 0;
    flex: 1;
}
.price-range {
    padding: 10px 0;
}

.price-display {
    text-align: left;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #3F425A;
    font-family: 'Outfit';
}

.price-slider-wrapper {
    position: relative;
    height: 12px;
    margin: 12px 0;
}

.price-slider-track {
    position: absolute;
    height: 4px;
    background: #507C5B;
    top: 4px;
    z-index: 1;
    border-radius: 0;
}

.price-slider-min,
.price-slider-max {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    top: 0;
}

.price-slider-min::-webkit-slider-thumb,
.price-slider-max::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #507C5B;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

.price-slider-min::-moz-range-thumb,
.price-slider-max::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #507C5B;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    pointer-events: auto;
}

.price-slider-min::-webkit-slider-runnable-track,
.price-slider-max::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #E1E2EA;
    border-radius: 12px;
}

.price-slider-min::-moz-range-track,
.price-slider-max::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #E1E2EA;
    border-radius: 12px;
}
.filter-section .container,
.filter-section .row,
.filter-section .col-lg-9 {
    background: transparent !important;
}

.products-section {
    flex: 1;
    background: transparent;
}
.active-filters-container {
    background: #F2F3F7;
    border: 1px solid #E1E2EA;
    padding: 20px;
    margin-bottom: 16px;
    display: none;
}

.active-filters-container.has-filters {
    display: block !important;
}

.active-filters-tags-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.active-filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.active-filters-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tag {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    gap: 12px;
    background: #ECF3EE;
    border: 1px solid #83AF8E;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #507C5B;
}

.filter-tag i {
    cursor: pointer;
    font-size: 18px;
    color: #507C5B;
    transition: color 0.2s;
}

.filter-tag i:hover {
    color: #3F425A;
}

.filter-tag .bi-star-fill {
    color: #E59C4D;
}

.btn-clear-all {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #507C5B;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.btn-clear-all:hover {
    color: #3F425A;
}
.category-menu {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: 1px solid #E1E2EA;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px 20px 20px;
    background: transparent;
    color: #3F425A;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
    border: none;
    position: relative;
    margin-bottom: -1px;
}

.category-tab.active {
    background: #ECF3EE;
    color: #507C5B;
    border-bottom: 2px solid #507C5B;
}

.category-tab:hover {
    color: #507C5B;
    background: transparent;
}

.category-tab.active {
    background: #ECF3EE;
    color: #507C5B;
}

.btn-clear-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #FCE8E8;
    border: 1px solid #E57373;
    color: #D32F2F;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-clear-category:hover {
    background: #D32F2F;
    color: #FFFFFF;
    border-color: #D32F2F;
}

.btn-clear-category i {
    font-size: 12px;
}
.products-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-by {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sort-by label {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}

.sort-by select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    background-color: transparent;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.view-toggle {
    display: flex;
    gap: 5px;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 4px;
}

.view-toggle button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.view-toggle button.active {
    background: #6b9b7f;
    color: white;
}

/* ========================================
   PRODUCTS GRID - DESKTOP 3 KOLOM
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: transparent;
}

.product-card {
    background: transparent;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: transparent;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #F2F3F7;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3e34;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 48px;
    background: #F2F3F7;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3e34;
    margin-bottom: 0;
}
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.page-link:hover {
    background-color: #f3f4f6;
    border-color: #6b9b7f;
    color: #6b9b7f;
}

.page-item.active .page-link {
    background-color: #6b9b7f;
    border-color: #6b9b7f;
    color: white;
}

.page-item.disabled .page-link,
.page-item.disabled .page-link-arrow {
    color: #d1d5db;
    pointer-events: none;
    opacity: 0.5;
    background: #f9fafb;
}

.page-link-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #4b5563;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    text-decoration: none;
}

.page-link-arrow:hover {
    background: #6b9b7f;
    color: white;
    border-color: #6b9b7f;
}
.empty-state-wrapper {
    grid-column: 1 / -1;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 20px 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.no-results i {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.no-results h4 {
    color: #4b5563;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-results p {
    color: #6b7280;
    margin-bottom: 20px;
}
.top-bar *:focus,
.main-header *:focus,
.nav-bar *:focus,
.header-actions a:focus,
.header-actions button:focus,
.search-bar input:focus,
.search-btn:focus,
.filter-btn:focus,
.mobile-menu-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.top-bar,
.main-header,
.nav-bar {
    position: relative;
    width: 100%;
}
.hero-collection {
    background: linear-gradient(90deg, rgba(224, 235, 227, 0.08) 0%, rgba(224, 235, 227, 0.538) 19.61%, #E0EBE3 57.62%, #E0EBE3 66.66%, rgba(224, 235, 227, 0.08) 100%);
    padding: 40px 0 20px 0;
    position: relative;
    overflow: visible;
    min-height: 260px;
    margin-bottom: 0;
}

.hero-decoration-left {
    position: absolute;
    width: 236px;
    height: 262px;
    left: -10px;
    top: -2px;
    z-index: 1;
}

.hero-decoration-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decoration-left-top {
    position: absolute;
    width: 195px;
    height: 167px;
    left: -88px;
    top: -56px;
    z-index: 2;
    transform: rotate(154.66deg);
}

.hero-decoration-left-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-collection .container {
    position: relative;
    z-index: 3;
    padding-top: 30px;
}
.hero-breadcrumb {
    margin-bottom: 8px;
    margin-top: -100px;
}

.hero-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Outfit';
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
}

.hero-breadcrumb .breadcrumb-item i {
    font-size: 14px;
    color: #507C5B;
}

.hero-breadcrumb .breadcrumb-item a {
    color: #659A71;
    text-decoration: none;
    font-weight: 400;
}

.hero-breadcrumb .breadcrumb-item span {
    color: #659A71;
    margin: 0 2px;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #507C5B;
    font-weight: 600;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: none;
}
.hero-collection h1 {
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
    color: #3F425A;
    margin-bottom: 4px;
    margin-top: 0;
}

.hero-collection .subtitle {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #696F96;
    margin-bottom: 26px;
    text-transform: capitalize;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
    transparent 0%, 
    #E0EBE3 25%, 
    #E0EBE3 75%, 
    transparent 100%
);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    -webkit-mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
    mask-image: linear-gradient(to right, black 0%, black 20%, transparent 50%, black 80%, black 100%);
}
.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 999;
    margin-bottom: -180px;
}

.hero-person-img {
    max-width: 100%;
    height: 462px;
    width: auto;
    max-height: 750px!important;
    object-fit: contain;
    position: relative;
    left: 90px;
    top: -30px;
}
.btn-progress {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
    background: #659A71;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.btn-progress:hover {
    background: #507C5B;
    color: #FFFFFF;
    box-shadow: none;
}

.btn-progress i {
    font-size: 20px;
}
/* ========================================
   FEATURES SECTION - Location (SESUAI DESAIN)
   ======================================== */

/* Wrapper untuk border full layar */
.features-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #99BC76; /* TETAP HIJAU seperti desain location */
    border-width: 1px 0px;
    border-style: dashed;
    border-color: #A5A8C0;
    padding: 0;
}

/* Container untuk membatasi width konten */
.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.features-section {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Mengikuti home */
    padding: 20px 0; /* Mengikuti home */
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    margin: 0;
}

/* Feature Card - Mengikuti struktur home */
.feature-card {
    display: flex;
    flex-direction: row;
    align-items: center; /* Center secara vertikal */
    padding: 0;
    gap: 12px; /* Mengikuti home */
    width: 100%;
    height: auto;
    background: transparent;
}

.feature-icon {
    width: 34px;
    height: 34px;
    flex: none;
    flex-shrink: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* TETAP PUTIH */
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
    display: block;
    stroke: #FFFFFF; /* TETAP PUTIH untuk stroke */
}

/* Untuk icon kedua (fill) */
.feature-card:nth-child(2) svg path {
    fill: #FFFFFF !important; /* TETAP PUTIH */
    stroke: none !important;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    height: auto;
    flex: 1;
    width: 100%;
}

.feature-text h3 {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #FFFFFF; /* TETAP PUTIH */
    margin: 0 0 4px 0;
    align-self: stretch;
}

.feature-text p {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #FFFFFF; /* TETAP PUTIH */
    opacity: 0.9; /* Sedikit transparan */
    margin: 0;
    align-self: stretch;
}

/* ========================================
   RESPONSIVE FEATURES - MOBILE (2x2 GRID)
   ======================================== */
@media (max-width: 1024px) {
    .features-section {
        gap: 16px;
    }
    
    .feature-card {
        gap: 10px;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
    }
    
    .feature-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .feature-text h3 {
        font-size: 14px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .features-wrapper {
        background: #99BC76 !important;
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
        padding: 20px 0 !important;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .feature-card {
        gap: 8px !important;
        justify-content: flex-start !important; /* Rata kiri di mobile */
    }
    
    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }
    
    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .feature-icon svg path {
        stroke: #FFFFFF !important; /* TETAP PUTIH */
    }
    
    .feature-card:nth-child(2) svg path {
        fill: #FFFFFF !important; /* TETAP PUTIH */
        stroke: none !important;
    }
    
    .feature-text h3 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
        color: #FFFFFF !important; /* TETAP PUTIH */
    }
    
    .feature-text p {
        font-size: 9px !important;
        line-height: 1.2 !important;
        color: #FFFFFF !important; /* TETAP PUTIH */
        opacity: 0.9 !important;
    }
}

@media (max-width: 430px) {
    .features-section {
        padding: 15px 0 !important;
    }
}

/* ========================================
   RESPONSIVE FEATURES - MOBILE (2x2 GRID)
   ======================================== */
@media (max-width: 1024px) {
    .features-section {
        gap: 16px;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
    }
    
    .feature-text h3 {
        font-size: 14px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .features-wrapper {
        background: #99BC76 !important;
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 12px !important;
        padding: 20px 0 !important;
    }
    
    .feature-card {
        gap: 8px !important;
        justify-content: flex-start !important; /* Rata kiri di mobile */
    }
    
    .feature-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }
    
    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .feature-text h3 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 2px !important;
    }
    
    .feature-text p {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 430px) {
    .features-section {
        padding: 15px 0 !important;
    }
    
    .features-container {
        padding: 0 20px;
    }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  
  .hero-breadcrumb {
    margin-top: -60px;
  }
  
  .hero-image-wrapper {
    height: 400px;
    margin-bottom: -120px;
  }
  
  .hero-person-img {
    left: 40px;
    top: -20px;
    max-height: 400px;
    margin-bottom: ;
    height: 400px;
  }
  
  .features-grid {
    transform: translateX(-180px);
    max-width: 800px;
    gap: 0px;
  }
  
  .feature-icon {
    width: 26px;
    height: 26px;
  }
  
  .feature-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .feature-content h3 {
    font-size: 12px;
  }
  
  .feature-content p {
    font-size: 10px;
    line-height: 150%;
  }
  
  .container-1440,
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
  
  .products-grid {
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  
  /* GLOBAL & CONTAINER */
  :root {
    --container-padding: 30px;
  }
  
  .container-1440,
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .hero-collection {
    padding: 40px 0 15px 0;
    min-height: 340px;
  }
  .hero-decoration-left {
    width: auto;
    height: 150px;
    left: 0px;
    top: 0px;
  }
  
  .hero-decoration-left-top {
    width: 150px;
    height: 130px;
    left: -60px;
    top: -40px;
  }
  
  /* Breadcrumb */
  .hero-breadcrumb {
    margin-top: -70px;
    margin-bottom: 10px;
  }
  
  .hero-breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
  
  .hero-breadcrumb .breadcrumb-item i {
    font-size: 13px;
  }
  .hero-collection h1 {
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 6px;
  }
  
  .hero-collection .subtitle {
    font-size: 13px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .btn-progress {
    font-size: 14px;
    padding: 8px 14px;
    gap: 10px;
  }
  
  .btn-progress i {
    font-size: 18px;
  }
  .hero-image-wrapper {
    height: 380px;
    margin-bottom: -130px;
  }
  
  .hero-person-img {
    height: 360px;
    max-height: 380px !important;
    left: 50px;
    margin-bottom: -20px;
  }
  .features-section {
    padding: 5px 100px;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 750px;
    transform: translateX(-150px);
    padding: 0 60px;
  }
  
  .feature-card {
    gap: 10px;
  }
  
  .feature-icon {
    width: 20px;
    height: 20px;
  }
  
  .feature-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .feature-content h3 {
    font-size: 10px;
    line-height: 130%;
    margin-bottom: 3px;
  }
  
  .feature-content p {
    font-size: 7px;
    line-height: 150%;
  }
  .filter-section {
    padding: 30px 0;
  }
  .filter-header {
    padding: 12px;
  }
  
  .filter-header h4 {
    font-size: 1.25rem;
  }
  
  .btn-reset-filter {
    font-size: 13px;
    padding: 7px 10px;
    gap: 5px;
  }
  
  .btn-reset-filter i {
    font-size: 13px;
  }
  .filter-sidebar {
    padding: 12px;
  }
  
  .filter-group h5 {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  
  .filter-group h5 i {
    font-size: 0.8rem;
  }
  .search-filter {
    margin-bottom: 12px;
  }
  
  .search-filter input {
    padding: 12px 18px 12px 36px;
    font-size: 13px;
  }
  
  .search-filter input::placeholder {
    font-size: 13px;
  }
  
  .search-filter i {
    left: 11px;
    font-size: 0.9rem;
  }
  .filter-options {
    max-height: 240px;
    padding-right: 6px;
    padding-left: 18px;
  }
  
  .filter-options::-webkit-scrollbar {
    width: 5px;
  }
  .form-check {
    padding: 7px 10px;
    gap: 10px;
  }
  
  .form-check-input {
    width: 18px;
    height: 18px;
  }
  
  .form-check-label {
    font-size: 13px;
    line-height: 150%;
  }
  .price-display {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .price-slider-wrapper {
    margin: 10px 0;
  }
  .active-filters-container {
    padding: 16px;
    margin-bottom: 14px;
  }
  
  .active-filters-tags-wrapper {
    gap: 12px;
  }
  
  .active-filters-tags {
    gap: 10px;
  }
  
  .filter-tag {
    padding: 8px 10px;
    gap: 10px;
    font-size: 13px;
  }
  
  .filter-tag i {
    font-size: 16px;
  }
  
  .btn-clear-all {
    font-size: 13px;
  }
  .category-menu {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .category-tab {
    padding: 9px 16px 18px 16px;
    font-size: 13px;
  }
  
  .btn-clear-category {
    padding: 9px 14px;
    font-size: 13px;
    gap: 5px;
  }
  
  .btn-clear-category i {
    font-size: 11px;
  }
  .products-header {
    margin-bottom: 20px;
    gap: 12px;
  }
  
  .products-controls {
    gap: 12px;
  }
  
  .sort-by {
    gap: 8px;
  }
  
  .sort-by label {
    font-size: 0.9rem;
  }
  
  .sort-by select {
    padding: 7px 28px 7px 11px;
    font-size: 0.85rem;
  }
  
  .view-toggle {
    padding: 3px;
    gap: 4px;
  }
  
  .view-toggle button {
    padding: 7px 10px;
    font-size: 0.85rem;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-card {
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
  }
  
  .product-card-body {
    padding: 14px;
  }
  
  .product-card-title {
    font-size: 0.9rem;
    min-height: 42px;
    margin-bottom: 7px;
  }
  
  .product-card-price {
    font-size: 1rem;
  }
  .pagination-wrapper {
    margin-top: 32px;
  }
  
  .pagination {
    gap: 6px;
  }
  
  .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
  
  .page-link-arrow {
    width: 36px;
    height: 36px;
  }
  .no-results {
    padding: 50px 20px;
  }
  
  .no-results i {
    font-size: 3.5rem;
  }
  
  .no-results h4 {
    font-size: 1.1rem;
  }
  
  .no-results p {
    font-size: 0.95rem;
  }
}
@media (max-width: 430px) {
    :root {
        --container-padding: 20px;
    }
    
    .container-1440,
    .container {
        padding: 0 20px;
    }
    
    body {
        overflow-x: hidden;
    }
    .hero-collection {
        padding: 30px 0 20px 0;
        min-height: auto;
        margin-top: 20px;
        text-align: center;
    }
    .hero-decoration-left,
    .hero-decoration-left-top {
        display: none;
    }
    
    .hero-grid {
        display: none;
    }
    .hero-collection .row {
        flex-direction: column;
    }
    
    .hero-collection .col-lg-7,
    .hero-collection .col-lg-5,
    .hero-collection .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .hero-breadcrumb {
        margin-top: 0;
        margin-bottom: 16px;
        justify-content: center;
    }
    
    .hero-breadcrumb .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-breadcrumb .breadcrumb-item {
        font-size: 12px;
    }
    .hero-collection h1 {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 8px;
        text-align: center;
    }
    .hero-collection .subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }
    .btn-progress {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 24px;
        display: inline-flex;
    }
    
    .btn-progress i {
        font-size: 18px;
    }
    .hero-image-wrapper {
        height: auto;
        margin-bottom: -50px;
        margin-right: 1px;
        margin-top: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-person-img {
        max-width: 100%;
        height: auto;
        margin-bottom: -250px;
        max-height: 100px ;
        left: 1px!important;
        top: -90px!important;
        position: relative;
    }

    /* ========================================
       FEATURES SECTION - MOBILE (MENGIKUTI LOCATION.CSS)
       ======================================== */
    .features-section {
        padding: 20px 0 !important;
        background: #99BC76 !important;
    }
    
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
    }
    
    .feature-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .feature-icon {
        width: 28px !important;
        height: 28px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .feature-icon svg {
        width: 100% !important;
        height: 100% !important;
    }
    
    .feature-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        flex: 1 !important;
    }
    
    .feature-content h3 {
        font-size: 14px !important;
        line-height: 130% !important;
        margin-bottom: 2px !important;
        color: white !important;
        font-weight: 700 !important;
        text-align: left !important;
    }
    
    .feature-content p {
        font-size: 12px !important;
        line-height: 140% !important;
        color: white !important;
        margin: 0 !important;
        font-weight: 400 !important;
        text-align: left !important;
        text-transform: capitalize !important;
    }
    
    .filter-section {
        padding: 20px 0;
    }
    
    .filter-section .row {
        flex-direction: column;
    }
    
    .filter-section .col-lg-3,
    .filter-section .col-lg-9 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .filter-header {
        padding: 12px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .filter-header h4 {
        font-size: 18px;
    }
    
    .btn-reset-filter {
        width: 100%;
        justify-content: center;
    }
    .filter-sidebar {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .filter-group h5 {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .search-filter input {
        padding: 12px 18px 12px 36px;
        font-size: 13px;
    }
    
    .filter-options {
        max-height: 200px;
        padding-left: 16px;
    }
    
    .form-check {
        padding: 6px 10px;
        gap: 10px;
    }
    
    .form-check-label {
        font-size: 13px;
    }
    .price-display {
        font-size: 13px;
    }
    .active-filters-container {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .active-filters-tags {
        gap: 8px;
    }
    
    .filter-tag {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
    }
    
    .filter-tag i {
        font-size: 16px;
    }
    
    .btn-clear-all {
        font-size: 12px;
    }
    .category-menu {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        gap: 8px;
        margin-bottom: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .category-menu::-webkit-scrollbar {
        height: 4px;
    }
    
    .category-menu::-webkit-scrollbar-track {
        background: #E1E2EA;
    }
    
    .category-menu::-webkit-scrollbar-thumb {
        background: #507C5B;
        border-radius: 4px;
    }
    
    .category-tab {
        padding: 8px 16px 16px 16px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-clear-category {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .products-header {
        margin-bottom: 16px;
        gap: 10px;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .sort-by {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .sort-by label {
        font-size: 14px;
    }
    
    .sort-by select {
        width: 100%;
        padding: 10px 30px 10px 12px;
        font-size: 13px;
    }
    
    .view-toggle {
        display: none;
    }
    
    /* ========================================
       PRODUCTS GRID - MOBILE 2 KOLOM
       ======================================== */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    }
    
    .product-card-body {
        padding: 16px 12px;
    }
    
    .product-card-title {
        font-size: 14px;
        min-height: 40px;
        margin-bottom: 8px;
    }
    
    .product-card-price {
        font-size: 16px;
    }
    .pagination-wrapper {
        margin-top: 24px;
    }
    
    .pagination {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 13px;
    }
    
    .page-link-arrow {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .pagination .page-item:nth-child(n+6):nth-last-child(n+3) {
        display: none;
    }
    .no-results {
        padding: 40px 20px;
    }
    
    .no-results i {
        font-size: 3rem;
    }
    
    .no-results h4 {
        font-size: 18px;
    }
    
    .no-results p {
        font-size: 14px;
    }
}
@media  (max-width: 1024px) {
  :root {
    --container-padding: 30px;
  }
  
  .container-1440,
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .hero-collection {
    padding: 40px 0 15px 0;
    margin-top: 20px;
    min-height: 340px;
  }
  .hero-decoration-left {
    width: auto;
    height: 150px;
    left: 0px;
    top: 0px;
  }
  
  .hero-decoration-left-top {
    width: 150px;
    height: 130px;
    left: -60px;
    top: -40px;
  }
  .hero-breadcrumb {
    margin-top: -70px;
    margin-bottom: 10px;
  }
  
  .hero-breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
  
  .hero-breadcrumb .breadcrumb-item i {
    font-size: 13px;
  }
  .hero-collection h1 {
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 6px;
  }
  
  .hero-collection .subtitle {
    font-size: 13px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .btn-progress {
    font-size: 14px;
    padding: 8px 14px;
    gap: 10px;
  }
  
  .btn-progress i {
    font-size: 18px;
  }
  .hero-image-wrapper {
    height: 380px;
    margin-bottom: -130px;
  }
  
  .hero-person-img {
    height: 360px;
    max-height: 380px !important;
    left: 50px;
    top: -20px;
  }
  .features-section {
    padding: 5px 100px;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 750px;
    transform: translateX(-150px);
    padding: 0 60px;
  }
  
  .feature-card {
    gap: 10px;
  }
  
  .feature-icon {
    width: 20px;
    height: 20px;
  }
  
  .feature-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .feature-content h3 {
    font-size: 10px;
    line-height: 130%;
    margin-bottom: 3px;
  }
  
  .feature-content p {
    font-size: 7px;
    line-height: 150%;
  }
  .filter-section {
    padding: 30px 0;
  }
  .filter-header {
    padding: 12px;
  }
  
  .filter-header h4 {
    font-size: 1.25rem;
  }
  .btn-reset-filter {
    font-size: 13px;
    padding: 7px 10px;
    gap: 5px;
  }
  
  .btn-reset-filter i {
    font-size: 13px;
  }
  .filter-sidebar {
    padding: 12px;
  }
  
  .filter-group h5 {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  
  .filter-group h5 i {
    font-size: 0.8rem;
  }
  .search-filter {
    margin-bottom: 12px;
  }
  
  .search-filter input {
    padding: 12px 18px 12px 36px;
    font-size: 13px;
  }
  
  .search-filter input::placeholder {
    font-size: 13px;
  }
  
  .search-filter i {
    left: 11px;
    font-size: 0.9rem;
  }
  .filter-options {
    max-height: 240px;
    padding-right: 6px;
    padding-left: 18px;
  }
  
  .filter-options::-webkit-scrollbar {
    width: 5px;
  }
  .form-check {
    padding: 7px 10px;
    gap: 10px;
  }
  
  .form-check-input {
    width: 18px;
    height: 18px;
  }
  
  .form-check-label {
    font-size: 13px;
    line-height: 150%;
  }
  .price-display {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .price-slider-wrapper {
    margin: 10px 0;
  }
  .active-filters-container {
    padding: 16px;
    margin-bottom: 14px;
  }
  
  .active-filters-tags-wrapper {
    gap: 12px;
  }
  
  .active-filters-tags {
    gap: 10px;
  }
  
  .filter-tag {
    padding: 8px 10px;
    gap: 10px;
    font-size: 13px;
  }
  
  .filter-tag i {
    font-size: 16px;
  }
  
  .btn-clear-all {
    font-size: 13px;
  }
  .category-menu {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .category-tab {
    padding: 9px 16px 18px 16px;
    font-size: 13px;
  }
  
  .btn-clear-category {
    padding: 9px 14px;
    font-size: 13px;
    gap: 5px;
  }
  
  .btn-clear-category i {
    font-size: 11px;
  }
  .products-header {
    margin-bottom: 20px;
    gap: 12px;
  }
  
  .products-controls {
    gap: 12px;
  }
  
  .sort-by {
    gap: 8px;
  }
  
  .sort-by label {
    font-size: 0.9rem;
  }
  
  .sort-by select {
    padding: 7px 28px 7px 11px;
    font-size: 0.85rem;
  }
  
  .view-toggle {
    padding: 3px;
    gap: 4px;
  }
  
  .view-toggle button {
    padding: 7px 10px;
    font-size: 0.85rem;
  }
  
  /* ========================================
     PRODUCTS GRID - TABLET 3 KOLOM
     ======================================== */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-card {
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
  }
  
  .product-card-body {
    padding: 14px;
  }
  
  .product-card-title {
    font-size: 0.9rem;
    min-height: 42px;
    margin-bottom: 7px;
  }
  
  .product-card-price {
    font-size: 1rem;
  }
  .pagination-wrapper {
    margin-top: 32px;
  }
  
  .pagination {
    gap: 6px;
  }
  
  .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
  
  .page-link-arrow {
    width: 36px;
    height: 36px;
  }
  .no-results {
    padding: 50px 20px;
  }
  
  .no-results i {
    font-size: 3.5rem;
  }
  
  .no-results h4 {
    font-size: 1.1rem;
  }
  
  .no-results p {
    font-size: 0.95rem;
  }
}

/* ========================================
   FORCE MOBILE 2 COLUMNS - OVERRIDE TABLET STYLES
   ======================================== */
@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card-body {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .product-card-title,
    .product-card-price {
        text-align: left !important;
    }
}

/* ========================================
   MOBILE CONTAINER FIX
   Override the 30px padding from tablet media query
   ======================================== */
@media screen and (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
    .container {
        padding: 0 20px;
    }
}

/* ========================================
   PAKSA REDUCE HERO TO HEADER DISTANCE
   ======================================== */

/* Desktop */
.hero-collection {
    margin-top: 0 !important;
    padding-top: 20px !important; /* Kurangi dari 40px/60px */
}

.hero-breadcrumb {
    margin-top: -30px !important; /* Kurangi dari -70px/-100px */
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .hero-collection {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .hero-breadcrumb {
        margin-top: -40px !important;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .hero-collection {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }
    
    .hero-breadcrumb {
        margin-top: -20px !important;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .hero-collection {
        margin-top: 0 !important;
        padding-top: 5px !important;
    }
    
    .hero-breadcrumb {
        margin-top: 0 !important; /* Tidak perlu margin negatif di mobile */
    }
}

/* Untuk layar sangat kecil */
@media (max-width: 430px) {
    .hero-collection {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }
}

/* ========================================
   KHUSUS: HERO IMAGE NEMPEL & TIDAK KELUAR JALUR
   SEARCH PAGE - FINAL FIX
   ======================================== */

/* DESKTOP LARGE (1400px ke atas) */
@media screen and (min-width: 1400px) {
    .hero-person-img {
        position: relative !important;
        height: 460px !important;
        max-height: 480px !important;
        width: auto !important;
        max-width: 100% !important;
        left: 50px !important;
        top: -10px !important;
        margin-bottom: -80px !important; /* NEMPEL */
        object-fit: contain !important;
        object-position: bottom center !important;
        display: block !important;
    }
}

/* DESKTOP (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .hero-person-img {
        height: 420px !important;
        max-height: 440px !important;
        left: 40px !important;
        top: -5px !important;
        margin-bottom: -70px !important;
    }
}

/* SMALL DESKTOP (1024px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 1024px) {
    .hero-person-img {
        height: 380px !important;
        max-height: 400px !important;
        left: 30px !important;
        top: 0 !important;
        margin-bottom: -60px !important;
    }
}

/* ========================================
   MOBILE & TABLET - IMAGE TENGAH & NEMPEL
   ======================================== */

/* Tablet Landscape (900px - 1023px) */
@media screen and (max-width: 1023px) and (min-width: 900px) {
    .hero-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 320px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-person-img {
        position: relative !important;
        height: 320px !important;
        max-height: 340px !important;
        width: auto !important;
        max-width: 90% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -50px !important; /* NEMPEL */
        display: block !important;
        object-fit: contain !important;
        object-position: bottom center !important;
    }
}

/* Tablet (768px - 899px) */
@media screen and (max-width: 899px) and (min-width: 768px) {
    .hero-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 300px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-person-img {
        height: 300px !important;
        max-height: 320px !important;
        max-width: 85% !important;
        left: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -45px !important;
    }
}

/* Mobile Large (576px - 767px) */
@media screen and (max-width: 767px) and (min-width: 576px) {
    .hero-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 280px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-person-img {
        height: 280px !important;
        max-height: 300px !important;
        max-width: 80% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -40px !important;
    }
}

/* Mobile Medium (431px - 575px) */
@media screen and (max-width: 575px) and (min-width: 431px) {
    .hero-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 260px !important;
        margin-bottom: 0 !important;
    }
    
    .hero-person-img {
        height: 260px !important;
        max-height: 280px !important;
        max-width: 75% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -35px !important;
    }
}

/* Mobile Small (376px - 430px) */
@media screen and (max-width: 430px) {
    .hero-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 240px !important;
        margin-bottom: 0 !important;
        margin-top: 20px !important;
    }
    
    .hero-person-img {
        height: 240px !important;
        max-height: 260px !important;
        max-width: 70% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 auto !important;
        margin-bottom: -30px !important;
        position: relative !important;
    }
}

/* Mobile Extra Small (320px - 375px) */
@media screen and (max-width: 375px) {
    .hero-image-wrapper {
        min-height: 220px !important;
    }
    
    .hero-person-img {
        height: 220px !important;
        max-height: 240px !important;
        max-width: 65% !important;
        margin-bottom: -25px !important;
    }
}

/* iPhone SE (320px ke bawah) */
@media screen and (max-width: 320px) {
    .hero-image-wrapper {
        min-height: 200px !important;
    }
    
    .hero-person-img {
        height: 200px !important;
        max-height: 220px !important;
        max-width: 60% !important;
        margin-bottom: -20px !important;
    }
}

/* ========================================
   FORCE ATTACHMENT - PAKSA NEMPEL
   ======================================== */

/* Pastikan hero section tidak potong image */
.hero-collection {
    overflow: visible !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.hero-collection .container {
    overflow: visible !important;
}

/* Image wrapper */
.hero-image-wrapper {
    overflow: visible !important;
    z-index: 10 !important;
    pointer-events: none; /* Biar klik tembus ke button */
}

/* Image itu sendiri */
.hero-person-img {
    pointer-events: none; /* Biar tidak mengganggu klik */
    z-index: 15 !important;
}

/* Section berikutnya (features) nempel */
.features-wrapper {
    margin-top: 0 !important;
    position: relative !important;
    z-index: 5 !important;
}

/* ========================================
   SAFARI / WEBKIT SPESIFIC
   ======================================== */
@supports (-webkit-touch-callout: none) {
    .hero-person-img {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
    
    .hero-image-wrapper {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
}

/* ========================================
   DEBUG VISUAL - Hapus komentar untuk cek
   ======================================== */
/*
.hero-image-wrapper { outline: 2px solid red; }
.hero-person-img { outline: 2px solid green; }
.features-wrapper { outline: 2px solid blue; }
*/