/* ============================================================
   MY ACCOUNT / PROFILE — redesigned for a cleaner e-commerce feel
   Palette: forest / brass / ivory (matches header.css tokens)
   ============================================================ */

.pf-page-bg {
    background: #FAF8F3;
}

/* ---------- breadcrumb ---------- */
.pf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 0 18px;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12.5px;
}

.pf-breadcrumb a {
    color: #8a8577;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pf-breadcrumb a:hover {
    color: #334633;
}

.pf-breadcrumb span {
    color: #C9A15D;
    font-size: 9px;
}

.pf-breadcrumb em {
    font-style: normal;
    color: #334633;
    font-weight: 700;
}

/* ---------- profile banner ---------- */
.pf-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(120deg, #334633, #24321f);
    border-radius: 12px;
    padding: 34px 40px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.pf-banner::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.pf-banner-left {
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.pf-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.pf-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(160deg, #e6c98a, #C9A15D);
    color: #24321f;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.pf-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    color: #334633;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.pf-avatar-edit:hover {
    background-color: #C9A15D;
    color: #fff;
}

.pf-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 161, 93, 0.4);
    color: #e6c98a;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.pf-member-badge i {
    font-size: 9px;
}

.pf-banner-info h1 {
    font-family: 'Lora', serif;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px !important;
}

.pf-banner-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-banner-info p i {
    color: #C9A15D;
}

.pf-banner-stats {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 6px 4px;
}

.pf-stat {
    text-align: center;
    padding: 10px 24px;
    position: relative;
}

.pf-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.pf-stat-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.pf-stat-label {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #C9A15D;
}

/* ---------- body grid ---------- */
.pf-body-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 26px;
    align-items: start;
    margin-bottom: 40px;
}

/* ---------- sidebar nav ---------- */
.pf-sidenav {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pf-nav-list {
    background-color: #fff;
    border: 1px solid #f0ece1;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(51, 70, 51, 0.04);
}

.pf-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 12px 14px;
    border-radius: 7px;
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #55584f;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.pf-nav-link i {
    width: 16px;
    text-align: center;
    color: #C9A15D;
    font-size: 14px;
}

.pf-nav-link:hover {
    background-color: rgba(201, 161, 93, 0.1);
    color: #334633;
}

.pf-nav-link.active {
    background-color: #334633;
    color: #fff;
}

.pf-nav-link.active i {
    color: #e6c98a;
}

.pf-nav-logout {
    margin-top: 4px;
    border-top: 1px solid #f0ece1;
    padding-top: 14px;
    color: #b9432f;
}

.pf-nav-logout i {
    color: #b9432f;
}

.pf-nav-logout:hover {
    background-color: rgba(185, 67, 47, 0.08);
    color: #b9432f;
}

.pf-side-note {
    background: #334633;
    border-radius: 10px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pf-side-note::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.pf-side-note-icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 161, 93, 0.18);
    color: #e6c98a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 12px;
}

.pf-side-note p {
    position: relative;
    z-index: 1;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    margin-bottom: 14px !important;
}

.pf-side-note-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #C9A15D;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.pf-side-note-link:hover {
    gap: 12px;
    color: #e6c98a;
}

/* ---------- content area ---------- */
.pf-content {
    min-width: 0;
    background: #fff;
    border: 1px solid #f0ece1;
    border-radius: 10px;
    padding: 30px 32px;
    box-shadow: 0 4px 16px rgba(51, 70, 51, 0.04);
}

.pf-tab-pane {
    display: none;
}

.pf-tab-pane.active {
    display: block;
    animation: pfFadeIn 0.35s ease;
}

@keyframes pfFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ece1;
}

.pf-section-head h2 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    color: #334633;
    margin: 0;
}

.pf-subsection-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 16px;
}

.pf-subsection-head h3 {
    font-family: 'Lora', serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #334633;
    margin: 0;
}

.pf-view-all {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #C9A15D;
    cursor: pointer;
    transition: gap 0.2s ease;
}

.pf-view-all:hover {
    gap: 10px;
}

/* ---------- overview quick cards ---------- */
.pf-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.pf-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #FAF8F3;
    border: 1px solid #f0ece1;
    border-radius: 10px;
    padding: 18px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pf-quick-card:hover {
    border-color: #C9A15D;
    transform: translateY(-2px);
}

