/* =========================================
   RTPKING700 - GLOBAL STYLE
   ========================================= */

:root {
    --bg-dark: #02070d;
    --bg-navy: #061a2d;
    --blue-dark: #003b69;
    --blue: #0074c8;

    --gold: #ffd21c;
    --gold-light: #ffe66d;
    --gold-dark: #b88600;

    --white: #ffffff;
    --text: #eaf2f8;
    --muted: #9fb2c3;

    --border: rgba(255, 210, 28, 0.25);

    --container: 1200px;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* CONTAINER */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
    background: rgba(2, 7, 13, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    width: 190px;
    max-height: 65px;
    object-fit: contain;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    transition: .2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* =========================================
   SEARCH
   ========================================= */

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-navy);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.search-box input {
    width: 210px;
    padding: 11px 14px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--white);
}

.search-box input::placeholder {
    color: var(--muted);
}

.search-box button {
    padding: 11px 15px;
    border: 0;
    background: var(--gold);
    color: #111;
    cursor: pointer;
    font-weight: 700;
}

/* =========================================
   BUTTON
   ========================================= */

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;

    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold),
        var(--gold-dark)
    );

    color: #111;
    border: 1px solid var(--gold-light);
    border-radius: 9px;

    font-weight: 800;
    cursor: pointer;

    transition: .2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 210, 28, .25);
}

/* =========================================
   HERO
   ========================================= */

.hero {
    padding: 70px 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 116, 200, .28),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            var(--bg-dark),
            var(--bg-navy),
            var(--bg-dark)
        );
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
}

/* =========================================
   SECTION
   ========================================= */

.section {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 30px;
    color: var(--white);
}

.section-title h2 span {
    color: var(--gold);
}

.section-title p {
    color: var(--muted);
    margin-top: 5px;
}

/* =========================================
   PRODUCT GRID
   ========================================= */

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

.product-card {
    overflow: hidden;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 16px;

    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 210, 28, .12);
}

.product-image {
    aspect-ratio: 1 / 1;
    background: var(--bg-navy);
    overflow: hidden;
}

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

.product-info {
    padding: 16px;
}

.product-name {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-price {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    margin-top: 60px;
    padding: 50px 0 25px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 82, 140, .3),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--bg-dark),
            var(--bg-navy)
        );

    border-top: 1px solid var(--gold-dark);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 992px) {

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-menu {
        gap: 15px;
    }

    .search-box input {
        width: 150px;
    }
}

@media (max-width: 768px) {

    .header-inner {
        min-height: 65px;
    }

    .logo {
        width: 150px;
    }

    .nav-menu {
        display: none;
    }

    .search-box {
        display: none;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 17px;
    }
}

@media (max-width: 400px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-grid {
        gap: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }
}
/* =========================================
   HEADER ACTION
   ========================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--bg-navy);

    font-size: 19px;

    transition: .2s ease;
}

.header-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.header-login {
    padding: 10px 18px;
}

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--bg-navy);
    color: var(--gold);

    font-size: 22px;
    cursor: pointer;
}


/* =========================================
   MOBILE HEADER
   ========================================= */

@media (max-width: 768px) {

    .header-actions {
        margin-left: auto;
    }

    .header-login {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-inner {
        gap: 10px;
    }

    .brand-logo {
        flex-shrink: 0;
    }

    .logo {
        width: 145px;
        height: auto;
    }
}

/* =========================================
   FOOTER
   ========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 190px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 400px;
    color: var(--muted);
    font-size: 14px;
}

.footer-column h3 {
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 9px;
}

.footer-column a {
    color: var(--muted);
    font-size: 14px;
    transition: .2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}


/* MOBILE */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 160px;
    }
}

