.account-secondary-title h4 {
    color: var(--secondary-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

#account-main {
    margin-top: 40px;
}

.account-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

.account-aside {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aside-box {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px;
}

.account-aside-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 10px;
    background-color: var(--body-bg-color);
    text-decoration: none;
}

.account-aside-header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-bg-color);
    color: color-mix(in srgb, var(--text-color) 85%, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.account-aside-header-avatar i {
    font-size: 23px;
    position: relative;
    top: -1px;
}

.account-aside-header-info-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
    line-height: 1;
}

.account-aside-header-info-email {
    font-size: 12.5px;
    color: var(--text-color);
    line-height: 1;
}

.account-aside-menu ul {
    padding: 0;
    margin: 0;
}

.account-aside-menu ul li.aside-title {
    margin-bottom: 5px;
    padding: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

.account-aside-menu ul li.aside-title:not(:first-child) {
    margin-top: 10px;
}

.account-aside-menu ul li {
    padding: 6px 8px;
    border-radius: 8px;
}

.account-aside-menu ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-aside-menu ul li a i {
    font-size: 17px;
}

.account-aside-menu ul li a.active {
    color: var(--secondary-primary);
}

.account-aside-menu ul li:not(.aside-title):hover {
    background-color: var(--secondary-bg-color);
}

.account-aside-logout,
.account-aside-logout .logout {
    width: 100%;
}

.account-aside-logout .logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background-color: color-mix(in srgb, var(--secondary-primary) 25%, transparent);
    color: var(--secondary-primary);
}

.account-aside-logout .logout i {
    font-size: 18px;
}

.account-content-title {
    margin-bottom: 20px;
}

.account-content-title h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.account-content-title p {
    font-size: 13px;
    color: var(--text-color);
    opacity: .85;
    margin-bottom: 0;
}

.change-btn {
    background-color: transparent;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: -5px;
    line-height: 1;
}

.change-btn:hover {
    color: var(--secondary-primary);
}

.my-account-right-side {
    border-left: 1px solid var(--border-color);
    height: 100%;
    padding-left: 15px;
}

.account-two-factor-wrapper {
    padding: 10px 15px;
    background-color: var(--secondary-bg-color);
    border-radius: 8px;
}

.account-two-factor-wrapper .account-two-factor-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.account-two-factor-wrapper .account-two-factor-title h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.account-two-factor-wrapper p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    opacity: .85;
    max-width: 70%;
    margin-bottom: 0;
}

/* ============================
   SİPARİŞLERİM SAYFASI
   ============================ */

/* Sipariş Listesi */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Sipariş Kartı */
.order-card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.order-card.expanded {
    border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Sipariş Başlık */
.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.order-card-header:hover {
    background-color: var(--secondary-bg-color);
}

.order-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-number-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-number-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
    opacity: 0.7;
}

.order-number-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.order-header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1;
}

.order-meta-item i {
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.order-meta-divider {
    font-size: 10px;
    color: var(--border-color);
    margin: 0 2px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.order-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Durum Badge */
.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.order-status-badge i {
    font-size: 14px;
}

.order-total-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    white-space: nowrap;
}

.order-toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--secondary-bg-color);
}

.order-toggle-icon i {
    font-size: 18px;
    color: var(--text-color);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion İçerik */
.order-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 0px solid transparent;
}

.order-card-body.open {
    border-top: 1px solid var(--border-color);
}

/* Section Başlıkları */
.order-section {
    padding: 20px;
}

.order-section:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.order-section-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.order-section-title i {
    font-size: 17px;
    color: var(--primary-color);
}

/* Ürün Listesi */
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    background: var(--body-bg-color);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.order-item:hover {
    border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.order-item-image {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.order-item-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg-color);
    color: var(--text-color);
    opacity: 0.4;
}

.order-item-no-image i {
    font-size: 26px;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--heading-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.order-item-name:hover {
    color: var(--primary-color);
}

.order-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.order-item-sku,
.order-item-variant {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 500;
}

.order-item-variant {
    padding: 1px 7px;
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    color: var(--primary-color);
    border-radius: 4px;
    opacity: 1;
}

.order-item-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2.5px 8px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%);
    color: #6d28d9;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(109, 40, 217, 0.15);
    transition: all 0.2s ease;
    cursor: default;
}

.order-item-promo-badge:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.1);
}

.order-item-promo-badge i {
    font-size: 12px;
}

.order-item-qty {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.75;
}

.order-item-qty strong {
    color: var(--heading-color);
}

