@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --light: #ffffff;         
    --grey: #fdf2f8;          
    --dark: #111827;          
    --dark-grey: #6b7280;     

    --primary: #c2185b;       
    --light-primary: #fce7f3; 

    --danger: #e11d48;        
    --light-danger: #ffe4e6;

    --warning: #d97706;       
    --light-warning: #fef3c7;

    --success: #16a34a;       
    --light-success: #dcfce7;

    --pink-border: #fbcfe8;   
}

body.dark {
    --light: #181a1e;         
    --grey: #111214;          
    --dark: #fbfbfb;          
    --dark-grey: #9ca3af;     

    --primary: #e2558e;       
    --light-primary: #38222c; 

    --danger: #f43f5e;
    --light-danger: #4c1d24;

    --warning: #fbbf24;
    --light-warning: #451a03;

    --success: #22c55e;
    --light-success: #14532d;

    --pink-border: #3d2b33;   
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.bx{
    font-size: 1.7rem;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

html{
    overflow-x: hidden;
}

body{
    background: var(--grey);
    overflow-x: hidden;
}

.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    background: var(--light);
    width: 230px;
    height: 100%;
    z-index: 2000;
    overflow-x: hidden;
    scrollbar-width: none;
    transition: all 0.3s ease;
}

.sidebar::-webkit-scrollbar{
    display: none;
}

.sidebar.close{
    width: 60px;
}

.sidebar .logo{
    font-size: 24px;
    font-weight: 700;
    height: 56px;
    display: flex;
    align-items: center;
    color: var(--primary);
    z-index: 500;
    padding-bottom: 20px;
    box-sizing: content-box;
}

.sidebar .logo .logo-name span{
    color: var(--dark);
}

.sidebar .logo .bx{
    min-width: 60px;
    display: flex;
    justify-content: center;
    font-size: 2.2rem;
}

.sidebar .side-menu{
    width: 100%;
    margin-top: 48px;
}

.sidebar .side-menu li{
    height: 48px;
    background: transparent;
    margin-left: 6px;
    border-radius: 48px 0 0 48px;
    padding: 4px;
}

.sidebar .side-menu li.active{
    background: var(--grey);
    position: relative;
}

.sidebar .side-menu li.active::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -40px;
    right: 0;
    box-shadow: 20px 20px 0 var(--grey);
    z-index: -1;
}

.sidebar .side-menu li.active::after{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: -40px;
    right: 0;
    box-shadow: 20px -20px 0 var(--grey);
    z-index: -1;
}