@media (max-width: 450px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* =========================================
   HERO
   ========================================= */

.hero-label {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 12px;

    color: var(--gold);
    background: rgba(255, 210, 28, .08);

    border: 1px solid var(--border);
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 1px solid var(--gold);
    border-radius: 9px;

    color: var(--gold);
    font-weight: 700;

    transition: .2s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: #111;
}


/* =========================================
   CATEGORY
   ========================================= */

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

.category-card {
    padding: 20px;

    text-align: center;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 14px;

    transition: .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.category-image {
    width: 70px;
    height: 70px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background: var(--bg-navy);

    color: var(--gold);

    font-size: 28px;
}

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

.category-card h3 {
    color: var(--white);
    font-size: 15px;
}


/* =========================================
   PRODUCT
   ========================================= */

.product-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
}

.product-category {
    margin-bottom: 4px;

    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.section-action {
    margin-top: 30px;
    text-align: center;
}


/* =========================================
   ARTICLES
   ========================================= */

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

.article-card {
    overflow: hidden;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.article-card > a img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-content {
    padding: 16px;
}

.article-content time {
    color: var(--gold);
    font-size: 12px;
}

.article-content h3 {
    margin: 8px 0;

    font-size: 17px;
}

.article-content h3 a {
    color: var(--white);
}

.article-content h3 a:hover {
    color: var(--gold);
}

.article-content p {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

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

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

    .hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 450px) {

    .article-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PAGE HEADER
   ========================================= */

.page-header {
    padding: 45px 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(0, 116, 200, .2),
            transparent 40%
        ),
        var(--bg-navy);

    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-top: 15px;

    font-size: clamp(32px, 5vw, 48px);

    color: var(--white);
}

.page-header h1 span {
    color: var(--gold);
}

.page-header p {
    margin-top: 8px;
    color: var(--muted);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);
    font-size: 13px;
}

.breadcrumb a:hover {
    color: var(--gold);
}


/* =========================================
   CATALOG
   ========================================= */

.catalog-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
}

.catalog-sidebar {
    height: fit-content;

    padding: 20px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.catalog-sidebar h2 {
    margin-bottom: 15px;

    color: var(--gold);
    font-size: 18px;
}

.catalog-sidebar ul {
    list-style: none;
}

.catalog-sidebar li {
    margin-bottom: 5px;
}

.catalog-sidebar a {
    display: block;

    padding: 9px 10px;

    color: var(--muted);

    border-radius: 8px;

    font-size: 14px;
}

.catalog-sidebar a:hover,
.catalog-sidebar a.active {
    background: rgba(255, 210, 28, .08);
    color: var(--gold);
}


/* =========================================
   CATALOG SEARCH
   ========================================= */

.catalog-search {
    display: flex;
    margin-bottom: 20px;

    background: var(--bg-navy);

    border: 1px solid var(--border);
    border-radius: 10px;

    overflow: hidden;
}

.catalog-search input {
    flex: 1;

    min-width: 0;

    padding: 13px 15px;

    background: transparent;
    border: 0;
    outline: 0;

    color: var(--white);
}

.catalog-search button {
    padding: 0 22px;

    border: 0;

    background: var(--gold);

    color: #111;

    font-weight: 800;

    cursor: pointer;
}


/* =========================================
   CATALOG INFO
   ========================================= */

.catalog-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 14px;
}

.catalog-info strong {
    color: var(--gold);
}


/* =========================================
   STOCK
   ========================================= */

.product-stock {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   PAGINATION
   ========================================= */

.pagination {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 7px;

    margin-top: 35px;
}

.pagination a {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 8px;

    color: var(--muted);
}

.pagination a:hover,
.pagination a.active {
    background: var(--gold);
    border-color: var(--gold);

    color: #111;
}


/* =========================================
   EMPTY
   ========================================= */

.empty-state {
    padding: 60px 20px;

    text-align: center;

    background: var(--bg-navy);

    border: 1px solid var(--border);
    border-radius: 15px;
}

.empty-state h2 {
    color: var(--white);
}

.empty-state p {
    margin: 8px 0 20px;

    color: var(--muted);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        order: 1;
    }

    .catalog-content {
        order: 2;
    }

    .catalog-sidebar ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .catalog-info {
        font-size: 13px;
    }
}

/* =========================================
   PRODUCT DETAIL
   ========================================= */

.product-breadcrumb {
    padding: 18px 0;

    background: var(--bg-navy);

    border-bottom: 1px solid var(--border);
}

.product-breadcrumb nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    color: var(--muted);
    font-size: 13px;
}

.product-breadcrumb a:hover {
    color: var(--gold);
}


/* =========================================
   DETAIL LAYOUT
   ========================================= */

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}


/* =========================================
   IMAGE
   ========================================= */