.pf-quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #334633;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-quick-icon i {
    font-size: 16px;
    color: #e6c98a;
}

.pf-quick-num {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 700;
    color: #334633;
    margin-bottom: 1px !important;
}

.pf-quick-label {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #a8a196;
    margin-bottom: 0 !important;
}

/* ---------- order cards ---------- */
.pf-order-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pf-filter-chip {
    background: transparent;
    border: 1.5px solid #e4e0d6;
    color: #55584f;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-filter-chip:hover {
    border-color: #C9A15D;
    color: #334633;
}

.pf-filter-chip.active {
    background-color: #334633;
    border-color: #334633;
    color: #fff;
}

.pf-order-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-order-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border: 1px solid #f0ece1;
    border-radius: 10px;
    padding: 14px 18px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.pf-order-card:hover {
    box-shadow: 0 10px 24px rgba(51, 70, 51, 0.08);
    border-color: #e6dfcd;
}

.pf-order-img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f6f3ec;
}

.pf-order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-order-info {
    flex: 1;
    min-width: 0;
}

.pf-order-id {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 700;
    color: #334633;
    margin-bottom: 3px !important;
}

.pf-order-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #8a8577;
    margin-bottom: 6px !important;
}

.pf-order-right {
    text-align: right;
    flex-shrink: 0;
}

.pf-order-total {
    font-family: 'Lora', serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #334633;
    margin-bottom: 0 !important;
}

.pf-order-card .pf-status {
    margin-bottom: 6px;
    display: inline-block;
}

.pf-status {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
}

.pf-status-delivered {
    background-color: rgba(51, 70, 51, 0.1);
    color: #334633;
}

.pf-status-in-transit {
    background-color: rgba(201, 161, 93, 0.18);
    color: #a97a2f;
}

.pf-status-cancelled {
    background-color: rgba(185, 67, 47, 0.1);
    color: #b9432f;
}

.pf-order-card-lg {
    align-items: center;
}

.pf-order-card-lg .pf-order-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.pf-order-btn {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #334633;
    border: 1.5px solid #334633;
    padding: 7px 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s ease;
}

.pf-order-btn:hover {
    background-color: #334633;
    color: #fff;
}

/* ---------- wishlist ---------- */
.pf-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pf-wish-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #f0ece1;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.pf-wish-card:hover {
    box-shadow: 0 16px 32px rgba(51, 70, 51, 0.1);
    transform: translateY(-3px);
    border-color: #e6dfcd;
}

.pf-wish-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    border: none;
    color: #b9432f;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s ease;
}

.pf-wish-remove:hover {
    background-color: #b9432f;
    color: #fff;
}

.pf-wish-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f6f3ec;
    overflow: hidden;
}

.pf-wish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-wish-card:hover .pf-wish-img img {
    transform: scale(1.06);
}

.pf-wish-body {
    padding: 16px;
}

.pf-wish-title {
    font-family: 'Lora', serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #334633;
    min-height: 36px;
    margin-bottom: 10px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pf-wish-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pf-wish-price {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 700;
    color: #334633;
}

.pf-wish-old {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: #a8a196;
    text-decoration: line-through;
}

.pf-wish-cart-btn {
    width: 100%;
    background-color: #334633;
    color: #fff;
    border: none;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 10px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-wish-cart-btn:hover {
    background-color: #C9A15D;
    color: #24321f;
}

/* ---------- addresses ---------- */
.pf-add-btn {
    background-color: #334633;
    color: #fff;
    border: none;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-add-btn:hover {
    background-color: #24321f;
}

.pf-address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pf-addr-card {
    position: relative;
    background-color: #FAF8F3;
    border-radius: 10px;
    padding: 22px;
    border: 1.5px solid #f0ece1;
}

.pf-addr-default {
    border-color: #C9A15D;
    background-color: #fff;
}

.pf-addr-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: #C9A15D;
    color: #fff;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
}

.pf-addr-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #334633;
    margin-bottom: 12px;
}

.pf-addr-label i {
    color: #C9A15D;
}

.pf-addr-name {
    font-family: 'Lora', serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #334633;
    margin-bottom: 6px !important;
}

.pf-addr-line {
    font-family: 'Raleway', sans-serif;
    font-size: 12.5px;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 12px !important;
}

.pf-addr-phone {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-addr-phone i {
    color: #C9A15D;
    font-size: 11px;
}

.pf-addr-actions {
    display: flex;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #eee7d8;
}

.pf-addr-actions button {
    background: transparent;
    border: none;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #334633;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.pf-addr-actions button:hover {
    color: #C9A15D;
}

.pf-addr-delete {
    color: #b9432f !important;
}

.pf-addr-delete:hover {
    color: #8f2f1f !important;
}

.pf-addr-add-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1.5px dashed #d8d0bd;
    border-radius: 10px;
    min-height: 176px;
    color: #a8a196;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-addr-add-card i {
    font-size: 20px;
}

.pf-addr-add-card:hover {
    border-color: #C9A15D;
    color: #334633;
}

/* ---------- account details form ---------- */
.pf-form {
    max-width: 680px;
}

.pf-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 8px;
}

