/* ===== CALISKAN SHOP - IKEA Minimal Style ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #111;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    z-index: 100;
}

.header-top {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #484848;
    padding: 6px 0;
}

.header-top a {
    color: #111;
    font-weight: 500;
}

.header-top a:hover {
    text-decoration: underline;
}

.header-main-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #0058a3;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo span {
    color: #ffdb00;
}

/* Search */
.search-box {
    flex: 1;
    max-width: 750px;
    position: relative;
    margin-left: 40px;
}

.search-box input {
    width: 100%;
    padding: 10px 42px 10px 16px;
    border: 1px solid #e7e7e7;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    background: #f5f5f5;
    transition: border-color 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: #111;
    background: #fff;
}

.search-box button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #111;
    display: flex;
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #111;
    transition: background 0.15s;
}

.icon-btn:hover {
    background: #f5f5f5;
}

.icon-btn .material-symbols-rounded {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #0058a3;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.cart-count.visible {
    opacity: 1;
}

/* --- Header User Dropdown --- */
.header-user-dropdown {
    position: relative;
}

.header-user-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0058a3, #0073d1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: box-shadow 0.2s;
}

.header-user-btn:hover .header-user-avatar {
    box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.2);
}

.header-user-avatar--lg {
    width: 44px;
    height: 44px;
    font-size: 15px;
    flex-shrink: 0;
}

.header-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.97);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.header-user-dropdown:hover .header-user-menu,
.header-user-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.header-user-menu-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafbfc;
}

.header-user-menu-head strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.header-user-menu-head small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    word-break: break-all;
}

.header-user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    transition: background 0.15s, color 0.15s;
}

.header-user-menu-item:hover {
    background: #f0f6ff;
    color: #0058a3;
}

.header-user-menu-item .material-symbols-rounded {
    font-size: 20px;
}

.header-user-menu-item--logout {
    color: #dc2626;
}

.header-user-menu-item--logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.header-user-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

/* ===== NAV LINKS ===== */
.nav-sticky-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.nav-links {
    display: flex;
    gap: 0;
    background: #fff;
    font-size: 14px;
}

.nav-link {
    padding: 12px 20px;
    font-weight: 500;
    color: #484848;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover {
    color: #111;
}

.nav-link.active {
    color: #111;
    font-weight: 700;
    border-bottom-color: #111;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #111;
    transition: all 0.15s;
    position: relative;
    font-family: inherit;
}

.filter-pill:hover {
    border-color: #111;
}

.filter-pill.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.filter-pill .material-symbols-rounded {
    font-size: 18px;
}

/* Dropdown */
.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 16px;
    z-index: 200;
    min-width: 220px;
    display: none;
}

.filter-dropdown.show {
    display: block;
}

.filter-dropdown-search {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    margin-bottom: 12px;
}

.filter-dropdown-search:focus {
    outline: none;
    border-color: #111;
}

/* Color circles in dropdown */
.color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 4px;
    border-radius: 8px;
    transition: background 0.15s;
}

.color-option:hover {
    background: #f5f5f5;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    transition: all 0.15s;
}

.color-option.selected .color-circle {
    border-color: #111;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.color-name {
    font-size: 12px;
    color: #484848;
}

.color-count {
    font-size: 11px;
    color: #929292;
}

/* Size list in dropdown */
.size-list {
    max-height: 240px;
    overflow-y: auto;
}

.size-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s;
    font-size: 14px;
}

.size-option:hover {
    background: #f5f5f5;
}

.size-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #111;
    cursor: pointer;
}

.size-count {
    color: #929292;
    font-size: 13px;
}

/* Sort dropdown */
.sort-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.15s;
}

.sort-list label:hover {
    background: #f5f5f5;
}

.sort-list input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #111;
    cursor: pointer;
}

/* Price range in dropdown */
.price-range-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    text-align: center;
}

.price-input:focus {
    outline: none;
    border-color: #111;
}

.price-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    background: #dfdfdf;
    border-radius: 2px;
    outline: none;
    margin: 12px 0 4px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
}

/* All Filters button */
.filter-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #929292;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #111;
    font-family: inherit;
    margin-left: auto;
}

.filter-all-btn:hover {
    border-color: #111;
}

/* Active filter tags */
.active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.active-filter-tag button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    color: #484848;
}

.active-filter-tag button:hover {
    color: #111;
}

/* ===== PRODUCT COUNT BAR ===== */
.results-bar {
    padding: 12px 0;
    font-size: 14px;
    color: #484848;
}

.results-bar strong {
    color: #111;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ===== PRODUCT CARD - IKEA Style ===== */
.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.2s;
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border-color: #bbb;
}

/* Badge */
.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.badge-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
}

.badge-bestseller {
    background: #cc0008;
    color: #fff;
}

.badge-new {
    background: #0058a3;
    color: #fff;
}

.badge-low-price {
    background: #ffdb00;
    color: #111;
}

.badge-sale {
    background: #e00751;
    color: #fff;
}

/* Image */
.card-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.03);
}

/* Info */
.card-info {
    padding: 12px 14px 6px;
}

.card-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.card-desc {
    font-size: 13px;
    color: #484848;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Price */
.card-price {
    padding: 0 14px;
    margin-bottom: 8px;
}

.price-now {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.price-now .currency {
    font-size: 14px;
}

.price-old {
    font-size: 13px;
    color: #929292;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Actions (cart + fav) */
.card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px 8px;
}

.btn-cart-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0058a3;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.btn-cart-circle:hover {
    background: #004f93;
}

.btn-cart-circle .material-symbols-rounded {
    font-size: 20px;
}

.btn-fav-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.btn-fav-circle:hover {
    background: #f5f5f5;
}

.btn-fav-circle .material-symbols-rounded {
    font-size: 22px;
}

.btn-fav-circle.active {
    color: #e00751;
}

/* Guarantee */
.card-guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px 8px;
    font-size: 11px;
    color: #484848;
}

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0058a3;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

/* Variants */
.card-variants {
    padding: 0 14px 12px;
}

.variants-label {
    font-size: 12px;
    color: #484848;
    margin-bottom: 6px;
    cursor: pointer;
}

.variants-label:hover {
    text-decoration: underline;
}

.variant-thumbs {
    display: flex;
    gap: 6px;
}

.variant-thumb {
    width: 36px;
    height: 36px;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
    background: #fff;
    transition: border-color 0.15s;
}

.variant-thumb:hover {
    border-color: #111;
}

.variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== FILTER PANEL (Right Drawer) ===== */
.filter-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.filter-panel-overlay.open {
    opacity: 1;
    visibility: visible;
}

.filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 401;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.filter-panel.open {
    transform: translateX(0);
}

.filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.filter-panel-title {
    font-size: 18px;
    font-weight: 700;
}

.filter-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #484848;
}