.order-item-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    min-width: 100px;
}

.order-item-old-price {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.5;
    text-decoration: line-through;
}

.order-item-current-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

/* Detaylar Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.order-detail-box {
    padding: 20px;
}

.order-detail-box:first-child {
    border-right: 1px solid var(--border-color);
}

/* Ödeme Özeti */
.order-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-color);
}

.summary-row-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.summary-row span:first-child {
    opacity: 0.75;
}

.summary-row-label span {
    opacity: 0.75;
}

.summary-row.discount span:last-child {
    color: #10b981;
    font-weight: 500;
}

.discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2.5px 8px;
    background-color: color-mix(in srgb, #10b981 8%, transparent);
    color: #059669;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.discount-tag i {
    font-size: 12px;
}

.summary-row.free-cargo span:last-child {
    color: #10b981;
    font-weight: 500;
    font-size: 12px;
}

.summary-row.total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
    font-weight: 600;
    font-size: 15px;
    color: var(--heading-color);
}

.summary-row.total span:first-child {
    opacity: 1;
}

/* Ödeme Yöntemi Badge */
.payment-method-detail {
    margin-top: 14px;
}

.payment-method-badge {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    border: none !important;
    background-color: #f1f5f9 !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
}

.payment-method-badge i {
    font-size: 20px;
    min-width: 20px;
}

.payment-method-badge div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-method-badge span:first-child {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 13px;
    line-height: 1.2;
}

.payment-method-badge span:not(:first-child) {
    font-size: 11.5px;
    opacity: 0.7;
    font-weight: 400;
}

.payment-method-badge.badge-bank {
    background-color: #f1f5f9 !important;
}

.payment-method-badge.badge-card {
    background-color: #f1f5f9 !important;
}

.installment-info {
    display: inline-block;
    padding: 2px 8px;
    background: color-mix(in srgb, var(--primary-color) 8%, transparent);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 10.5px !important;
    font-weight: 500;
    opacity: 1 !important;
    width: fit-content;
    margin-top: 4px;
}

/* Teslimat Adresi */
.shipping-address-card {
    padding: 14px;
    background: var(--body-bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.address-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--heading-color);
}

.address-title-row i {
    font-size: 16px;
    color: var(--primary-color);
}

.address-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 4px;
}

.address-text {
    font-size: 12.5px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 3px;
}

.address-location {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.65;
    font-weight: 500;
    margin-bottom: 6px;
}

.address-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--text-color);
    opacity: 0.75;
    margin-bottom: 0;
}

.address-phone i {
    font-size: 14px;
}

/* Kargo Takip */
.cargo-tracking-box {
    margin-top: 12px;
}

.tracking-number {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--body-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
}

.tracking-number span {
    color: var(--text-color);
    opacity: 0.7;
}

.tracking-number strong {
    color: var(--heading-color);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    letter-spacing: 0.5px;
}

.copy-btn {
    margin-left: auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--secondary-bg-color);
    opacity: 1;
    color: var(--primary-color);
}

.copy-btn i {
    font-size: 15px;
}

/* Sipariş Aksiyon Butonları */
.order-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    justify-content: flex-end;
}

.btn-order-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-color);
}

.btn-order-action i {
    font-size: 16px;
    opacity: 0.8;
}

.btn-order-action:hover {
    background: var(--secondary-bg-color);
    border-color: color-mix(in srgb, var(--border-color) 80%, var(--text-color));
    color: var(--heading-color);
}

.btn-order-action.primary {
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
    color: var(--primary-color);
    border-color: color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.btn-order-action.primary:hover {
    background: color-mix(in srgb, var(--primary-color) 15%, #fff);
    color: color-mix(in srgb, var(--primary-color) 90%, #000);
    border-color: color-mix(in srgb, var(--primary-color) 45%, transparent);
}

/* Boş Durum */
.orders-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--body-bg-color), #fff);
}

.empty-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-bg-color), color-mix(in srgb, var(--primary-color) 8%, #fff));
    margin-bottom: 20px;
    color: var(--text-color);
    opacity: 0.4;
}

.orders-empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.orders-empty-state p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 20px;
}

.empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state-btn:hover {
    background: var(--btn-primary-hover-bg);
    color: var(--btn-primary-hover-text);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.empty-state-btn i {
    font-size: 18px;
}

/* Kopyalama Bildirimi */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--heading-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .order-details-grid {
        grid-template-columns: 1fr;
    }

    .order-detail-box:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .account-wrapper {
        grid-template-columns: 1fr;
    }

    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
    }

    .order-header-right {
        width: 100%;
        justify-content: space-between;
    }

    .order-meta-divider {
        display: none;
    }

    .order-header-meta {
        gap: 10px;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item-image {
        width: 100%;
        height: 120px;
    }

    .order-item-price {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        min-width: unset;
    }

    .order-actions-wrapper {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 8px;
    }

    .btn-order-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .order-section {
        padding: 14px;
    }

    .order-detail-box {
        padding: 14px;
    }
}

/* Sipariş Takibi Linki */
.orders-footer-link {
    margin-top: 30px;
    text-align: end;
}

.orders-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    font-size: 13.5px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.orders-footer-link a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.orders-footer-link a i {
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.orders-footer-link a:hover i {
    transform: translateX(4px);
}

/* ==========================================
   İADE VE İPTAL İŞLEMLERİ
   ========================================== */

.account-content-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.back-to-orders-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-to-orders-link:hover {
    color: var(--primary-color);
}

.return-order-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 25px;
}

.return-order-info-bar .info-item {
    font-size: 13.5px;
}

.return-order-info-bar .info-item .label {
    color: var(--text-color);
    opacity: 0.7;
    margin-right: 4px;
}

.return-order-info-bar .info-item .val {
    font-weight: 600;
    color: var(--heading-color);
}

/* Adım Göstergesi */
.return-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.step-indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-indicator-item.active {
    opacity: 1;
}

.step-indicator-item .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator-item.active .step-number {
    background: var(--primary-color);
    color: #fff;
}

.step-indicator-item .step-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading-color);
}

.step-indicator-line {
    flex: 0 0 50px;
    height: 2px;
    background: #e2e8f0;
}

.step-instructions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: color-mix(in srgb, var(--primary-color) 6%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary-color) 12%, transparent);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 25px;
}

.step-instructions i {
    font-size: 16px;
}

/* Adım İçerikleri */
.return-step-content {
    display: none;
}

.return-step-content.active {
    display: block;
    animation: returnFadeIn 0.3s ease;
}

@keyframes returnFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ürün Kartları */
.return-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.return-product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.return-product-card.selected {
    border-color: color-mix(in srgb, var(--primary-color) 35%, transparent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.015);
}

.return-product-card.disabled {
    opacity: 0.6;
    background: #fafafa;
}

.product-card-main-info {
    display: flex;
    gap: 16px;
}

.return-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
}

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

.no-image-placeholder {
    color: #cbd5e1;
    font-size: 24px;
}

.return-product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.return-product-details .product-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.product-variant-info {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.8;
}

.product-codes {
    font-size: 11.5px;
    color: var(--text-color);
    opacity: 0.65;
}

.purchase-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-color);
}

.purchase-info .returned-info {
    color: #d97706;
}

.return-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.quantity-controller-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-controller-wrapper .control-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
}

.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    transition: background 0.15s ease;
}

.qty-btn:hover {
    background: #f1f5f9;
}

.qty-display {
    width: 36px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading-color);
}

.max-qty-label {
    font-size: 11.5px;
    color: var(--text-color);
    opacity: 0.65;
    white-space: nowrap;
}

.reason-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 0;
    width: 340px;
    max-width: 100%;
    transition: opacity 0.2s ease;
}

.reason-selector-wrapper.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.reason-selector-wrapper .control-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
}

.form-select.reason-select {
    font-size: 13px;
    border-radius: 8px;
    border-color: var(--border-color);
    padding: 6px 12px;
    width: 100%;
}

.product-status-notice {
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Adım Alt İşlemleri */
.step-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.btn-cancel-return,
.btn-prev-step {
    padding: 10px 20px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--heading-color);
    font-size: 13.5px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cancel-return:hover,
.btn-prev-step:hover {
    background: #e2e8f0;
}

.btn-next-step,
.btn-submit-return {
    padding: 10px 24px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-next-step:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next-step:not(:disabled):hover,
.btn-submit-return:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

/* Adım 2 Detayları */
.summary-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.summary-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #f1f5f9;
}

.summary-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.summary-item-name .item-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--heading-color);
}

.summary-item-name .item-reason-tag {
    font-size: 11px;
    color: #d97706;
    background: #fffbeb;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.summary-item-qty {
    font-size: 13px;
    color: var(--text-color);
}

.summary-item-price {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading-color);
    min-width: 90px;
    text-align: right;
}

.return-description-box {
    margin-bottom: 25px;
}