.product-detail-image {
    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #0a263d,
            #030b13
        );

    border: 1px solid var(--border);
    border-radius: 18px;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-detail-placeholder {
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 25px;
    font-weight: 800;
}


/* =========================================
   INFORMATION
   ========================================= */

.product-detail-info {
    padding-top: 5px;
}

.detail-category {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.product-detail-info h1 {
    margin-top: 10px;
    margin-bottom: 15px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.detail-price {
    margin-bottom: 12px;

    color: var(--gold);

    font-size: 30px;
    font-weight: 900;
}

.detail-sku {
    margin-bottom: 10px;

    color: var(--muted);
    font-size: 13px;
}

.detail-stock {
    margin-bottom: 25px;
}

.stock-available {
    color: #72df9b;
    font-weight: 700;
}

.stock-empty {
    color: #ff7272;
    font-weight: 700;
}


/* =========================================
   CART FORM
   ========================================= */

.add-cart-form {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 35px;
}

.quantity-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quantity-box label {
    color: var(--muted);
    font-size: 13px;
}

.quantity-box input {
    width: 90px;

    padding: 12px;

    background: var(--bg-navy);

    border: 1px solid var(--border);
    border-radius: 9px;

    color: var(--white);

    outline: none;
}

.quantity-box input:focus {
    border-color: var(--gold);
}


/* =========================================
   DESCRIPTION
   ========================================= */

.detail-description {
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.detail-description h2,
.seo-content h2 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 22px;
}

.description-content {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   SEO CONTENT
   ========================================= */

.product-info-section {
    background: var(--bg-navy);
}

.seo-content {
    max-width: 850px;
}

.seo-content p {
    color: var(--muted);
    line-height: 1.8;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-info h1 {
        font-size: 32px;
    }

    .detail-price {
        font-size: 26px;
    }

    .product-detail-image img {
        aspect-ratio: 1 / 1;
    }
}
/* =========================================
   CATEGORY PAGE
   ========================================= */

.category-page-grid {
    grid-template-columns: repeat(4, 1fr);
}

.category-page-grid .category-card {
    text-align: left;
}

.category-page-grid .category-image {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
}

.category-page-grid h2 {
    color: var(--white);
    font-size: 18px;
}

.category-page-grid p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 992px) {

    .category-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .category-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-page-grid .category-image {
        height: 130px;
    }
}

/* =========================================
   CART
   ========================================= */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.cart-items {
    min-width: 0;
}

.cart-item {
    position: relative;

    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;

    margin-bottom: 15px;
    padding: 15px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 14px;
}

.cart-item-image {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--bg-navy);
    border-radius: 10px;

    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

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

.cart-item-name {
    display: block;

    margin-bottom: 7px;

    color: var(--white);

    font-size: 17px;
    font-weight: 700;
}

.cart-item-name:hover {
    color: var(--gold);
}

.cart-item-price {
    color: var(--gold);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    color: var(--muted);
    font-size: 13px;
}

.cart-item-actions input {
    width: 65px;

    padding: 7px;

    background: var(--bg-dark);

    border: 1px solid var(--border);
    border-radius: 7px;

    color: var(--white);

    outline: none;
}

.cart-item-subtotal {
    color: var(--gold);

    font-size: 16px;
    font-weight: 800;

    white-space: nowrap;
}

.cart-remove {
    width: 32px;
    height: 32px;

    border: 1px solid rgba(255, 90, 90, .3);
    border-radius: 7px;

    background: transparent;

    color: #ff7777;

    font-size: 20px;

    cursor: pointer;
}

.cart-remove:hover {
    background: rgba(255, 80, 80, .1);
}

.cart-update {
    margin-top: 20px;
}

.clear-cart-form {
    margin-top: 12px;
}

.btn-danger {
    padding: 10px 16px;

    background: transparent;

    border: 1px solid rgba(255, 90, 90, .4);
    border-radius: 8px;

    color: #ff7777;

    cursor: pointer;
}


/* =========================================
   SUMMARY
   ========================================= */

.cart-summary {
    position: sticky;
    top: 100px;

    padding: 22px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.cart-summary h2 {
    margin-bottom: 20px;

    color: var(--white);
    font-size: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 14px;

    color: var(--muted);
    font-size: 14px;
}

.summary-row strong {
    color: var(--white);
}

.summary-total {
    color: var(--gold) !important;
    font-size: 20px;
}

.summary-divider {
    height: 1px;

    margin: 20px 0;

    background: rgba(255,255,255,.08);
}

.checkout-button {
    width: 100%;
}

.continue-shopping {
    display: block;

    margin-top: 15px;

    color: var(--muted);

    text-align: center;
    font-size: 13px;
}

.continue-shopping:hover {
    color: var(--gold);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {

    .cart-item {
        grid-template-columns: 75px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-item-image {
        width: 75px;
        height: 75px;
    }

    .cart-item-subtotal {
        grid-column: 2;
    }

    .cart-remove {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .cart-item-name {
        padding-right: 35px;
        font-size: 15px;
    }
}
/* =========================================
   CHECKOUT
   ========================================= */

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-box {
    margin-bottom: 20px;
    padding: 25px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.checkout-box h2,
.checkout-summary h2 {
    margin-bottom: 22px;

    color: var(--white);
    font-size: 21px;
}


/* =========================================
   FORM
   ========================================= */

.form-group {
    margin-bottom: 18px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--white);

    font-size: 14px;
    font-weight: 600;
}

.form-group label span {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    background: #061522;

    border: 1px solid var(--border);
    border-radius: 9px;

    color: var(--white);

    outline: none;

    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* =========================================
   PAYMENT
   ========================================= */

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 15px;

    background: #061522;

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
}

.payment-option input {
    margin-top: 4px;

    accent-color: var(--gold);
}

.payment-option span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.payment-option strong {
    color: var(--white);
}

.payment-option small {
    color: var(--muted);
    line-height: 1.5;
}


/* =========================================
   SUMMARY
   ========================================= */

.checkout-summary {
    position: sticky;
    top: 100px;

    padding: 22px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.checkout-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-product {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    color: var(--muted);

    font-size: 13px;
}

.checkout-product > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-product strong {
    color: var(--white);
}

.checkout-product > strong {
    color: var(--gold);

    white-space: nowrap;
}

.summary-divider {
    height: 1px;

    margin: 20px 0;

    background: rgba(255,255,255,.08);
}

.checkout-summary .summary-row {
    margin-bottom: 13px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.checkout-total span {
    color: var(--white);
    font-weight: 700;
}

.checkout-total strong {
    color: var(--gold);
    font-size: 21px;
}

.checkout-submit {
    width: 100%;

    border: 0;
}

.checkout-secure {
    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;
    text-align: center;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 600px) {

    .checkout-box {
        padding: 18px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-product {
        font-size: 12px;
    }
}
/* =========================================
   ABOUT PAGE
   ========================================= */

.section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================
   ABOUT INTRO
   ========================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap: 50px;

    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    margin-bottom: 15px;

    color: var(--muted);

    line-height: 1.8;
}

.about-highlight {
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(255, 210, 28, .6),
        rgba(0, 140, 255, .4)
    );

    border-radius: 20px;
}

.about-logo-box {
    min-height: 320px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 130, 220, .2),
            transparent 60%
        ),
        #061522;

    border-radius: 19px;

    text-align: center;
}

.about-logo {
    color: var(--white);

    font-size: clamp(38px, 6vw, 65px);
    font-weight: 900;

    letter-spacing: -2px;
}

.about-logo span {
    color: var(--gold);
}

.about-logo-box p {
    max-width: 300px;

    margin-top: 15px;

    color: var(--muted);

    line-height: 1.6;
}


/* =========================================
   DARK ABOUT SECTION
   ========================================= */

.about-dark-section {
    background: var(--bg-navy);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: clamp(27px, 4vw, 40px);
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--muted);

    line-height: 1.7;
}


/* =========================================
   VISION
   ========================================= */

.vision-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.vision-card {
    padding: 25px;

    background: rgba(255,255,255,.02);

    border: 1px solid var(--border);
    border-radius: 15px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.vision-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255, 210, 28, .45);
}

.vision-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background:
        rgba(255, 210, 28, .08);

    border: 1px solid
        rgba(255, 210, 28, .2);

    border-radius: 10px;

    color: var(--gold);

    font-size: 20px;
}

.vision-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 19px;
}

.vision-card p {
    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================
   FEATURES
   ========================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 25px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background:
        rgba(255, 210, 28, .08);

    border-radius: 10px;

    color: var(--gold);

    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CTA
   ========================================= */

.about-cta {
    padding: 80px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(0, 130, 220, .18),
            transparent 55%
        );
}

.about-cta-content {
    max-width: 700px;

    margin: auto;

    text-align: center;
}

.about-cta h2 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: clamp(28px, 4vw, 42px);
}