.filter-panel-close:hover {
    color: #111;
}

.filter-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Accordion sections */
.fp-section {
    border-bottom: 1px solid #eee;
}

.fp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}

.fp-section-header:hover {
    background: #fafafa;
}

.fp-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.fp-section-subtitle {
    font-size: 12px;
    color: #929292;
    font-weight: 400;
    margin-top: 2px;
}

.fp-section-header .material-symbols-rounded {
    font-size: 20px;
    color: #484848;
    transition: transform 0.2s;
}

.fp-section.expanded .fp-section-header .material-symbols-rounded {
    transform: rotate(180deg);
}

.fp-section-body {
    padding: 0 24px 18px;
    display: none;
}

.fp-section.expanded .fp-section-body {
    display: block;
}

/* Panel filter items */
.fp-check-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    cursor: pointer;
}

.fp-check-list input[type="checkbox"],
.fp-check-list input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #111;
    cursor: pointer;
}

.fp-color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.fp-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 2px;
    border-radius: 6px;
    transition: background 0.15s;
}

.fp-color-item:hover {
    background: #f5f5f5;
}

.fp-color-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    transition: all 0.15s;
}

.fp-color-item.selected .fp-color-dot {
    border-color: #111;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.fp-color-item span {
    font-size: 11px;
    color: #484848;
}

/* Footer */
.filter-panel-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #eee;
    background: #fff;
}

.filter-panel-reset {
    flex: 1;
    padding: 12px;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s;
}

.filter-panel-reset:hover {
    border-color: #111;
}

.filter-panel-apply {
    flex: 1;
    padding: 12px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.filter-panel-apply:hover {
    background: #004f93;
}

@media (max-width: 600px) {
    .filter-panel {
        width: 100%;
    }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: #fff;
    z-index: 501;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
}

.cart-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #484848;
}

.cart-drawer-close:hover {
    color: #111;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty-msg {
    text-align: center;
    padding: 60px 0;
    color: #929292;
}

.cart-empty-msg .material-symbols-rounded {
    font-size: 56px;
    color: #dfdfdf;
    display: block;
    margin-bottom: 12px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 6px;
    object-fit: contain;
    padding: 6px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.cart-item-desc {
    font-size: 12px;
    color: #929292;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-val {
    width: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 700;
    font-size: 14px;
    margin-top: 6px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #929292;
    padding: 2px;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #e00751;
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 4px;
    color: #484848;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    padding-top: 10px;
    margin: 8px 0 16px;
    border-top: 1px solid #dfdfdf;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.checkout-btn:hover {
    background: #004f93;
}

/* ===== QUICK VIEW MODAL ===== */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 600;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-bg.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 820px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid #dfdfdf;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: #111;
    transition: background 0.15s;
}

.modal-close-btn:hover {
    background: #f5f5f5;
}

.modal-img-section {
    background: #f5f5f5;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.modal-img-section img {
    max-height: 350px;
    object-fit: contain;
    padding: 40px;
}

.modal-body {
    padding: 28px;
}