.return-description-box .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
    display: block;
}

.return-description-box .optional {
    font-size: 11.5px;
    color: var(--text-color);
    opacity: 0.6;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    color: var(--text-color);
    resize: vertical;
    transition: border-color 0.2s ease;
}

.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* İade Taleplerim Sayfası */
.return-requests-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.return-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.return-card.expanded {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.return-card-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s ease;
}

.return-card-header:hover {
    background: #fafafa;
}

.return-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.return-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.return-code {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--heading-color);
}

.return-meta-date {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.65;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.return-header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-color);
}

.return-header-meta .separator {
    opacity: 0.3;
}

.return-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.return-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.return-status-badge i {
    font-size: 14px;
}

.return-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.return-toggle-icon i {
    transition: transform 0.3s ease;
}

.return-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.return-card-body.open {
    max-height: 1000px;
}

.return-section {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.return-section:last-child {
    border-bottom: none;
}

.return-section-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.return-section-title i {
    font-size: 16px;
    color: var(--primary-color);
}

.return-items-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.return-item-row-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    font-size: 13px;
}

.return-item-row-detail .item-name-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.return-item-row-detail .item-title {
    font-weight: 500;
    color: var(--heading-color);
}

.return-item-row-detail .item-qty-col {
    color: var(--text-color);
}

.return-item-row-detail .item-price-col {
    color: var(--heading-color);
    min-width: 100px;
    text-align: right;
}

.return-note-content {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
    border: 1px solid #f1f5f9;
}

.return-section.admin-response {
    background: color-mix(in srgb, var(--primary-color) 4%, #fff);
    border-top: 1px solid color-mix(in srgb, var(--primary-color) 8%, transparent);
}

.return-section.admin-response .return-section-title i {
    color: var(--primary-color);
}

.return-section.admin-response .return-note-content {
    background: #fff;
    border-color: color-mix(in srgb, var(--primary-color) 12%, transparent);
    color: var(--heading-color);
}

/* Pulsating Notification Dot for Support Feedback */
.response-glow-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-left: 12px;
    margin-right: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.response-glow-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse-glow 1.8s infinite ease-in-out;
    opacity: 0;
}

.return-card.expanded .response-glow-dot {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    margin-left: 0;
    margin-right: 0;
    width: 0;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .account-content-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .return-order-info-bar {
        gap: 10px;
        padding: 12px;
    }

    .return-product-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .reason-selector-wrapper {
        width: 100%;
    }

    .return-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .return-header-right {
        width: 100%;
        justify-content: space-between;
    }

    .return-item-row-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .return-item-row-detail .item-qty-col,
    .return-item-row-detail .item-price-col {
        min-width: unset;
        text-align: left;
        display: flex;
        gap: 6px;
    }
}