.about-cta h2 span {
    color: var(--gold);
}

.about-cta p {
    margin-bottom: 25px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .vision-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .about-logo-box {
        min-height: 250px;
    }
}
/* =========================================
   SERVICE PAGE
   ========================================= */

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

.service-card {
    padding: 26px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 15px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 210, 28, .45);
}

.service-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(255, 210, 28, .08);

    border: 1px solid
        rgba(255, 210, 28, .18);

    border-radius: 12px;

    font-size: 22px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 19px;
}

.service-card p {
    min-height: 78px;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.service-card a {
    color: var(--gold);

    font-size: 14px;
    font-weight: 700;
}

.service-card a:hover {
    text-decoration: underline;
}


/* =========================================
   PROCESS
   ========================================= */

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

.process-card {
    position: relative;

    padding: 25px;

    background: rgba(255,255,255,.02);

    border: 1px solid var(--border);
    border-radius: 15px;
}

.process-number {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 28px;
    font-weight: 900;
}

.process-card h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;
}

.process-card p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }
}
/* =========================================
   FAQ
   ========================================= */

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    overflow: hidden;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);
    border-radius: 12px;

    transition: border-color .2s ease;
}

.faq-item:has(
    .faq-question[aria-expanded="true"]
) {
    border-color:
        rgba(255, 210, 28, .45);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    background: transparent;

    border: 0;

    color: var(--white);

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-plus {
    flex-shrink: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 210, 28, .25);

    border-radius: 7px;

    color: var(--gold);

    font-size: 20px;
    font-weight: 400;
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .faq-question {
        padding: 17px;

        font-size: 14px;
    }

    .faq-answer {
        padding: 0 17px 17px;
    }

    .faq-answer p {
        font-size: 13px;
    }

}
/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap: 35px;

    align-items: start;
}