.modal-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-desc {
    font-size: 14px;
    color: #484848;
    margin-bottom: 14px;
    line-height: 1.5;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-price .old {
    font-size: 16px;
    color: #929292;
    text-decoration: line-through;
    margin-left: 8px;
}

.modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.modal-spec {
    background: #f5f5f5;
    padding: 12px 14px;
    border-radius: 8px;
}

.modal-spec-label {
    font-size: 11px;
    color: #929292;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-spec-value {
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
}

.modal-cart-btn {
    width: 100%;
    padding: 14px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
}

.modal-cart-btn:hover {
    background: #004f93;
}

/* ===== TOAST ===== */
.toast-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-msg {
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: toastSlide 0.3s ease, toastFade 0.3s ease 2.5s forwards;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-msg .material-symbols-rounded {
    font-size: 20px;
    color: #4caf50;
}

@keyframes toastSlide {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes toastFade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #f5f5f5;
    border-top: 1px solid #dfdfdf;
    padding: 40px 0 0;
    margin-top: 40px;
    font-size: 13px;
    color: #484848;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: #484848;
    padding: 3px 0;
    font-size: 13px;
    transition: color 0.15s;
}

.footer-link:hover {
    color: #111;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    padding: 16px 0;
    border-top: 1px solid #dfdfdf;
    font-size: 12px;
    color: #929292;
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1/-1;
    background: #fff;
}

.no-results .material-symbols-rounded {
    font-size: 60px;
    color: #dfdfdf;
}

.no-results h3 {
    font-size: 18px;
    margin-top: 12px;
}

.no-results p {
    color: #929292;
    margin-top: 6px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-drawer {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .header-main-row {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }

    .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 12px;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-page {
    display: none;
}

.pdp-page.active {
    display: block;
}

.main-listing.hidden {
    display: none;
}

/* Breadcrumb */
.pdp-breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: #929292;
}

.pdp-breadcrumb a {
    color: #484848;
}

.pdp-breadcrumb a:hover {
    text-decoration: underline;
    color: #111;
}

.pdp-breadcrumb span {
    margin: 0 6px;
}

/* PDP Layout */
.pdp-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Gallery - IKEA Grid Style */
.pdp-gallery {
    position: relative;
}

.pdp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.pdp-gallery-item {
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-gallery-item img {
    width: 100%;
    height: 100%;
    padding: 4px;
    transition: transform 0.3s;
}

.pdp-gallery-item:hover img {
    transform: scale(1.03);
}

.pdp-gallery-item {
    position: relative;
    text-decoration: none;
}

.pdp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 4px;
    pointer-events: none;
}

.pdp-gallery-overlay .material-symbols-rounded {
    font-size: 36px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.pdp-gallery-item:hover .pdp-gallery-overlay {
    opacity: 1;
}

.pdp-gallery-item.full-width {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.pdp-gallery-item.hidden {
    display: none;
}

.pdp-gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.pdp-gallery-more-btn {
    padding: 10px 24px;
    border: 1px solid #929292;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: #111;
    transition: all 0.15s;
}

.pdp-gallery-more-btn:hover {
    border-color: #111;
    background: #f5f5f5;
}

/* Product Info Panel */
.pdp-info {
    position: sticky;
    top: 100px;
}

.pdp-series {
    font-size: 12px;
    color: #484848;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pdp-series a {
    color: #0058a3;
    font-weight: 600;
}

.pdp-series a:hover {
    text-decoration: underline;
}

.pdp-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.pdp-short-desc {
    font-size: 14px;
    color: #484848;
    margin-bottom: 4px;
    line-height: 1.5;
}

.pdp-dimensions {
    font-size: 13px;
    color: #929292;
    margin-bottom: 12px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #484848;
    margin-bottom: 16px;
}

.pdp-rating .stars {
    color: #111;
    letter-spacing: 1px;
}

.pdp-price-block {
    margin-bottom: 20px;
}

.pdp-price {
    font-size: 32px;
    font-weight: 800;
}

.pdp-price-old {
    font-size: 16px;
    color: #929292;
    text-decoration: line-through;
    margin-left: 10px;
}

.pdp-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #484848;
    margin-bottom: 20px;
}

.pdp-guarantee .g-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0058a3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Variant selectors */
.pdp-variant-section {
    margin-bottom: 20px;
}

.pdp-variant-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdp-variant-label span {
    color: #929292;
    font-weight: 400;
}

.pdp-colors {
    display: flex;
    gap: 8px;
}

.pdp-color-opt {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    border: 1px solid #dfdfdf;
    cursor: pointer;
    transition: all 0.15s;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.pdp-color-opt:hover {
    border-color: #929292;
}

.pdp-color-opt.active {
    border-color: #111;
    border-width: 2px;
}

/* Add to cart area */
.pdp-cart-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.pdp-add-cart {
    flex: 1;
    padding: 14px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
}

.pdp-add-cart:hover {
    background: #004f93;
}

.pdp-fav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: all 0.15s;
}

.pdp-fav-btn:hover {
    border-color: #111;
}

.pdp-fav-btn.active {
    color: #e00751;
}

.pdp-delivery-info {
    font-size: 13px;
    color: #484848;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.pdp-delivery-info a {
    color: #0058a3;
}

/* Size Variant Cards */
.pdp-size-variants {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdp-size-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
    background: #fff;
}

.pdp-size-card:hover {
    border-color: #929292;
}

.pdp-size-card.active {
    border-color: #111;
    border-width: 2px;
    padding: 9px 13px;
}

.pdp-size-card-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-size-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pdp-size-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pdp-size-card-dim {
    font-size: 14px;
    font-weight: 600;
}

.pdp-size-card-price {
    font-size: 12px;
    color: #929292;
}

/* Info Accordion (Diğer Fonksiyonlar, Ölçü, Ek Bilgi) */
.pdp-info-acc {
    border-top: 1px solid #eee;
}

.pdp-info-acc:last-of-type {
    border-bottom: 1px solid #eee;
}

.pdp-info-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}

.pdp-info-acc-header:hover {
    background: #fafafa;
}

.pdp-info-acc-header .material-symbols-rounded {
    font-size: 20px;
    color: #484848;
    transition: transform 0.25s;
}

.pdp-info-acc.expanded .pdp-info-acc-header .material-symbols-rounded {
    transform: rotate(90deg);
}

.pdp-info-acc-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pdp-info-acc-sub {
    font-size: 12px;
    color: #929292;
    margin-top: 2px;
}

.pdp-info-acc-body {
    display: none;
    padding-bottom: 16px;
}

.pdp-info-acc.expanded .pdp-info-acc-body {
    display: block;
}

/* Fonk List (Diğer Fonksiyonlar expanded content) */
.pdp-fonk-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdp-fonk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}

.pdp-fonk-item:last-child {
    border-bottom: none;
}

.pdp-fonk-item:hover {
    background: #fafafa;
}

.pdp-fonk-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
}

.pdp-fonk-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pdp-fonk-info {
    flex: 1;
}

.pdp-fonk-desc {
    font-size: 13px;
    color: #484848;
}

.pdp-fonk-price {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* Stock Check */
.pdp-stock-check {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 13px;
    color: #484848;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
}

.pdp-stock-check a {
    color: #0058a3;
    font-weight: 600;
}

.pdp-stock-check a:hover {
    text-decoration: underline;
}

.pdp-details {
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.pdp-acc {
    border-bottom: 1px solid #eee;
}

.pdp-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s;
}

.pdp-acc-header:hover {
    color: #484848;
}

.pdp-acc-title {
    font-size: 14px;
    font-weight: 700;
}

.pdp-acc-header .material-symbols-rounded {
    font-size: 20px;
    transition: transform 0.2s;
}

.pdp-acc.expanded .pdp-acc-header .material-symbols-rounded {
    transform: rotate(180deg);
}

.pdp-acc-body {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    color: #484848;
    line-height: 1.7;
}

.pdp-acc.expanded .pdp-acc-body {
    display: block;
}

/* Ürün açıklama rich text koruması */
.pdp-acc-body ul,
.pdp-acc-body ol {
    list-style: revert;
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.pdp-acc-body ul {
    list-style-type: disc;
}

.pdp-acc-body ol {
    list-style-type: decimal;
}

.pdp-acc-body ul ul {
    list-style-type: circle;
}

.pdp-acc-body li {
    margin-bottom: 4px;
    padding-left: 4px;
}

.pdp-acc-body p {
    margin: 0.5em 0;
}

.pdp-acc-body h1,
.pdp-acc-body h2,
.pdp-acc-body h3,
.pdp-acc-body h4,
.pdp-acc-body h5,
.pdp-acc-body h6 {
    margin: 0.8em 0 0.4em;
    font-weight: 700;
    line-height: 1.3;
}

.pdp-acc-body h2 {
    font-size: 1.3em;
}

.pdp-acc-body h3 {
    font-size: 1.15em;
}

.pdp-acc-body h4 {
    font-size: 1.05em;
}

.pdp-acc-body strong,
.pdp-acc-body b {
    font-weight: 700;
}

.pdp-acc-body em,
.pdp-acc-body i {
    font-style: italic;
}

.pdp-acc-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.8em 0;
}

.pdp-acc-body th,
.pdp-acc-body td {
    border: 1px solid #dfdfdf;
    padding: 8px 12px;
    text-align: left;
}

.pdp-acc-body th {
    background: #f5f5f5;
    font-weight: 600;
}

.pdp-acc-body img {
    max-width: 100%;
    height: auto;
}

.pdp-acc-body a {
    color: #0058a3;
    text-decoration: underline;
}

.pdp-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}

.pdp-spec-row:last-child {
    border-bottom: none;
}

.pdp-spec-label {
    color: #929292;
}

.pdp-spec-value {
    font-weight: 500;
}

/* Related Products */
.pdp-related {
    margin-top: 48px;
}

.pdp-related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* PDP Responsive */
@media (max-width: 900px) {
    .pdp-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pdp-info {
        position: static;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pdp-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== AUTH PAGES ===== */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 240px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: authFadeIn 0.4s ease;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #929292;
    position: relative;
    transition: color 0.2s;
}

.auth-tab:hover {
    color: #484848;
}

.auth-tab.active {
    color: #0058a3;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0058a3;
    border-radius: 3px 3px 0 0;
}

/* Card body */
.auth-card-body {
    padding: 32px 36px;
}

/* Welcome section */
.auth-welcome {
    text-align: center;
    margin-bottom: 28px;
}

.auth-welcome-icon {
    font-size: 40px;
    color: #0058a3;
    margin-bottom: 8px;
    display: inline-block;
    animation: authWave 1s ease-in-out;
}

@keyframes authWave {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.auth-welcome h1 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.auth-welcome p {
    font-size: 14px;
    color: #929292;
}

/* Fields */
.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.auth-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #dfdfdf;
    border-radius: 10px;
    padding: 0 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.auth-input-wrap.focused {
    border-color: #0058a3;
    box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.08);
}

.auth-input-wrap.has-error {
    border-color: #e00751;
    box-shadow: 0 0 0 3px rgba(224, 7, 81, 0.08);
}

.auth-input-wrap>.material-symbols-rounded {
    font-size: 20px;
    color: #929292;
    margin-right: 10px;
    flex-shrink: 0;
}

.auth-input-wrap.focused>.material-symbols-rounded {
    color: #0058a3;
}

.auth-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
    color: #111;
}

.auth-input-wrap input::placeholder {
    color: #bbb;
}

.auth-toggle-pass {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    color: #929292;
    transition: color 0.15s;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.auth-toggle-pass:hover {
    color: #484848;
}

.auth-toggle-pass .material-symbols-rounded {
    font-size: 20px;
}

.auth-input-wrap.auth-input-error {
    border-color: #e00751 !important;
}

.auth-error {
    display: block;
    font-size: 12px;
    color: #e00751;
    margin-top: 4px;
    min-height: 0;
}

.auth-error-global {
    text-align: center;
    font-size: 13px;
    color: #e00751;
    margin-top: 12px;
    padding: 10px;
    background: #fff0f3;
    border-radius: 8px;
    display: none;
}

.auth-error-global:not(:empty) {
    display: block;
}

/* Two-column field row */
.auth-field-row {
    display: flex;
    gap: 12px;
}

.auth-field-row .auth-field {
    flex: 1;
}

/* Row (checkbox + forgot) */
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #484848;
    cursor: pointer;
}

.auth-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0058a3;
    cursor: pointer;
    margin-top: 1px;
    flex-shrink: 0;
}

