/* =========================================================
   RADHAPRINTINGPRESS
   STYLE SHEET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;
    --black-soft: #101010;
    --dark: #151515;
    --dark-card: #181818;
    --white: #ffffff;
    --muted: #a5a5a5;
    --gold: #f5b942;
    --gold-light: #ffd979;
    --orange: #ff7a18;
    --red: #ff3b30;
    --border: rgba(255, 255, 255, 0.09);
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(245, 185, 66, 0.08),
            transparent 28%
        ),
        var(--black);
    color: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(20px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.brand-text span {
    color: var(--muted);
    font-size: 11px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav > a {
    color: #cfcfcf;
    font-size: 14px;
    transition: 0.25s ease;
}

.main-nav > a:hover {
    color: var(--gold);
}

.header-cart-button {
    border: 1px solid rgba(245, 185, 66, 0.4);
    background: rgba(245, 185, 66, 0.08);
    color: var(--gold-light);
    border-radius: 999px;
    padding: 9px 14px;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: 0.25s ease;
}

.header-cart-button:hover {
    background: rgba(245, 185, 66, 0.16);
    transform: translateY(-2px);
}

#cartCount {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 11px;
    font-weight: 800;
}

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #151515;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 5px;
    background: white;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 680px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px;
}

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-one {
    top: -180px;
    left: -150px;
    background: rgba(255, 122, 24, 0.12);
}

.hero-glow-two {
    right: -180px;
    bottom: -220px;
    background: rgba(245, 185, 66, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    text-align: center;
}

.hero-badge,
.section-label,
.small-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(245, 185, 66, 0.25);
    background: rgba(245, 185, 66, 0.07);
    border-radius: 999px;
    padding: 8px 15px;
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 900px;
    margin: auto;

    font-size: clamp(48px, 8vw, 88px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            var(--gold),
            #ff7a18
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content > p {
    max-width: 650px;
    margin: 30px auto 0;

    color: #a8a8a8;
    font-size: 17px;
}

.hero-buttons {
    margin-top: 34px;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    min-height: 48px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.primary-button {
    color: #111;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
}

.secondary-button {
    border: 1px solid var(--border);
    background: #161616;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}

.hero-info {
    margin: 65px auto 0;

    width: min(650px, 100%);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-info div {
    padding: 18px 10px;
}

.hero-info div + div {
    border-left: 1px solid var(--border);
}

.hero-info strong {
    display: block;
    color: var(--gold);
    font-size: 19px;
}

.hero-info span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.products-section,
.about-section,
.contact-section {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

.products-section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin-top: 9px;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--gold);
}

.section-heading p {
    margin-top: 12px;
    color: var(--muted);
}


/* =========================================================
   PRODUCT TOOLS
   ========================================================= */

.product-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.search-box {
    flex: 1;
    max-width: 390px;
}

.search-box input {
    width: 100%;
    height: 47px;

    border: 1px solid var(--border);
    border-radius: 13px;

    outline: none;

    background: #131313;
    color: white;

    padding: 0 16px;

    transition: 0.25s ease;
}

.search-box input:focus {
    border-color: rgba(245, 185, 66, 0.6);
    box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.06);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.filter-button {
    border: 1px solid var(--border);
    background: #131313;
    color: #aaa;

    padding: 9px 13px;
    border-radius: 999px;

    font-size: 12px;

    transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 185, 66, 0.28);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(245,185,66,0.16),
            transparent 45%
        ),
        #111;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 13px;
    left: 13px;

    padding: 6px 10px;
    border-radius: 999px;

    background: rgba(8,8,8,0.75);
    border: 1px solid rgba(255,255,255,0.12);

    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-content {
    padding: 22px;
}