.contact-info {
    padding: 10px 0;
}

.contact-info h2 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.contact-info h2 span {
    color: var(--gold);
}

.contact-intro {
    margin-bottom: 30px;

    color: var(--muted);

    line-height: 1.8;
}


/* =========================================
   CONTACT ITEM
   ========================================= */

.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 16px;

    padding: 16px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);

    border-radius: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 210, 28, .08);

    border: 1px solid
        rgba(255, 210, 28, .18);

    border-radius: 10px;

    color: var(--gold);

    font-size: 19px;
}

.contact-item h3 {
    margin-bottom: 4px;

    color: var(--white);

    font-size: 15px;
}

.contact-item p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form-box {
    padding: 28px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);

    border-radius: 16px;
}

.contact-form-box h2 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 23px;
}

.contact-form-box > p {
    margin-bottom: 25px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 17px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 12px 14px;

    background: #061522;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: var(--white);

    outline: none;

    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;

    border: 0;

    cursor: pointer;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 0;
    }
}

@media (max-width: 500px) {

    .contact-form-box {
        padding: 20px;
    }

    .contact-item {
        padding: 13px;
    }

}
/* =========================================
   BLOG
   ========================================= */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   BLOG CARD
   ========================================= */

.blog-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);

    border-radius: 15px;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 210, 28, .45);
}


/* =========================================
   IMAGE
   ========================================= */

.blog-image-link {
    display: block;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #061522;
}

.blog-image-link img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .3s ease;
}

.blog-card:hover
.blog-image-link img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE PLACEHOLDER
   ========================================= */

.blog-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 140, 255, .25),
            transparent 60%
        );

    color: var(--gold);

    font-size: 25px;
    font-weight: 900;
}


/* =========================================
   BLOG CONTENT
   ========================================= */

.blog-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 22px;
}


.blog-content h3 {
    margin: 0 0 10px;
}