.auth-forgot {
    font-size: 13px;
    color: #0058a3;
    font-weight: 500;
    transition: color 0.15s;
}

.auth-forgot:hover {
    color: #004f93;
    text-decoration: underline;
}

/* Submit Button */
.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
}

.auth-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-btn .material-symbols-rounded {
    font-size: 20px;
    transition: transform 0.2s;
}

.auth-btn:hover .material-symbols-rounded {
    transform: translateX(3px);
}

.auth-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.auth-btn.loading span {
    visibility: hidden;
}

.auth-btn.loading::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
}

@keyframes authSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #eee;
}

.auth-divider span {
    font-size: 12px;
    color: #929292;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social button */
.auth-social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1.5px solid #dfdfdf;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.auth-social-btn:hover {
    border-color: #111;
    background: #fafafa;
}

/* Footer link */
.auth-footer-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #929292;
}

.auth-footer-link a {
    color: #0058a3;
    font-weight: 600;
    transition: color 0.15s;
}

.auth-footer-link a:hover {
    color: #004f93;
    text-decoration: underline;
}

/* Password strength */
.auth-pass-strength {
    display: none;
    margin-top: 8px;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.strength-text {
    font-size: 12px;
    font-weight: 600;
    min-width: 40px;
}

/* ===== AUTH RESPONSIVE ===== */
@media (max-width: 520px) {
    .auth-card-body {
        padding: 24px 20px;
    }

    .auth-field-row {
        flex-direction: column;
        gap: 0;
    }

    .auth-welcome h1 {
        font-size: 20px;
    }
}

/* ===== CART PAGE ===== */
.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 13px;
    color: #929292;
}

.cart-breadcrumb a {
    color: #484848;
    transition: color 0.15s;
}

.cart-breadcrumb a:hover {
    color: #0058a3;
    text-decoration: underline;
}

.cart-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.cart-page-count {
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}

/* Cart Layout */
.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

/* Shipping Banner */
.cart-shipping-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: #f0f7ff;
    border: 1px solid #cce0f5;
    border-radius: 10px;
    font-size: 14px;
    color: #0058a3;
    margin-bottom: 20px;
}