.sidebar .side-menu li a{
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    border-radius: 48px;
    font-size: 16px;
    color: var(--dark);
    white-space: nowrap;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.sidebar .side-menu li.active a{
    color: var(--primary);
}

.sidebar.close .side-menu li a{
    width: calc(48px - (4px * 2));
    transition: all 0.3s ease;
}

.sidebar .side-menu li a .bx{
    min-width: calc(60px - ((4px + 6px) * 2));
    display: flex;
    font-size: 1.6rem;
    justify-content: center;
}

.sidebar .side-menu li a.logout{
    color: var(--danger);
}

.content{
    position: relative;
    width: calc(100% - 230px);
    left: 230px;
    transition: all 0.3s ease;
}

.sidebar.close~.content{
    width: calc(100% - 60px);
    left: 60px;
}

.content nav{
    height: 56px;
    background: var(--light);
    padding: 0 24px 0 0;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.content nav::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 0;
    border-radius: 50%;
    box-shadow: -20px -20px 0 var(--light);
}

.content nav a{
    color: var(--dark);
}

.content nav .bx.bx-menu{
    cursor: pointer;
    color: var(--dark);
}

.content nav form{
    max-width: 400px;
    width: 100%;
    margin-right: auto;
}

.content nav form .form-input{
    display: flex;
    align-items: center;
    height: 36px;
}

.content nav form .form-input input{
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    background: var(--grey);
    border-radius: 36px 0 0 36px;
    outline: none;
    width: 100%;
    color: var(--dark);
}

.content nav form .form-input button{
    width: 80px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: var(--light);
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 0 36px 36px 0;
    cursor: pointer;
}

.content nav .notif{
    font-size: 20px;
    position: relative;
}

.content nav .notif .count{
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    border-radius: 50%;
    color: var(--light);
    border: 2px solid var(--light);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content nav .profile img{
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

.content nav .theme-toggle{
    display: block;
    min-width: 50px;
    height: 25px;
    background: var(--grey);
    cursor: pointer;
    position: relative;
    border-radius: 25px;
}

.content nav .theme-toggle::before{
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: calc(25px - 4px);
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.content nav #theme-toggle:checked+.theme-toggle::before{
    left: calc(100% - (25px - 4px) - 2px);
}

.content main{
    width: 100%;
    padding: 36px 24px;
    max-height: calc(100vh - 56px);
}

.content main .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
    flex-wrap: wrap;
}

.content main .header .left h1{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.content main .header .left .breadcrumb{
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

.content main .header .left .breadcrumb li{
    color: var(--dark);
}

.content main .header .left .breadcrumb li a{
    color: var(--dark-grey);
    pointer-events: none;
}

.content main .header .left .breadcrumb li a.active{
    color: var(--primary);
    pointer-events: none;
}

.content main .header .report{
    height: 36px;
    padding: 0 16px;
    border-radius: 36px;
    background: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    font-weight: 500;
}

.content main .insights{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 24px;
    margin-top: 36px;
}

.content main .insights li{
    padding: 24px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    cursor: pointer;
}

.content main .insights li .bx{
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content main .insights li:nth-child(1) .bx{
    background: var(--light-primary);
    color: var(--primary);
}

.content main .insights li:nth-child(2) .bx{
    background: var(--light-warning);
    color: var(--warning);
}

.content main .insights li:nth-child(3) .bx{
    background: var(--light-success);
    color: var(--success);
}

.content main .insights li:nth-child(4) .bx{
    background: var(--light-danger);
    color: var(--danger);
}

.content main .insights li .info h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

.content main .insights li .info p{
    color: var(--dark);
}

.content main .bottom-data{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 24px;
    margin-top: 24px;
    width: 100%;
    color: var(--dark);
}

.content main .bottom-data>div{
    border-radius: 20px;
    background: var(--light);
    padding: 24px;
    overflow-x: auto;
}

.content main .bottom-data .header{
    display: flex;
    align-items: center;
    grid-gap: 16px;
    margin-bottom: 24px;
}

.content main .bottom-data .header h3{
    margin-right: auto;
    font-size: 24px;
    font-weight: 600;
}

.content main .bottom-data .header .bx{
    cursor: pointer;
}

.content main .bottom-data .orders{
    flex-grow: 1;
    flex-basis: 500px;
}

.content main .bottom-data .orders table{
    width: 100%;
    border-collapse: collapse;
}

.content main .bottom-data .orders table th{
    padding-bottom: 12px;
    font-size: 13px;
    text-align: left;
    border-bottom: 1px solid var(--grey);
}

.content main .bottom-data .orders table td{
    padding: 16px 0;
}

.content main .bottom-data .orders table tr td:first-child{
    display: flex;
    align-items: center;
    grid-gap: 12px;
    padding-left: 6px;
}

.content main .bottom-data .orders table td img{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.content main .bottom-data .orders table tbody tr{
    cursor: pointer;
    transition: all 0.3s ease;
}

.content main .bottom-data .orders table tbody tr:hover{
    background: var(--grey);
}

.content main .bottom-data .orders table tr td .status{
    font-size: 10px;
    padding: 6px 16px;
    color: var(--light);
    border-radius: 20px;
    font-weight: 700;
}

.content main .bottom-data .orders table tr td .status.completed{
    background: var(--success);
}

.content main .bottom-data .orders table tr td .status.process{
    background: var(--primary);
}

.content main .bottom-data .orders table tr td .status.pending{
    background: var(--warning);
}

.content main .bottom-data .reminders{
    flex-grow: 1;
    flex-basis: 300px;
}

.content main .bottom-data .reminders .task-list{
    width: 100%;
}

.content main .bottom-data .reminders .task-list li{
    width: 100%;
    margin-bottom: 16px;
    background: var(--grey);
    padding: 14px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content main .bottom-data .reminders .task-list li .task-title{
    display: flex;
    align-items: center;
}

.content main .bottom-data .reminders .task-list li .task-title p{
    margin-left: 6px;
}

.content main .bottom-data .reminders .task-list li .bx{
  cursor: pointer;  
}

.content main .bottom-data .reminders .task-list li.completed{
    border-left: 10px solid var(--success);
}

.content main .bottom-data .reminders .task-list li.not-completed{
    border-left: 10px solid var(--danger);
}

.content main .bottom-data .reminders .task-list li:last-child{
   margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .sidebar{
        width: 200px;
    }

    .content{
        width: calc(100% - 60px);
        left: 200px;
    }

}

@media screen and (max-width: 576px) {
    
    .content nav form .form-input input{
        display: none;
    }

    .content nav form .form-input button{
        width: auto;
        height: auto;
        background: transparent;
        color: var(--dark);
        border-radius: none;
    }

    .content nav form.show .form-input input{
        display: block;
        width: 100%;
    }

    .content nav form.show .form-input button{
        width: 36px;
        height: 100%;
        color: var(--light);
        background: var(--danger);
        border-radius: 0 36px 36px 0;
    }

    .content nav form.show~.notif, .content nav form.show~.profile{
        display: none;
    }

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

    .content main .bottom-data .header{
        min-width: 340px;
    }

    .content main .bottom-data .orders table{
        min-width: 340px;
    }

    .content main .bottom-data .reminders .task-list{
        min-width: 340px;
    }

}

/* ==========================================================================
   MANUAL POSITIONING FOR ACCOUNT DASHBOARD (NO TAILWIND DEPENDENCY)
   ========================================================================== */

.account-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.account-sidebar-card {
    flex: 0 0 300px;
    width: 300px;
}

.account-main-content {
    flex: 1;
    min-width: 0;
}

@media screen and (max-width: 992px) {
    .account-layout {
        flex-direction: column;
    }
    .account-sidebar-card {
        width: 100%;
        flex: 1;
    }
}

/* Profile Card Styling */
.profile-card {
    background: var(--light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-photo-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 16px;
}

.profile-photo-container img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--grey);
    cursor: pointer;
}

.photo-loading-spinner {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.profile-card h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-card p {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

.btn-edit-profile {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit-profile:hover {
    background: var(--light-primary);
}

/* Stats Layout */
.account-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.stat-box {
    background: var(--grey);
    padding: 14px 8px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-grey);
}

.stat-num {
    font-size: 22px;
    font-weight: 800;
}

.stat-num-price {
    font-size: 15px;
    font-weight: 800;
}

/* Section Box Styling */
.account-section-panel {
    background: var(--light);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    color: var(--dark);
}

.account-section-panel.hidden {
    display: none !important;
}

.panel-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.list-container-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-state {
    background: var(--grey);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    color: var(--dark-grey);
    font-size: 14px;
}

/* Modals */
.custom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 16px;
}

.custom-modal.hidden {
    display: none !important;
}

.modal-content {
    background: var(--light);
    color: var(--dark);
    padding: 24px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
}

.max-w-sm { max-width: 360px; }
.max-w-md { max-width: 460px; }

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

.modal-subtitle {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.btn-close-modal {
    background: var(--grey);
    color: var(--dark);
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.detail-box {
    background: var(--grey);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.detail-box h4 {
    margin-bottom: 10px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 4px;
}

.flex-row-justify {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.total-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--danger);
}

/* Toast */
.toast-popup {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.toast-popup.hidden { display: none; }

/* Option stack list inside profile modal */
.modal-options-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: var(--grey);
    border: 1px solid transparent;
    padding: 14px;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    color: var(--dark);
    transition: transform 0.2s;
}

.option-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.option-btn .icon { font-size: 24px; }
.option-btn p { font-size: 12px; color: var(--dark-grey); }

.crop-frame-container {
    width: 100%;
    max-height: 360px;
    background: #000;
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
}

.modal-footer-btns {
    display: flex;
    gap: 12px;
}

.btn-primary {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    flex: 1;
    background: var(--grey);
    color: var(--dark);
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.btn-action-sm {
    background: var(--warning);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

/* ==========================================================================
   PERBAIKAN MEMBERSHIP SLIDER (ANTI KEPOTONG / OVERFLOW)
   ========================================================================== */
.member-shell {
    width: 100%;
    max-width: 100%; /* Kunci agar tidak melebar keluar batas main content */
    overflow: hidden;
    border: 1px solid var(--grey);
    border-radius: 20px;
    padding: 16px;
    background: var(--grey);
    box-sizing: border-box;
}

.member-carousel {
    display: flex; /* Menggunakan Flexbox agar lebih stabil ukurannya */
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch; /* Smooth scroll di HP */
}

.member-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.member-slide {
    /* Lebar card 100% dikurangi sedikit biar user sadar ada kartu lain di kanannya */
    flex: 0 0 calc(100% - 10px);
    max-width: 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
}

.member-card {
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    min-height: 220px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Tambahan shadow halus */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.member-badge-label {
    align-self: flex-start; /* Biar label tidak melar ke samping */
    background: var(--grey);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.member-card h2 { 
    font-size: 24px; /* Disesuaikan agar teks tidak menabrak batas saat di layar kecil */
    font-weight: 800; 
    margin-bottom: 8px; 
    line-height: 1.2;
}

.member-benefit { 
    font-size: 13px; 
    margin-top: 6px; 
}

.member-progress-text { 
    font-size: 12px; 
    margin-top: 16px; 
    color: var(--dark-grey); 
}

.member-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--grey);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.member-progress-fill {
    height: 100%;
    background: var(--success);
    width: 0%;
    transition: width 0.4s ease;
}

/* ==========================================================================
   1. PERBAIKAN SLIDER MEMBERSHIP (ANTI KEPOTONG/OVERFLOW)
   ========================================================================== */
.account-main-content {
    flex: 1;
    min-width: 0; /* WAJIB: Mencegah flexbox melebar melampaui layar */
    width: 100%;
    overflow: hidden; 
}

.account-section-panel {
    background: var(--light);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    color: var(--dark);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* WAJIB */
}

.member-shell {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Mencegah slider nembus kotak */
    border: 1px solid var(--grey);
    border-radius: 20px;
    padding: 16px;
    background: var(--grey);
}

.member-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 8px; /* Ruang untuk efek shadow */
}

.member-carousel::-webkit-scrollbar { display: none; }

.member-slide {
    flex: 0 0 88%; /* Ukuran kartu 88% biar kartu di sebelahnya ngintip dikit */
    min-width: 260px;
    max-width: 100%;
    scroll-snap-align: center;
}

.member-card {
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    min-height: 220px;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* ==========================================================================
   2. DESAIN KARTU HISTORY (PENGGANTI TAILWIND CLASS)
   ========================================================================== */
.data-card {
    background: var(--light);
    border: 1px solid var(--grey);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}
.data-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.data-card-title { font-size: 16px; font-weight: 700; color: var(--dark); }
.data-card-subtitle { font-size: 12px; color: var(--dark-grey); margin-bottom: 4px; }

/* Status Badges */
.status-badge { font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 20px; display: inline-block;}
.status-paid, .status-success { background: var(--light-success); color: var(--success); }
.status-pending { background: var(--light-warning); color: var(--warning); }
.status-cancelled { background: var(--light-danger); color: var(--danger); }

.data-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
}

.tracking-box {
    background: var(--grey);
    border-radius: 12px;
    padding: 12px;
    margin-top: 12px;
}

.wishlist-item {
    display: flex;
    gap: 16px;
    align-items: center;
}
.wishlist-img {
    width: 80px; height: 80px; border-radius: 12px; object-fit: cover;
}
.action-btn-icon {
    font-size: 20px; background: transparent; border: none; cursor: pointer; color: var(--dark);
}
