/*==================================================
  TopNotch Store - Matte Glass Blue Theme
==================================================*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #101522, #050608 60%, #020308 100%);
    color: #ffffff;
}

/* HEADER */

.tn-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 195, 0.12);
    background: linear-gradient(120deg, rgba(15, 17, 26, 0.95), rgba(8, 11, 18, 0.95));
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.tn-header-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tn-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00ffc3, #00aaff, #00ffc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tn-subtitle {
    margin: 4px 0 0 0;
    opacity: 0.8;
    font-size: 13px;
}

/* NAV */

.tn-nav a {
    color: #e3f8ff;
    text-decoration: none;
    margin-left: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: 0.18s;
}

.tn-nav a:hover {
    border-color: rgba(0, 255, 195, 0.6);
}

/* LAYOUT */

.tn-main {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

/* HERO */

.tn-hero {
    margin-top: 40px;
    margin-bottom: 40px;
}

.tn-hero-content {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(10, 16, 32, 0.96));
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid rgba(0, 255, 195, 0.26);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
}

.tn-hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-top: 0;
}

.tn-hero-content p {
    margin-top: 8px;
    max-width: 600px;
    opacity: 0.88;
}

.tn-hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* BUTTONS */

.tn-btn-primary,
.tn-btn-ghost {
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 195, 0.45);
    padding: 9px 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: 0.2s;
}

.tn-btn-primary {
    background: radial-gradient(circle at top left, #00ffc3 0%, #0099ff 55%, #00ffc3 100%);
    color: #020308;
    border-color: transparent;
}

.tn-btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.tn-btn-ghost {
    background: transparent;
    color: #e3f8ff;
}

.tn-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* SECTIONS */

.tn-section {
    margin-top: 30px;
}

.tn-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 18px;
}

/* CARDS GRID */

.tn-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.tn-card {
    background: linear-gradient(135deg, rgba(14, 20, 32, 0.9), rgba(8, 12, 22, 0.9));
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 195, 0.25);
    padding: 18px 16px;
    text-decoration: none;
    color: #f9feff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tn-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 195, 0.7);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.18);
}

.tn-card h3 {
    margin: 4px 0 4px 0;
    font-size: 16px;
}

.tn-card p {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

/* CARD TAG */

.tn-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(0, 255, 195, 0.6);
    background: radial-gradient(circle, rgba(0, 255, 195, 0.18), transparent 70%);
    margin-bottom: 6px;
}

/* PRODUCT CARDS */

.tn-card-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tn-card-product-bottom {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tn-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
}

.tn-price-lg {
    font-size: 20px;
}

.tn-link-text {
    font-size: 12px;
    opacity: 0.8;
}

/* INFO GRID */

.tn-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.tn-info-box {
    background: rgba(8, 11, 20, 0.9);
    border-radius: 14px;
    padding: 14px 14px;
    border: 1px solid rgba(0, 255, 195, 0.22);
    font-size: 13px;
}

/* FILTER BAR */

.tn-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tn-chip,
.tn-chip-link {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(0, 255, 195, 0.4);
}

.tn-chip-link {
    color: #c9fdfb;
    text-decoration: none;
    background: rgba(5, 12, 18, 0.9);
}

.tn-chip-link:hover {
    background: radial-gradient(circle, rgba(0, 255, 195, 0.2), transparent 70%);
}

/* PRODUCT PAGE */

.tn-product-layout {
    display: flex;
    flex-direction: column;
}

.tn-product-main {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(7, 10, 20, 0.94));
    border-radius: 20px;
    padding: 26px 20px;
    border: 1px solid rgba(0, 255, 195, 0.26);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
    max-width: 750px;
}

.tn-product-main h2 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 8px;
    margin-bottom: 6px;
}

.tn-product-desc {
    font-size: 14px;
    opacity: 0.92;
}

.tn-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.tn-label {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.16em;
}

.tn-label-sub {
    font-size: 12px;
    opacity: 0.85;
    max-width: 260px;
}

.tn-product-actions {
    margin-top: 20px;
}

/* NOTE */

.tn-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

/* FOOTER */

.tn-footer {
    border-top: 1px solid rgba(0, 255, 195, 0.1);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.75;
    background: rgba(3, 6, 12, 0.95);
}
/* ============================
   SOCIAL BUTTON FIX — TopNotch
   Makes buttons smaller + inline
============================ */

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    display: block;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #00eaff, #0077ff);
    color: #000;
    text-decoration: none;
    transition: 0.2s ease;
}

.social-btn:hover {
    transform: scale(1.04);
    filter: brightness(1.15);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .tn-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tn-nav a {
        margin-left: 0;
        margin-right: 14px;
        margin-top: 6px;
    }

    .tn-hero-content {
        padding: 24px 18px;
    }

    .tn-main {
        width: 94%;
    }
}