.cart-shipping-banner.achieved {
    background: #edf7ed;
    border-color: #c3e6c3;
    color: #2e7d32;
}

.cart-shipping-banner .material-symbols-rounded {
    font-size: 22px;
}

.shipping-progress-bar {
    width: 100%;
    height: 4px;
    background: #cce0f5;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.cart-shipping-banner.achieved .shipping-progress-bar {
    background: #c3e6c3;
}

.shipping-progress-fill {
    height: 100%;
    background: #0058a3;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.cart-shipping-banner.achieved .shipping-progress-fill {
    background: #4caf50;
}

/* Cart Item */
.cp-cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    animation: cartItemFadeIn 0.3s ease;
}

@keyframes cartItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-item-img-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}

.cp-item-img-wrap:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cp-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cp-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cp-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cp-item-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: color 0.15s;
}

.cp-item-name:hover {
    color: #0058a3;
}

.cp-item-desc {
    font-size: 13px;
    color: #929292;
    margin-top: 2px;
}

.cp-item-discount {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    background: #fff0f3;
    color: #e00751;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.cp-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #929292;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.15s;
}

.cp-item-remove:hover {
    color: #e00751;
    background: #fff0f3;
}

.cp-item-remove .material-symbols-rounded {
    font-size: 20px;
}

.cp-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

/* Quantity Control */
.cp-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #dfdfdf;
    border-radius: 50px;
    overflow: hidden;
}

.cp-qty-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.15s;
}

.cp-qty-btn:hover {
    background: #f5f5f5;
}

.cp-qty-btn .material-symbols-rounded {
    font-size: 18px;
}

.cp-qty-value {
    width: 36px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

/* Prices */
.cp-item-prices {
    text-align: right;
}

.cp-item-old-price {
    display: block;
    font-size: 13px;
    color: #929292;
    text-decoration: line-through;
}

.cp-item-total {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Summary Card */
.cart-summary-card {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.cart-summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.cart-summary-detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #484848;
    margin-bottom: 10px;
}

.shipping-value {
    font-weight: 600;
}

.free-shipping {
    color: #4caf50 !important;
    font-weight: 700 !important;
}

/* Coupon */
.cart-coupon-section {
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 12px 0;
}

.cart-coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #dfdfdf;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.coupon-input:focus {
    outline: none;
    border-color: #0058a3;
}

.coupon-apply-btn {
    padding: 10px 18px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
    white-space: nowrap;
}

.coupon-apply-btn:hover {
    background: #333;
}

/* Summary Total */
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    padding-top: 14px;
    margin-bottom: 20px;
}

/* Checkout Button */
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s, transform 0.15s;
}

.cart-checkout-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
}

.cart-checkout-btn .material-symbols-rounded {
    font-size: 20px;
    transition: transform 0.2s;
}

.cart-checkout-btn:hover .material-symbols-rounded {
    transform: translateX(3px);
}

.cart-continue-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    color: #484848;
    text-decoration: none;
    transition: color 0.15s;
}

.cart-continue-link:hover {
    color: #0058a3;
}

.cart-continue-link .material-symbols-rounded {
    font-size: 18px;
}

/* Trust Badges */
.cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    transition: box-shadow 0.2s;
}

.trust-badge-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge-item .material-symbols-rounded {
    font-size: 28px;
    color: #0058a3;
}

.trust-badge-item strong {
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.trust-badge-item span:not(.material-symbols-rounded) {
    font-size: 12px;
    color: #929292;
}

/* Empty Cart State */
.cart-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-state .material-symbols-rounded {
    font-size: 80px;
    color: #dfdfdf;
    display: block;
    margin-bottom: 16px;
}

.cart-empty-state h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.cart-empty-state p {
    font-size: 14px;
    color: #929292;
    margin-bottom: 28px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0058a3;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.cart-empty-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
}

.cart-empty-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Cart Page Responsive */
@media (max-width: 900px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-card {
        position: static;
    }

    .cart-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-item-img-wrap {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 600px) {
    .cart-trust-badges {
        grid-template-columns: 1fr;
    }

    .cp-item-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===== CHECKOUT PAGE ===== */

/* Checkout Steps Bar */
.checkout-steps-bar {
    background: #fafafa;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #929292;
    font-size: 14px;
    font-weight: 500;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eee;
    color: #929292;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s;
}

.step-number .material-symbols-rounded {
    font-size: 18px;
}

.checkout-step.active .step-number {
    background: #0058a3;
    color: #fff;
}

.checkout-step.active .step-label {
    color: #0058a3;
    font-weight: 700;
}

.checkout-step.completed .step-number {
    background: #4caf50;
    color: #fff;
}

.checkout-step.completed .step-label {
    color: #4caf50;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #eee;
    margin: 0 8px;
}

.step-line.active {
    background: #0058a3;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    padding: 28px 0 40px;
}

/* Checkout Sections */
.checkout-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.checkout-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.checkout-section-header .material-symbols-rounded {
    font-size: 24px;
    color: #0058a3;
}

.checkout-section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Form Fields */
.co-field {
    margin-bottom: 16px;
}

.co-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.co-field input,
.co-field textarea,
.co-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dfdfdf;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #111;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.co-field input:focus,
.co-field textarea:focus,
.co-field select:focus {
    outline: none;
    border-color: #0058a3;
    box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.08);
}

.co-field textarea {
    resize: vertical;
}

.co-field select {
    cursor: pointer;
    appearance: auto;
}

.co-field-row {
    display: flex;
    gap: 14px;
}

.co-field-row .co-field {
    flex: 1;
}

.co-error {
    display: block;
    font-size: 12px;
    color: #e00751;
    margin-top: 4px;
    min-height: 0;
}

/* Input with icon */
.co-input-icon-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #dfdfdf;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.co-input-icon-wrap.focused {
    border-color: #0058a3;
    box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.08);
}

.co-input-icon-wrap>.material-symbols-rounded {
    font-size: 20px;
    color: #929292;
    margin-right: 10px;
    flex-shrink: 0;
}

.co-input-icon-wrap.focused>.material-symbols-rounded {
    color: #0058a3;
}

