/* ===========================
   GLOBAL RESET & BASE
=========================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
    color: #f9fafb;
    background: #000;
}

.tc-bg {
    background: radial-gradient(circle at top, #020617 0%, #020617 45%, #000 100%);
    min-height: 100vh;
}

/* ===========================
   HEADER
=========================== */
.tc-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(3, 7, 18, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(12px);
}

.tc-header-inner {
    max-width: 1180px;
    margin: auto;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.tc-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===========================
   LOGO FRAME (HYBRID BRAND)
=========================== */
.dd-logo-frame {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    /* gold → logo purple gradient with a slight teal glow */
    background: linear-gradient(135deg, #facc15, #a855f7);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.7);
}

/* Real logo inside the gradient frame */
.dd-logo-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 999px;
    background: #ffffff;
}

/* ===========================
   BRAND TEXT
=========================== */
.tc-brand-text h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #facc15; /* gold */
}

.tc-brand-text p {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
}

/* ===========================
   NAVIGATION
=========================== */
.tc-nav {
    display: flex;
    gap: 14px;
    font-size: 14px;
}

.tc-nav a {
    text-decoration: none;
    color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: 0.15s ease;
}

.tc-nav a:hover {
    border-color: rgba(250, 204, 21, 0.8); /* gold border */
    background: rgba(15, 23, 42, 0.9);
}

/* ===========================
   HERO / COMING SOON
=========================== */
.coming-soon {
    max-width: 900px;
    margin: 80px auto 60px;
    text-align: center;
    padding: 0 16px;
}

.coming-soon h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #d1d5db;
}

.cs-sub {
    margin-top: 10px;
    margin-bottom: 26px;
    color: #aeb4c2;
}

/* Placeholder hero block */
.cs-placeholder-box {
    margin: 40px auto 0;
    width: 320px;
    height: 200px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.6); /* purple accent */
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.75);
}

/* ===========================
   BUTTONS
=========================== */
.tc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.16s ease;
}

.tc-btn-gold {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
    font-weight: 600;
}

.tc-btn-gold:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.tc-btn-outline {
    border-color: rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    background: transparent;
}

.tc-btn-outline:hover {
    border-color: #a855f7;              /* purple border */
    background: rgba(15, 23, 42, 0.95);
}

/* ===========================
   SHOP PLACEHOLDERS
=========================== */
.shop-header {
    max-width: 1180px;
    margin: 40px auto 16px;
    text-align: center;
}

.shop-header h1 {
    color: #facc15;
    font-size: 32px;
    margin-bottom: 6px;
}

.shop-header p {
    color: #9ca3af;
}

.shop-grid {
    max-width: 1180px;
    margin: 20px auto 60px;
    padding: 0 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-placeholder {
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(168, 85, 247, 0.55); /* purple border */
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.65);
}

.placeholder-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px dashed rgba(148, 163, 184, 0.5);
    margin-bottom: 12px;
}

.product-placeholder h3 {
    margin: 0;
    color: #e5e7eb;
    font-size: 16px;
}

.product-placeholder p {
    margin: 4px 0;
    color: #9ca3af;
}

/* ===========================
   CONTACT STYLING
=========================== */
.contact-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 16px;
}

.contact-wrapper h2 {
    color: #facc15;
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-wrapper p,
.contact-wrapper li {
    color: #d1d5db;
}

.policy-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.6); /* purple edge */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.policy-box h3 {
    color: #facc15;
}

.policy-box li {
    margin-bottom: 6px;
}

/* ===========================
   FOOTER
=========================== */
.tc-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: #020617;
    margin-top: 60px;
}

.tc-footer-inner {
    max-width: 1180px;
    margin: auto;
    padding: 18px;
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.tc-footer-links {
    display: flex;
    gap: 8px;
}

.tc-footer a {
    color: #facc15;
    text-decoration: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 780px) {
    .tc-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .coming-soon h1 {
        font-size: 36px;
    }

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

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

    .coming-soon h1 {
        font-size: 30px;
    }

    .cs-placeholder-box {
        width: 250px;
        height: 140px;
    }
}