.pf-form-group label {
    display: block;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #55584f;
    margin-bottom: 7px;
}

.pf-form-group input {
    width: 100%;
    border: 1.5px solid #e4e0d6;
    background-color: #FAF8F3;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    color: #334633;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.pf-form-group input:focus {
    border-color: #C9A15D;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(201, 161, 93, 0.14);
}

.pf-form-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 22px;
}

.pf-form-divider::before,
.pf-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #eee7d8;
}

.pf-form-divider span {
    font-family: 'Lora', serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #334633;
    white-space: nowrap;
}

.pf-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.pf-save-btn {
    background-color: #334633;
    color: #fff;
    border: none;
    font-family: 'Lora', serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-save-btn:hover {
    background-color: #24321f;
}

.pf-cancel-btn {
    background: transparent;
    border: 1.5px solid #e4e0d6;
    color: #55584f;
    font-family: 'Lora', serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pf-cancel-btn:hover {
    border-color: #b9432f;
    color: #b9432f;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .pf-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .pf-banner-stats {
        width: 100%;
        justify-content: space-between;
    }

    .pf-stat {
        flex: 1;
        padding: 10px 14px;
    }

    .pf-body-grid {
        grid-template-columns: 1fr;
    }

    .pf-sidenav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pf-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        flex: 1 1 100%;
    }

    .pf-nav-link {
        flex: 1 1 auto;
        justify-content: center;
    }

    .pf-nav-logout {
        border-top: none;
        margin-top: 0;
    }

    .pf-content {
        padding: 24px 20px;
    }

    .pf-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-address-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width:576px) and (max-width: 767px) {
    .pf-nav-link {
        flex: 1 1 30%;
    }

    .pf-body-grid {
        gap: 20px;
        margin-bottom: 20px;
    }

    .pf-banner {
        margin-bottom: 20px;
    }

    .pf-sidenav {
        gap: 20px;
    }

    .pf-breadcrumb {
        padding: 0 0 18px;
    }
}

@media (max-width: 575px) {
    .pf-banner {
        padding: 24px 20px;
        border-radius: 10px;
    }

    .pf-avatar {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .pf-banner-info h1 {
        font-size: 19px;
    }

    .pf-banner-stats {
        gap: 0;
    }

    .pf-stat-num {
        font-size: 18px;
    }

    .pf-nav-list {
        flex-direction: column;
    }

    .pf-nav-link {
        justify-content: flex-start;
    }

    .pf-quick-grid {
        grid-template-columns: 1fr;
    }

    .pf-order-card {
        flex-wrap: wrap;
    }

    .pf-order-right {
        width: 100%;
        text-align: left;
        margin-top: 6px;
    }

    .pf-wishlist-grid {
        grid-template-columns: 1fr;
    }

    .pf-form-grid {
        grid-template-columns: 1fr;
    }

    .pf-form-actions {
        flex-direction: column;
    }

    .pf-save-btn,
    .pf-cancel-btn {
        width: 100%;
    }
}

@media only screen and (min-width:576px) and (max-width: 767px) {
    .pf-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}