.co-input-icon-wrap input {
    flex: 1;
    border: none !important;
    padding: 11px 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.co-input-icon-wrap input:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Shipping Options */
.co-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.co-shipping-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid #dfdfdf;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.co-shipping-option:hover {
    border-color: #929292;
}

.co-shipping-option.selected {
    border-color: #0058a3;
    background: #f0f7ff;
}

.co-shipping-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #0058a3;
    cursor: pointer;
    flex-shrink: 0;
}

.co-ship-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.co-shipping-option.selected .co-ship-icon {
    background: #dceefb;
}

.co-ship-icon .material-symbols-rounded {
    font-size: 22px;
    color: #484848;
}

.co-shipping-option.selected .co-ship-icon .material-symbols-rounded {
    color: #0058a3;
}

.co-ship-info {
    flex: 1;
}

.co-ship-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}

.co-ship-info span {
    font-size: 13px;
    color: #929292;
}

.co-ship-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

/* Payment Tabs */
.co-payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.co-pay-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1.5px solid #dfdfdf;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #484848;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.co-pay-tab:hover {
    border-color: #929292;
}

.co-pay-tab.active {
    border-color: #0058a3;
    background: #f0f7ff;
    color: #0058a3;
    font-weight: 600;
}

.co-pay-tab .material-symbols-rounded {
    font-size: 20px;
}

.co-pay-content {
    display: none;
}

.co-pay-content.active {
    display: block;
}

/* Card Preview */
.co-card-preview {
    width: 100%;
    max-width: 380px;
    height: 200px;
    background: linear-gradient(135deg, #0058a3 0%, #003d75 100%);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 88, 163, 0.3);
    position: relative;
    overflow: hidden;
}

.co-card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.co-card-preview::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.card-chip {
    width: 45px;
    height: 32px;
    background: linear-gradient(135deg, #e8c94d 0%, #d4a827 100%);
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.card-chip::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.card-number {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    font-family: 'Courier New', monospace;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.card-holder {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-expiry {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Save Card */
.co-save-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #484848;
    cursor: pointer;
    margin-top: 4px;
}

.co-save-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0058a3;
    cursor: pointer;
}

/* Transfer Info */
.co-transfer-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.co-bank-item {
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
}

.co-bank-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #111;
}

.co-bank-item span {
    display: block;
    font-size: 14px;
    color: #484848;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.co-bank-name {
    font-size: 12px !important;
    color: #929292 !important;
    font-family: inherit !important;
    margin-top: 4px;
}

.co-transfer-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    background: #fffbea;
    border: 1px solid #ffe082;
    border-radius: 8px;
    font-size: 13px;
    color: #7c6a0a;
}

.co-transfer-note .material-symbols-rounded {
    font-size: 20px;
    color: #f9a825;
    flex-shrink: 0;
}

/* Terms & Submit */
.co-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #484848;
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: 8px;
}

.co-terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0058a3;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.co-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 16px;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
}

.co-submit-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
}

.co-submit-btn .material-symbols-rounded {
    font-size: 20px;
}

.co-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.co-submit-btn.loading span {
    visibility: hidden;
}

.co-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
}

.co-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: #929292;
}

.co-secure-note .material-symbols-rounded {
    font-size: 16px;
    color: #4caf50;
}

/* Checkout Summary */
.checkout-summary-col {
    position: sticky;
    top: 110px;
}

.co-summary-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.co-summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.co-summary-items {
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.co-summary-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.co-summary-item:last-child {
    border-bottom: none;
}

.co-summary-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    padding: 4px;
    background: #f5f5f5;
    border-radius: 8px;
    flex-shrink: 0;
}

.co-summary-item-info {
    flex: 1;
    min-width: 0;
}

.co-summary-item-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.co-summary-item-desc {
    font-size: 12px;
    color: #929292;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.co-summary-item-qty {
    font-size: 12px;
    color: #484848;
    margin-top: 2px;
}

.co-summary-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    align-self: center;
}

.co-summary-details {
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.co-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #484848;
    margin-bottom: 8px;
}

.co-summary-row.total {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid #eee;
}

.co-edit-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: #0058a3;
    text-decoration: none;
    transition: color 0.15s;
}

.co-edit-cart:hover {
    color: #004f93;
    text-decoration: underline;
}

.co-edit-cart .material-symbols-rounded {
    font-size: 16px;
}

/* ===== ORDER SUCCESS OVERLAY ===== */
.order-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.order-success-overlay.active {
    display: flex;
}

.order-success-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    animation: successPopIn 0.5s ease;
    position: relative;
    z-index: 2;
}

@keyframes successPopIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon-wrap {
    margin-bottom: 16px;
}

.success-icon-wrap .material-symbols-rounded {
    font-size: 72px;
    color: #4caf50;
    animation: successBounce 0.6s ease 0.3s;
}

@keyframes successBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.order-success-card h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.success-order-no {
    font-size: 15px;
    color: #484848;
    margin-bottom: 12px;
}

.success-order-no strong {
    color: #0058a3;
    font-size: 17px;
}

.success-desc {
    font-size: 14px;
    color: #929292;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.success-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #f5f5f5;
    border-radius: 10px;
    text-align: left;
}

.success-info-item .material-symbols-rounded {
    font-size: 24px;
    color: #0058a3;
    flex-shrink: 0;
}

.success-info-item strong {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.success-info-item span {
    font-size: 12px;
    color: #929292;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s;
    font-family: inherit;
}

.success-btn.primary {
    background: #0058a3;
    color: #fff;
}

.success-btn.primary:hover {
    background: #004f93;
    transform: translateY(-1px);
}

.success-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Confetti */
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    top: -10px;
    z-index: 1;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Checkout Responsive */
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-col {
        position: static;
        order: -1;
    }

    .co-card-preview {
        max-width: 100%;
    }

    .success-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .co-field-row {
        flex-direction: column;
        gap: 0;
    }

    .checkout-steps {
        gap: 0;
    }

    .step-line {
        width: 30px;
    }

    .step-label {
        font-size: 12px;
    }

    .checkout-section {
        padding: 20px 16px;
    }

    .order-success-card {
        padding: 32px 24px;
    }

    .co-payment-tabs {
        flex-direction: column;
    }
}