/* ========================================== */
/* Address Management Styles                  */
/* ========================================== */
.account-tabs {
    border-bottom: 1px solid var(--border-color) !important;
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}
.account-tabs .nav-item {
    margin-bottom: -1px !important;
}
.account-tabs .nav-link {
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: none !important;
    color: var(--text-color);
    padding: 10px 16px;
    font-size: 14.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.account-tabs .nav-link i {
    font-size: 17px;
}
.account-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
}
.account-tabs .nav-link:hover:not(.active) {
    color: var(--heading-color) !important;
    border-bottom-color: var(--border-color) !important;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.address-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.address-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.address-card.default-address {
    border-color: var(--primary-color);
}
.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.address-card-header h5 {
    font-size: 15px;
    color: var(--heading-color);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.address-card-body {
    font-size: 13.5px;
    color: var(--text-color);
    line-height: 1.5;
    flex-grow: 1;
}
.address-card-body .fullname {
    color: var(--heading-color);
    margin-bottom: 6px;
}
.address-card-body .region {
    color: var(--text-color);
    margin-top: 4px;
    display: block;
}
.address-card-body .phone {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
}
.address-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.address-badge {
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
}
.address-badge.badge-primary {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.add-address-btn-card {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-height: 200px;
    color: var(--text-color);
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.add-address-btn-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}
.add-address-btn-card i {
    font-size: 28px;
    margin-bottom: 8px;
}
.add-address-btn-card span {
    font-size: 14px;
}

.action-link {
    font-size: 13px;
    color: var(--text-color);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.15s ease;
}
.action-link:hover {
    color: var(--heading-color);
}
.action-link.delete-btn {
    color: #dc2626;
    margin-left: auto;
}
.action-link.delete-btn:hover {
    color: #b91c1c;
}
.action-link.default-action {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .address-grid {
        grid-template-columns: 1fr;
    }
}

.fav-count-bar {
    font-size: 13px;
    color: color-mix(in srgb, var(--text-color) 65%, transparent);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.fav-count-bar strong {
    color: var(--text-color);
}

.fav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fav-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.fav-card.removing {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fav-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease;
}

.fav-remove-btn:hover {
    background-color: #e53e3e;
    color: #fff;
}

.fav-remove-btn i {
    font-size: 15px;
}

.fav-card-image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--body-bg-color);
}

.fav-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fav-card:hover .fav-card-image img {
    transform: scale(1.05);
}

.fav-card-body {
    padding: 10px 2px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.fav-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.fav-card-name:hover {
    color: var(--primary-color);
}

.fav-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.fav-original-price {
    font-size: 12px;
    color: color-mix(in srgb, var(--text-color) 45%, transparent);
    text-decoration: line-through;
}

.fav-final-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.fav-final-price.discounted {
    color: var(--primary-color);
}

.fav-stock-out {
    font-size: 12px;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fav-go-btn {
    display: block;
    text-align: center;
    padding: 7px;
    border-radius: 8px;
    background-color: var(--body-bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fav-go-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 576px) {
    .fav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--white-color);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.review-item.removing {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-product-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.review-product-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--body-bg-color);
    flex-shrink: 0;
}

.review-product-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.review-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-product-name:hover {
    color: var(--primary-color);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.review-stars i {
    font-size: 14px;
}

.review-stars i.empty {
    color: color-mix(in srgb, var(--text-color) 20%, transparent);
}

.review-date {
    font-size: 11.5px;
    color: color-mix(in srgb, var(--text-color) 50%, transparent);
}

.review-content {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
    word-break: break-word;
}

.review-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-image-link {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--body-bg-color);
    border: 1px solid var(--border-color);
}

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

.review-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.review-delete-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.review-delete-btn:hover {
    background-color: rgba(220, 38, 38, 0.05);
}

.review-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.review-status {
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.review-status.approved {
    background-color: color-mix(in srgb, #16a34a 8%, transparent);
    color: #15803d;
}

.review-status.pending {
    background-color: color-mix(in srgb, #ca8a04 8%, transparent);
    color: #a16207;
}

.review-verified {
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 5px;
    background-color: color-mix(in srgb, #2563eb 8%, transparent);
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.contact-page-wrap {
    padding-bottom: 60px;
}

.contact-page-wrap .container {
    max-width: 1100px;
}

.contact-page-wrap #account-main {
    margin-top: 36px;
}

.contact-alert-msg {
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background-color: var(--body-bg-color);
    text-decoration: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    position: relative;
    overflow: hidden;
}

a.contact-card:hover {
    border-color: color-mix(in srgb, var(--secondary-primary) 45%, transparent);
    text-decoration: none;
}

.contact-card.no-link {
    cursor: default;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--secondary-primary) 10%, transparent);
    color: var(--secondary-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background-color 0.22s ease;
}

a.contact-card:hover .contact-card-icon {
    background-color: color-mix(in srgb, var(--secondary-primary) 18%, transparent);
}

.contact-card.whatsapp .contact-card-icon {
    background-color: rgba(37, 211, 102, 0.1);
    color: #1da851;
}

a.contact-card.whatsapp:hover .contact-card-icon {
    background-color: rgba(37, 211, 102, 0.18);
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}

.contact-card-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-color);
    opacity: 0.6;
    line-height: 1;
}

.contact-card-value {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-arrow {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.3;
    transition: opacity 0.22s ease, transform 0.22s ease;
    flex-shrink: 0;
}

a.contact-card:hover .contact-card-arrow {
    opacity: 0.7;
    transform: translate(2px, -2px);
}

.contact-form-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--body-bg-color);
}

.contact-form-card-body {
    padding: 24px 28px;
}

.contact-conditional-field {
    display: none;
}

.contact-textarea {
    height: 130px;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.contact-recaptcha-col {
    flex-shrink: 0;
}

.contact-submit-col {
    margin-left: auto;
}

.contact-submit-btn {
    min-width: 220px;
    padding: 12px 30px;
}

.contact-map-section {
    margin-top: 28px;
}

.contact-map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

@media (max-width: 991px) {
    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-form-card-body {
        padding: 20px;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-submit-col {
        margin-left: 0;
        width: 100%;
    }

    .contact-submit-btn {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 575px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 14px;
    }
}
