/* ============================================================
   Login Page Styles
   ============================================================ */
.uk-text-yellow {
    color: #d0d625;
}

.login-page {
    min-height: 50vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page__inner {
    display: flex;
    width: 100%;
    max-width: 1000px;
}

.login-page__left {
    flex: 1;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
}

.login-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/ad_bg.jpg') center;
    background-size: cover;
}

.login-page__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(208, 214, 37, 0.9), rgba(139, 106, 16, 0.9));
}

.login-page__content {
    position: relative;
    z-index: 2;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.login-page__content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.login-page__content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.login-page__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #333;
    border-radius: 0 24px 24px 0;
}

.login-form {
    width: 100%;
    max-width: 380px;
}

.login-form__title {
    font-size: 28px;
    font-weight: 700;
    color: #d0d625;
    text-align: center;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-form__label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
    display: block;
}

.login-form__input {
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.login-form__input:focus {
    outline: none;
    border-color: #d0d625;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(208, 214, 37, 0.2);
}

.login-form__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-form__checkbox-row {
    display: flex;
    align-items: center;
}

.login-form__checkbox-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-form__checkbox-label input[type="checkbox"] {
    margin: 0;
    accent-color: #d0d625;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.login-form__btn {
    height: 52px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #d0d625, #b88b1e, #d0d625);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.login-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 214, 37, 0.4);
}

.login-form__hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.login-form__signup {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.login-form__signup a {
    color: #d0d625;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-form__signup a:hover {
    color: #b88b1e;
    text-decoration: underline;
}

.login-form__terms {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.login-form__terms a {
    color: #d0d625;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-form__terms a:hover {
    color: #b88b1e;
    text-decoration: underline;
}

@media (max-width: 959px) {
    .login-page__inner {
        flex-direction: column;
        max-width: 500px;
    }

    .login-page__left {
        border-radius: 24px 24px 0 0;
        min-height: 350px;
    }

    .login-page__content {
        padding: 40px;
        min-height: 350px;
        text-align: center;
    }

    .login-page__content h1 {
        font-size: 32px;
    }

    .login-page__right {
        border-radius: 0 0 24px 24px;
        padding: 30px;
    }

    .login-form__title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

@media (max-width: 639px) {
    .login-page {
        padding: 20px 15px;
    }

    .login-page__content h1 {
        font-size: 26px;
    }

    .login-page__content p {
        font-size: 14px;
    }

    .login-form__input {
        height: 44px;
        font-size: 13px;
    }

    .login-form__btn {
        height: 48px;
        font-size: 14px;
    }
}

/* ============================================================
   Payment Page Styles
   ============================================================ */
.pay-page {
    min-height: calc(100vh - 80px);
    padding: 80px;
    background: #222;
}

.pay-page__header {
    text-align: center;
    margin-bottom: 40px;
}

.pay-page__breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pay-page__breadcrumb li {
    display: flex;
    align-items: center;
}

.pay-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.pay-page__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.pay-page__breadcrumb a:hover {
    color: #d0d625;
}

.pay-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d0d625;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pay-page__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.pay-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.pay-card__badge {
    display: inline-block;
    background: linear-gradient(90deg, #d0d625, #b88b1e);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pay-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.pay-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.pay-card__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.pay-card__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.pay-card__summary-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pay-card__summary-amount {
    display: flex;
    align-items: baseline;
}

.pay-card__summary-amount h4 {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pay-card__summary-amount h3 {
    color: #d0d625;
    margin: 0;
    font-size: 1.6rem;
}

.pay-card__quantity {
    margin-top: 5px;
}

.pay-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s;
    box-sizing: border-box;
}

.pay-input:focus {
    outline: none;
    border-color: #d0d625;
    background: rgba(255, 255, 255, 0.1);
}

.pay-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.pay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.pay-grid__item {
    position: relative;
}

.pay-product {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 150px;
}

.pay-product:hover {
    border-color: rgba(208, 214, 37, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.pay-product--selected {
    border-color: #d0d625;
    background: rgba(208, 214, 37, 0.1);
}

.pay-product__price {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    color: #d0d625;
    font-size: 0.95rem;
}

.pay-payment {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-payment:hover {
    border-color: rgba(208, 214, 37, 0.5);
}

.pay-payment--selected {
    border-color: #d0d625;
    background: rgba(208, 214, 37, 0.1);
}

.pay-quantity {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 3px;
}

.pay-quantity__btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-quantity__btn:hover {
    background: #d0d625;
    color: #333;
}

.pay-quantity__input {
    background: transparent;
    border: none;
    color: white;
    width: 55px;
    text-align: center;
    font-size: 1rem;
    padding: 0 5px;
}

.pay-quantity__input:focus {
    outline: none;
}

.pay-page__submit {
    text-align: center;
    padding: 30px 0 40px 0;
}

.pay-page__submit-btn {
    background: linear-gradient(90deg, #d0d625, #b88b1e, #d0d625);
    color: #333;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pay-page__submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(208, 214, 37, 0.4);
}

@media (max-width: 959px) {
    .pay-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pay-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .pay-page {
        padding: 24px 15px;
    }

    .pay-page__title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .pay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pay-card {
        padding: 20px;
    }

    .pay-page__submit-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   User Page Styles
   ============================================================ */
.user-page {
    min-height: calc(100vh - 80px);
    padding: 80px;
    background: #222;
}

.user-page__header {
    margin-bottom: 30px;
}

.user-page__breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.user-page__breadcrumb li {
    display: flex;
    align-items: center;
}

.user-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.user-page__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.user-page__breadcrumb a:hover {
    color: #d0d625;
}

.user-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-sidebar__profile {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

.user-sidebar__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.user-sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-sidebar__nav li {
    margin-bottom: 6px;
}

.user-sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.user-sidebar__nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.user-sidebar__nav-link--active {
    background: rgba(208, 214, 37, 0.2);
    color: #d0d625 !important;
}

.user-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0 0 16px 0;
}

.user-card__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 22px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.user-card__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 18px 0;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.order-detail__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.order-detail__value {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.order-detail__value--status {
    color: #d0d625;
}

.order-detail--total {
    background: rgba(208, 214, 37, 0.1);
    margin-top: 5px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.order-detail--total .order-detail__value {
    font-size: 1.3rem;
    color: #d0d625;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table__header {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.user-table__header--right {
    text-align: right;
}

.user-table__row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.user-table__row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.user-table__cell {
    padding: 14px 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.user-table__cell--status {
    color: #d0d625;
}

.user-table__cell--right {
    text-align: right;
}

.user-table__link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.user-table__link:hover {
    color: #60a5fa;
}

.user-table__empty {
    text-align: center;
    padding: 40px 18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.user-pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.user-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
}

.user-pagination li {
    display: inline;
}

.user-pagination a,
.user-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.user-pagination a {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.user-pagination a:hover {
    background: rgba(208, 214, 37, 0.3);
    color: #d0d625;
}

.user-pagination span {
    color: #d0d625;
    background: rgba(208, 214, 37, 0.2);
    font-weight: 600;
}

@media (max-width: 959px) {
    .user-sidebar {
        padding: 20px;
    }

    .user-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .user-page {
        padding: 24px 15px;
    }

    .user-card {
        padding: 20px;
    }

    .user-table__header {
        padding: 10px 10px;
        font-size: 0.75rem;
    }

    .user-table__cell {
        padding: 10px 10px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   RPage Show Page Styles
   ============================================================ */
.rpage-page {
    min-height: calc(100vh - 80px);
    padding: 40px 20px 0 20px;
}

.rpage-page__header {
    margin-bottom: 30px;
}

.rpage-page__breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.rpage-page__breadcrumb li {
    display: flex;
    align-items: center;
}

.rpage-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.4);
}

.rpage-page__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.rpage-page__breadcrumb a:hover {
    color: #d0d625;
}

.rpage-content {
    background: #222;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rpage-content__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
}

.rpage-content__body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.rpage-content__body h1,
.rpage-content__body h2,
.rpage-content__body h3,
.rpage-content__body h4,
.rpage-content__body h5,
.rpage-content__body h6 {
    color: #d0d625;
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600;
}

.rpage-content__body h1 { font-size: 1.5rem; }
.rpage-content__body h2 { font-size: 1.35rem; }
.rpage-content__body h3 { font-size: 1.2rem; }
.rpage-content__body h4 { font-size: 1.05rem; }

.rpage-content__body p {
    margin-bottom: 18px;
}

.rpage-content__body ul,
.rpage-content__body ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.rpage-content__body li {
    margin-bottom: 10px;
}

.rpage-content__body a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.rpage-content__body a:hover {
    color: #60a5fa;
}

.rpage-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
}

.rpage-content__body blockquote {
    border-left: 4px solid #d0d625;
    padding-left: 18px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
}

.rpage-content__body hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

@media (max-width: 959px) {
    .rpage-content {
        padding: 30px 25px;
    }

    .rpage-content__title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 14px;
    }
}

@media (max-width: 640px) {
    .rpage-page {
        padding: 24px 15px;
    }

    .rpage-content {
        padding: 22px 20px;
    }

    .rpage-content__title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .rpage-content__body {
        font-size: 0.95rem;
    }
}