/* ================================================
   CART PAGE (sepet.php)
   ================================================ */

/* Breadcrumb */
.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 0 8px;
    font-size: 13px;
    color: #929292;
}

.cart-breadcrumb a {
    color: #484848;
    text-decoration: none;
    transition: color 0.15s;
}

.cart-breadcrumb a:hover {
    color: #0058a3;
}

.cart-breadcrumb span:last-child {
    color: #111;
    font-weight: 500;
}

/* Page Title */
.cart-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.cart-page-count {
    font-size: 16px;
    font-weight: 400;
    color: #929292;
}

/* 2 Column Layout */
.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* Shipping Banner */
.cart-shipping-banner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1fdf1 100%);
    border: 1px solid #c8e6c9;
    border-radius: 12px;
    font-size: 14px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.cart-shipping-banner .material-symbols-rounded {
    font-size: 22px;
    color: #43a047;
}

.shipping-progress-bar {
    width: 100%;
    height: 5px;
    background: #c8e6c9;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 2px;
}

.shipping-progress-fill {
    height: 100%;
    background: #43a047;
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Cart Item Card */
.cart-page-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.cart-page-item:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Item Image */
.cart-page-item-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
}

/* Item Info */
.cart-page-item-info {
    flex: 1;
    min-width: 0;
}

.cart-page-item-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-page-item-variant {
    font-size: 13px;
    color: #929292;
    margin-bottom: 6px;
}

.cart-page-item-price {
    font-size: 17px;
    font-weight: 800;
    color: #0058a3;
    margin-top: 4px;
}

/* Item Actions (qty + delete) */
.cart-page-item-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Quantity Controls (page) */
.cart-page-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.cart-page-item-qty .qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #484848;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}

.cart-page-item-qty .qty-btn:hover {
    background: #0058a3;
    color: #fff;
}

.cart-page-item-qty .qty-val {
    width: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    border-left: 1.5px solid #e0e0e0;
    border-right: 1.5px solid #e0e0e0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Delete Button */
.cart-page-item-remove {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid #eee;
    border-radius: 10px;
    color: #929292;
    cursor: pointer;
    transition: all 0.15s;
}

.cart-page-item-remove:hover {
    background: #fef0f0;
    border-color: #e53935;
    color: #e53935;
}

.cart-page-item-remove .material-symbols-rounded {
    font-size: 20px;
}

/* Summary Card */
.cart-summary-card {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cart-summary-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.cart-summary-detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #484848;
    margin-bottom: 10px;
}

.cart-summary-detail span:last-child {
    font-weight: 600;
    color: #111;
}

.shipping-value {
    color: #43a047 !important;
    font-weight: 700 !important;
}

/* Coupon */
.cart-coupon-section {
    margin: 18px 0;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.coupon-input:focus {
    border-color: #0058a3;
}

.coupon-apply-btn {
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
}

.coupon-apply-btn:hover {
    background: #333;
}

/* Coupon Card (left column) */
.cart-coupon-card {
    margin-top: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
}

.cart-coupon-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.cart-coupon-card-title .material-symbols-rounded {
    font-size: 20px;
    color: #0058a3;
}

.cart-coupon-card .coupon-apply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #0058a3;
    border-radius: 10px;
}

.cart-coupon-card .coupon-apply-btn:hover {
    background: #004f93;
}

/* Summary — Kargo note */
.cart-kargo-note {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #929292 !important;
    font-style: italic;
}

/* Summary — Total amount color */
.cart-total-amount {
    color: #0058a3;
    display: block;
}

/* Summary — KDV dahil note */
.cart-kdv-dahil-note {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #929292;
    text-align: right;
    margin-top: 2px;
}

/* Summary Total Row updated */
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

/* Checkout Button */
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}

.cart-checkout-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.cart-checkout-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Continue Shopping */
.cart-continue-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 14px;
    color: #0058a3;
    text-decoration: none;
    transition: color 0.15s;
}

.cart-continue-link:hover {
    color: #004f93;
    text-decoration: underline;
}

.cart-continue-link .material-symbols-rounded {
    font-size: 18px;
}

/* Empty State */
.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
    max-width: 420px;
    margin: 0 auto 40px;
}

.cart-empty-state .material-symbols-rounded {
    font-size: 80px;
    color: #d0d0d0;
    margin-bottom: 16px;
}

.cart-empty-state h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.cart-empty-state p {
    font-size: 15px;
    color: #929292;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0058a3;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cart-empty-btn:hover {
    background: #004f93;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.cart-empty-btn .material-symbols-rounded {
    font-size: 20px;
}

/* Trust Badges */
.cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 0 24px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
}

.trust-badge-item .material-symbols-rounded {
    font-size: 28px;
    color: #0058a3;
    flex-shrink: 0;
}

.trust-badge-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.trust-badge-item span {
    font-size: 12px;
    color: #929292;
}

/* Cart Drawer quantity styles (sidebar) */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cart-item-desc {
    font-size: 11px;
    color: #929292;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 4px;
}

.cart-item-qty .qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #484848;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.cart-item-qty .qty-btn:hover {
    background: #eee;
}

.cart-item-qty .qty-val {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    height: 28px;
    line-height: 28px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #0058a3;
}

.cart-item-remove {
    position: absolute;
    top: 14px;
    right: 0;
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 2px;
    transition: color 0.15s;
}

.cart-item-remove:hover {
    color: #e53935;
}

/* Cart Drawer empty state */
.cart-empty-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
    color: #bbb;
    font-size: 15px;
}

.cart-empty-msg .material-symbols-rounded {
    font-size: 56px;
    color: #ddd;
}

/* Cart Drawer Footer */
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #484848;
    margin-bottom: 6px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid #eee;
    margin-bottom: 4px;
}

.cart-total-row span:last-child {
    color: #0058a3;
}

.cart-kdv-note {
    font-size: 12px;
    color: #929292;
    margin-bottom: 16px;
}

.cart-checkout-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.cart-checkout-main-btn:hover {
    background: #035091;
    transform: translateY(-1px);
}

.cart-checkout-main-btn .material-symbols-rounded {
    font-size: 20px;
}