.blog-content h3 a {
    color: var(--white);

    font-size: 19px;

    line-height: 1.4;

    transition: color .2s ease;
}


.blog-content h3 a:hover {
    color: var(--gold);
}


.blog-content p {
    margin-bottom: 15px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   BLOG META
   ========================================= */

.blog-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;

    margin-bottom: 14px;

    color: #7890a0;

    font-size: 12px;
}


/* =========================================
   READ MORE
   ========================================= */

.blog-read-more {
    color: var(--gold);

    font-size: 13px;

    font-weight: 700;
}

.blog-read-more:hover {
    text-decoration: underline;
}


/* =========================================
   EMPTY
   ========================================= */

.blog-empty {
    max-width: 600px;

    margin: 30px auto;

    padding: 50px 25px;

    text-align: center;

    background:
        rgba(255,255,255,.02);

    border: 1px solid var(--border);

    border-radius: 15px;
}


.blog-empty-icon {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 30px;
}


.blog-empty h2 {
    margin-bottom: 10px;

    color: var(--white);
}


.blog-empty p {
    margin-bottom: 22px;

    color: var(--muted);
}


/* =========================================
   PAGINATION
   ========================================= */

.pagination {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 40px;
}


.pagination a,
.pagination span {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 8px;

    color: var(--muted);

    font-size: 13px;

    text-decoration: none;
}


.pagination a:hover,
.pagination .active {
    background:
        rgba(255, 210, 28, .1);

    border-color:
        rgba(255, 210, 28, .4);

    color: var(--gold);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 992px) {

    .blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   ARTICLE PAGE
   ========================================= */

.article-page {
    padding: 40px 0 70px;
}

.article-breadcrumb {
    margin-bottom: 30px;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.article-header h1 {
    margin: 0 0 18px;

    color: var(--white);

    font-size: clamp(30px, 5vw, 52px);

    line-height: 1.15;
}

.article-meta {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;

    color: var(--muted);

    font-size: 13px;
}

.article-meta strong {
    color: var(--gold);
}


/* =========================================
   FEATURED IMAGE
   ========================================= */

.article-featured-image {
    max-width: 1000px;

    margin: 0 auto 45px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: #061522;
}

.article-featured-image img {
    width: 100%;

    max-height: 550px;

    display: block;

    object-fit: cover;
}


/* =========================================
   ARTICLE LAYOUT
   ========================================= */

.article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 35px;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================
   ARTICLE CONTENT
   ========================================= */

.article-content {
    min-width: 0;

    padding: 30px;

    background:
        rgba(255,255,255,.02);

    border: 1px solid var(--border);

    border-radius: 15px;

    color: #c9d4dc;

    font-size: 16px;

    line-height: 1.9;
}

.article-content h2 {
    margin-top: 35px;
    margin-bottom: 15px;

    color: var(--white);

    font-size: 28px;

    line-height: 1.3;
}

.article-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;

    color: var(--white);

    font-size: 22px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 22px;

    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--gold);

    text-decoration: underline;
}

.article-content blockquote {
    margin: 25px 0;

    padding: 18px 22px;

    background:
        rgba(255,210,28,.05);

    border-left: 3px solid var(--gold);

    border-radius: 0 8px 8px 0;

    color: #dbe4ea;
}

.article-content img {
    max-width: 100%;
    height: auto;

    display: block;

    margin: 25px auto;

    border-radius: 10px;
}


/* =========================================
   SIDEBAR
   ========================================= */

.article-sidebar {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.article-sidebar-box {
    padding: 22px;

    background: linear-gradient(
        145deg,
        #0a263d,
        #030b13
    );

    border: 1px solid var(--border);

    border-radius: 14px;
}

.article-sidebar-box h2 {
    margin: 10px 0;

    color: var(--white);

    font-size: 19px;
}

.article-sidebar-box p {
    margin-bottom: 17px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.article-sidebar-box .btn-gold {
    display: inline-block;
}

.article-sidebar-link {
    color: var(--gold);

    font-size: 13px;

    font-weight: 700;
}

.article-sidebar-link:hover {
    text-decoration: underline;
}


/* =========================================
   CTA BUTTONS
   ========================================= */

.article-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    border: 1px solid
        rgba(255,210,28,.4);

    border-radius: 8px;

    color: var(--gold);

    font-weight: 700;

    font-size: 14px;
}

.btn-outline:hover {
    background:
        rgba(255,210,28,.08);
}


/* =========================================
   404 ARTICLE
   ========================================= */

.article-not-found {
    max-width: 650px;

    margin: 50px auto;

    padding: 55px 25px;

    text-align: center;

    background:
        rgba(255,255,255,.02);

    border: 1px solid var(--border);

    border-radius: 15px;
}

.article-not-found-icon {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 42px;

    font-weight: 900;
}

.article-not-found h1 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 28px;
}