.product-code {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-content h3 {
    margin-top: 8px;
    font-size: 19px;
}

.product-content p {
    min-height: 49px;
    margin-top: 8px;

    color: #969696;
    font-size: 13px;
}

.product-price {
    margin-top: 15px;

    color: white;
    font-size: 21px;
    font-weight: 800;
}

.product-price small {
    color: #777;
    font-size: 11px;
    font-weight: 500;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.product-action {
    min-height: 43px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 750;
    transition: 0.2s ease;
}

.add-cart {
    border: 1px solid var(--border);
    background: #121212;
    color: white;
}

.buy-now {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #111;
}

.product-action:hover {
    transform: translateY(-2px);
}

.no-products {
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
}

.about-content h2 {
    margin-top: 12px;
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-content p {
    max-width: 720px;
    margin-top: 18px;
    color: #999;
    font-size: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.about-points div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #111;
}

.about-points strong {
    display: block;
    color: var(--gold);
    font-size: 11px;
}

.about-points span {
    display: block;
    margin-top: 8px;
    color: white;
    font-size: 13px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-card {
    min-height: 150px;
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: #111;
}

.contact-label {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-card a {
    display: block;
    margin-top: 15px;
    font-size: 19px;
    font-weight: 700;
}

.contact-card p {
    margin-top: 15px;
    color: #999;
    font-size: 13px;
}


/* =========================================================
   CART
   ========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;

    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(7px);

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;

    width: min(470px, 100%);
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #101010;
    border-left: 1px solid var(--border);

    transform: translateX(100%);
    transition: 0.3s ease;
}

.cart-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    margin-top: 3px;
}

.close-button,
.modal-close {
    width: 38px;
    height: 38px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: #181818;
    color: white;

    font-size: 24px;
    line-height: 1;

    transition: 0.2s ease;
}

.close-button:hover,
.modal-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

.cart-item {
    padding: 17px 0;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;

    border-bottom: 1px solid var(--border);
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
}

.cart-item-code {
    margin-top: 3px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
}

.cart-item-price {
    margin-top: 4px;
    color: #777;
    font-size: 11px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-controls button {
    width: 29px;
    height: 29px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #191919;
    color: white;
}

.cart-item-controls span {
    min-width: 48px;
    text-align: center;
    font-size: 12px;
}

.cart-item-total {
    color: var(--gold-light);
    font-weight: 800;
}

.cart-remove {
    justify-self: start;

    border: 0;
    background: transparent;
    color: #777;

    font-size: 11px;
}

.cart-remove:hover {
    color: var(--red);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cart-total-row span {
    color: #888;
}

.cart-total-row strong {
    color: var(--gold);
    font-size: 22px;
}

.checkout-button {
    width: 100%;
    min-height: 49px;

    border: 0;
    border-radius: 12px;

    background: var(--gold);
    color: #111;

    font-weight: 800;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.empty-cart {
    padding: 70px 20px;
    text-align: center;
}

.empty-cart-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(245,185,66,0.08);
    color: var(--gold);

    font-size: 28px;
}

.empty-cart h3 {
    font-size: 18px;
}

.empty-cart p {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}


/* =========================================================
   MODALS
   ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 4000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;

    width: min(600px, 100%);
    max-height: 90vh;
    overflow-y: auto;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #191919,
            #0f0f0f
        );

    box-shadow: var(--shadow);

    transform: translateY(15px) scale(0.98);
    transition: 0.25s ease;
}

.modal.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.modal-heading {
    padding-right: 45px;
    margin-bottom: 25px;
}

.modal-heading h2 {
    margin-top: 5px;
    font-size: 28px;
}

.modal-heading p {
    margin-top: 7px;
    color: #888;
    font-size: 13px;
}

.selected-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-bottom: 20px;
}

.selected-product > div {
    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: #111;
}

.selected-product span {
    display: block;
    color: #777;
    font-size: 10px;
    text-transform: uppercase;
}

.selected-product strong {
    display: block;
    margin-top: 4px;
    color: var(--gold-light);
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #ddd;
    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 11px;

    outline: none;

    background: #101010;
    color: white;

    padding: 12px 13px;

    transition: 0.2s ease;
}

.form-group input {
    height: 46px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(245,185,66,0.65);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 10px;
}

.amount-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;

    margin: 20px 0;
}

.amount-summary div {
    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: #111;
}

.amount-summary span {
    display: block;
    color: #777;
    font-size: 10px;
}

.amount-summary strong {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-size: 15px;
}

.submit-order-button {
    width: 100%;
    min-height: 49px;

    border: 0;
    border-radius: 12px;

    background: var(--gold);
    color: #111;

    font-weight: 800;

    transition: 0.2s ease;
}

.submit-order-button:hover {
    transform: translateY(-2px);
}

.submit-order-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.small-modal {
    max-width: 440px;
}

.payment-amount {
    margin: 20px 0;
    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    text-align: center;
}

.payment-amount span {
    display: block;
    color: #777;
    font-size: 12px;
}

.payment-amount strong {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 30px;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;

    z-index: 6000;

    transform: translate(-50%, 20px);

    padding: 12px 18px;

    border: 1px solid rgba(245,185,66,0.3);
    border-radius: 12px;

    background: #171717;
    color: white;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);

    font-size: 12px;

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: min(1180px, calc(100% - 32px));

    margin: 30px auto 0;
    padding: 35px 0;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--border);

    color: #777;
    font-size: 11px;
}

.site-footer strong {
    color: white;
}

.site-footer p {
    margin-top: 3px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .search-box {
        max-width: none;
    }

}


@media (max-width: 700px) {

    .header-inner {
        min-height: 68px;
    }

    .brand-text span {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;

        padding: 14px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;

        border: 1px solid var(--border);
        border-radius: 17px;

        background: rgba(15,15,15,0.97);
        backdrop-filter: blur(20px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);

        transition: 0.2s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a {
        padding: 12px;
        border-radius: 10px;
    }

    .main-nav > a:hover {
        background: #191919;
    }

    .header-cart-button {
        justify-content: center;
        margin-top: 5px;
    }

    .hero {
        min-height: 620px;
        padding-top: 80px;
    }

    .hero h1 {
        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-info strong {
        font-size: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


@media (max-width: 500px) {

    .header-inner,
    .products-section,
    .about-section,
    .contact-section,
    .site-footer {
        width: min(100% - 22px, 1180px);
    }

    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .hero-info div + div {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .section-heading h2 {
        font-size: 37px;
    }

    .filter-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .filter-button {
        flex-shrink: 0;
    }

    .selected-product {
        grid-template-columns: 1fr;
    }

    .amount-summary {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }

    .modal-box {
        padding: 22px;
        border-radius: 19px;
    }

}