.cart-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    color: #929292;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    transition: color 0.15s;
}

.cart-clear-btn:hover {
    color: #e53935;
}

/* Spin animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-summary-card {
        position: static;
        order: -1;
    }

    .cart-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cart-page-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px;
    }

    .cart-page-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-page-item-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .cart-trust-badges {
        grid-template-columns: 1fr;
    }

    .cart-page-title {
        font-size: 22px;
    }
}

/* ===== ACCOUNT PAGES ===== */
.account-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 240px);
    padding: 40px 20px;
}

.account-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

/* --- Sidebar --- */
.account-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: sticky;
    top: 100px;
    animation: authFadeIn 0.4s ease;
}

.account-sidebar-profile {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.account-sidebar-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0058a3, #0073d1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(0, 88, 163, 0.25);
}

.account-sidebar-avatar .material-symbols-rounded {
    font-size: 34px;
    color: #fff;
}

.account-sidebar-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.account-sidebar-email {
    font-size: 13px;
    color: #888;
    word-break: break-all;
}

.account-sidebar-nav {
    padding: 12px 0;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.account-nav-item:hover {
    background: #f5f8ff;
    color: #0058a3;
}

.account-nav-item.active {
    background: #eef4ff;
    color: #0058a3;
    font-weight: 600;
    border-left-color: #0058a3;
}

.account-nav-item .material-symbols-rounded {
    font-size: 22px;
}

.account-sidebar-footer {
    border-top: 1px solid #f0f0f0;
    padding: 8px 0;
}

.account-nav-item.logout {
    color: #dc2626;
}

.account-nav-item.logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

/* --- Main Content --- */
.account-main {
    animation: authFadeIn 0.4s ease 0.1s both;
}

.account-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 36px;
}

.account-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.account-card-icon {
    font-size: 32px;
    color: #0058a3;
    background: rgba(0, 88, 163, 0.08);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.account-card-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.account-card-header p {
    font-size: 14px;
    color: #888;
}

.auth-label-hint {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.auth-label-req {
    color: #e53935;
    font-weight: 700;
}

.auth-field-hint {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.account-actions {
    margin-top: 28px;
}

.account-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px 20px;
}

/* --- Info Cards --- */
.account-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.account-info-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.account-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.account-info-card .material-symbols-rounded {
    font-size: 36px;
    margin-bottom: 10px;
}

.account-info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.account-info-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 860px) {
    .account-container {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-sidebar-profile {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 18px 20px;
    }

    .account-sidebar-avatar {
        width: 52px;
        height: 52px;
        margin: 0;
        flex-shrink: 0;
    }

    .account-sidebar-avatar .material-symbols-rounded {
        font-size: 26px;
    }

    .account-sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
        -webkit-overflow-scrolling: touch;
    }

    .account-nav-item {
        white-space: nowrap;
        padding: 12px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 13px;
    }

    .account-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: #0058a3;
    }

    .account-sidebar-footer {
        border-top: none;
        border-left: 1px solid #f0f0f0;
    }

    .account-card {
        padding: 24px 20px;
    }

    .account-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== MODAL INTERIOR ===== */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.modal-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.modal-body {
    padding: 24px;
}

.modal-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.modal-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e5e5;
}

.modal-divider span {
    position: relative;
    background: #fff;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
}

.modal-check-group {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
}

.modal-hidden {
    display: none !important;
}

/* Select inside auth-input-wrap */
.auth-input-wrap select {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    color: #333;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.auth-field-hint {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    padding-left: 2px;
}

/* ===== ADDRESS CARDS ===== */
.addr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.addr-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.addr-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.addr-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.addr-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.addr-card-title h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

/* Badges */
.addr-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.addr-badge--green {
    background: #dcfce7;
    color: #15803d;
}

.addr-badge--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.addr-badge--purple {
    background: #ede9fe;
    color: #6d28d9;
}

.addr-badge--orange {
    background: #fff7ed;
    color: #c2410c;
}

/* Card body */
.addr-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.addr-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.addr-detail .material-symbols-rounded {
    font-size: 18px;
    color: #999;
    flex-shrink: 0;
    margin-top: 1px;
}

.addr-detail p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.addr-detail p strong {
    color: #333;
    font-weight: 600;
}

/* Invoice section */
.addr-card-invoice {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

/* Actions */
.addr-card-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.addr-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.addr-action-btn:active {
    transform: scale(0.97);
}

.addr-action-btn .material-symbols-rounded {
    font-size: 18px;
}

.addr-action-btn--edit {
    background: #eff6ff;
    color: #2563eb;
}

.addr-action-btn--edit:hover {
    background: #dbeafe;
}

.addr-action-btn--delete {
    background: #fef2f2;
    color: #dc2626;
}

.addr-action-btn--delete:hover {
    background: #fee2e2;
}

/* Add buttons */
.addr-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.addr-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.addr-add-btn .material-symbols-rounded {
    font-size: 20px;
}

.addr-add-btn--green {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.addr-add-btn--green:hover {
    background: linear-gradient(135deg, #15803d, #166534);
}

.addr-add-btn--orange {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.addr-add-btn--orange:hover {
    background: linear-gradient(135deg, #c2410c, #9a3412);
}

.addr-add-btn-mobile {
    display: none;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Empty state */
.addr-empty {
    text-align: center;
    padding: 48px 24px;
    background: #f8f9fa;
    border-radius: 14px;
}

.addr-empty-icon {
    font-size: 48px;
    color: #bbb;
    margin-bottom: 12px;
}

.addr-empty h4 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.addr-empty p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 860px) {
    .addr-grid {
        grid-template-columns: 1fr;
    }

    .account-card-header .addr-add-btn {
        display: none;
    }

    .addr-add-btn-mobile {
        display: flex;
    }
}

.pdp-acc.dinamik .pdp-acc-body ul li {
    list-style-type: none !important;
}

.pdp-acc.dinamik .pdp-acc-body i {
    font-style: normal !important;
    margin-right: 7px !important;
}

.pdp-acc.dinamik .pdp-acc-body ul.space-y-3 {
    padding: 0 !important;
}

.pdp-acc.dinamik .pdp-acc-body li {
    padding-left: 0px !important;
}