.article-not-found p {
    margin-bottom: 25px;

    color: var(--muted);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 850px) {

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .article-page {
        padding-top: 25px;
    }

    .article-content {
        padding: 20px;

        font-size: 15px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 30px;
    }

}
/* =========================================================
   RTPKING700
   HEADER + MOBILE MENU
   ========================================================= */


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;

    z-index: 10000;

    width: 100%;

    background: #030b13;

    border-bottom: 1px solid var(--border);
}


.header-inner {
    position: relative;

    min-height: 80px;

    display: flex;

    align-items: center;

    gap: 20px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand-logo {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    text-decoration: none;
}


.brand-logo .logo {
    width: 190px;

    height: 65px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   SEARCH
   ========================================================= */

.search-box {
    flex: 1;

    max-width: 360px;

    height: 42px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #061522;

    border: 1px solid var(--border);

    border-radius: 9px;
}


.search-box input {
    flex: 1;

    min-width: 0;

    height: 100%;

    padding: 0 13px;

    background: transparent;

    border: 0;

    outline: 0;

    color: #fff;

    font-size: 14px;
}


.search-box input::placeholder {
    color: #7890a0;
}


.search-box button {
    width: 45px;

    height: 100%;

    flex-shrink: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 16px;
}


.search-box button:hover {
    color: var(--gold);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {
    margin-left: auto;
}


.nav-menu {
    display: flex;

    align-items: center;

    gap: 4px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.nav-menu li {
    margin: 0;

    padding: 0;
}


.nav-menu a {
    display: block;

    padding: 10px 11px;

    color: #c9d4dc;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    border-radius: 7px;

    transition:
        color .2s ease,
        background .2s ease;
}


.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);

    background:
        rgba(255, 210, 28, .07);
}


/* =========================================================
   HEADER ACTION
   ========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.header-icon {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    text-decoration: none;

    border: 1px solid var(--border);

    border-radius: 8px;

    font-size: 17px;

    transition:
        color .2s ease,
        border-color .2s ease;
}


.header-icon:hover {
    color: var(--gold);

    border-color:
        rgba(255, 210, 28, .45);
}


.header-login {
    white-space: nowrap;
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;

    position: relative;

    z-index: 10003;

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    padding: 0;

    align-items: center;
    justify-content: center;

    background: #061522;

    border: 1px solid var(--border);

    border-radius: 9px;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;

    touch-action: manipulation;
}


.mobile-menu-btn:hover {
    border-color:
        rgba(255, 210, 28, .5);
}


.hamburger-icon {
    width: 21px;

    height: 18px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.hamburger-icon span {
    width: 100%;

    height: 2px;

    display: block;

    background: #fff;

    border-radius: 2px;

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* =========================================================
   HAMBURGER → X
   ========================================================= */

.mobile-menu-btn.menu-open
.hamburger-icon span:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}


.mobile-menu-btn.menu-open
.hamburger-icon span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-btn.menu-open
.hamburger-icon span:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE ONLY LINKS
   ========================================================= */

.mobile-only-link {
    display: none;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mobile-menu-overlay {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 9997;

    background:
        rgba(0, 0, 0, .65);
}


.mobile-menu-overlay.mobile-open {
    display: block;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {


    /* HEADER */

    .header-inner {
        min-height: 70px;

        gap: 10px;
    }


    /* LOGO */

    .brand-logo {
        flex: 1;

        min-width: 0;
    }


    .brand-logo .logo {
        width: 155px;

        height: 55px;
    }


    /* SEARCH */

    .search-box {
        display: none;
    }


    /* HEADER ACTION */

    .header-actions {
        gap: 7px;
    }


    .header-icon {
        width: 40px;

        height: 40px;
    }


    .header-login {
        display: none;
    }


    /* HAMBURGER */

    .mobile-menu-btn {
        display: flex !important;
    }


    /* NAVIGATION */

    .main-navigation {
        display: block;

        position: fixed;

        top: 70px;

        right: -310px;

        width: 290px;

        height:
            calc(100vh - 70px);

        z-index: 9999;

        margin: 0;

        padding: 20px 15px;

        overflow-y: auto;

        background:
            linear-gradient(
                180deg,
                #061522 0%,
                #030b13 100%
            );

        border-left: 1px solid var(--border);

        box-shadow:
            -10px 0 30px
            rgba(0, 0, 0, .35);

        transition:
            right .25s ease;
    }


    /* OPEN */

    .main-navigation.mobile-open {
        right: 0;
    }


    /* MENU */

    .nav-menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        width: 100%;
    }


    .nav-menu li {
        width: 100%;
    }


    .nav-menu a {
        width: 100%;

        padding: 14px 15px;

        font-size: 14px;

        border-radius: 8px;
    }


    .mobile-only-link {
        display: block;
    }


    /* BODY */

    body.mobile-menu-active {
        overflow: hidden;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {


    .header-inner {
        gap: 7px;
    }


    .brand-logo .logo {
        width: 135px;

        height: 50px;
    }


    .header-icon {
        width: 38px;

        height: 38px;

        font-size: 16px;
    }


    .mobile-menu-btn {
        width: 40px;

        height: 40px;
    }


    .main-navigation {
        top: 70px;

        width: 280px;

        right: -300px;

        height:
            calc(100vh - 70px);
    }

}
/* ==========================================
   BANNER RTPKING700
   ========================================== */

.hero-banner {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        url('/assets/images/banner.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* OVERLAY */

.hero-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.94) 0%,
            rgba(2, 6, 23, 0.82) 35%,
            rgba(2, 6, 23, 0.48) 65%,
            rgba(2, 6, 23, 0.20) 100%
        );

    z-index: 1;
}


/* CONTENT */

.hero-banner .container {
    position: relative;

    z-index: 2;

    width: min(
        1200px,
        calc(100% - 32px)
    );

    margin: auto;
}


.hero-content {
    max-width: 680px;

    padding: 90px 0;
}


/* LABEL */

.hero-label {
    display: inline-block;

    margin-bottom: 24px;

    padding: 10px 18px;

    border: 1px solid #d4af37;

    border-radius: 30px;

    background:
        rgba(5, 15, 35, 0.75);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 0 20px
        rgba(212, 175, 55, 0.20);
}


/* TITLE */

.hero-banner h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            38px,
            6vw,
            68px
        );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}


.hero-banner h1 span {
    display: block;

    color: #ffd21f;

    text-shadow:
        0 0 25px
        rgba(255, 210, 31, 0.35);
}


/* DESCRIPTION */

.hero-description {
    max-width: 620px;

    margin:
        25px 0 35px;

    color: #e5e7eb;

    font-size: 18px;

    line-height: 1.8;
}


/* BUTTON */

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.hero-banner .btn-gold {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ffe45c,
            #f4c400
        );

    color: #111827;

    text-decoration: none;

    font-weight: 800;

    box-shadow:
        0 8px 25px
        rgba(244, 196, 0, 0.25);

    transition: .25s;
}


.hero-banner .btn-gold:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 35px
        rgba(244, 196, 0, 0.40);
}


.hero-banner .btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border:
        1px solid #d4af37;

    border-radius: 10px;

    background:
        rgba(0, 0, 0, 0.20);

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .25s;
}


.hero-banner .btn-outline:hover {
    background:
        rgba(212, 175, 55, 0.15);

    color: #ffd21f;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

    .hero-banner {
        min-height: 590px;

        background-position:
            65% center;
    }


    .hero-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 6, 23, 0.94),
                rgba(2, 6, 23, 0.70)
            );
    }


    .hero-content {
        padding:
            70px 0;
    }


    .hero-banner h1 {
        font-size: 40px;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-banner .btn-gold,
    .hero-banner .btn-outline {
        width: 100%;
    }

}