/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   COLOR VARIABLES
========================= */
:root {
    --purple: #a855f7;
    --pink: #ec4899;
    --cyan: #22d3ee;
    --dark: #020617;
    --card-dark: #0b0f1a;
}

/* =========================
   HEADER (GLASS)
========================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 20px auto;
    padding: 18px 40px;
    max-width: 95%;

    background: linear-gradient(
        135deg,
        rgba(20,10,40,0.85),
        rgba(10,5,25,0.9),
        rgba(2,6,23,0.95)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 22px;
    border: 1px solid rgba(168,85,247,0.25);

    box-shadow:
        0 0 35px rgba(168,85,247,0.45),
        inset 0 0 20px rgba(0,0,0,0.6);

    position: sticky;
    top: 12px;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--purple);
    padding: 8px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav a:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    box-shadow:
        0 0 18px rgba(236,72,153,0.9),
        0 0 35px rgba(168,85,247,0.8);
    transform: translateY(-2px);
}

/* =========================
   PRODUCT CONTAINER — FINAL FIX
========================= */
.delta-product {
    display: grid;
    grid-template-columns: minmax(0, 520px) 1fr;
    gap: 30px;

    padding: 40px;
    max-width: 1200px;
    margin: 40px auto;

    background: radial-gradient(circle at top, var(--card-dark), #000);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(168,85,247,0.3);

    align-items: start; /* 🔥 KEY */
}


/* =========================
   IMAGE CARD (FINAL FIX)
========================= */
.delta-image-card {
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 0 40px rgba(168,85,247,0.5);
}

.delta-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}


/* =========================
   INFO CARD
========================= */
.delta-info-card {
    flex: 1;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 16px;
    padding: 25px;
}

/* TITLE */
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.title-row h1 {
    font-size: 26px;
}

.badge {
    background: linear-gradient(90deg, var(--pink), var(--purple));
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* PRICE */
.price {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--cyan);
}

/* =========================
   DURATION SELECTOR
========================= */
.duration-selector {
    display: flex;
    gap: 14px;
    margin: 14px 0 20px;
}

.duration-btn {
    padding: 10px 22px;
    border-radius: 14px;
    border: 1px solid rgba(168,85,247,0.4);
    background: transparent;
    color: #c084fc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.duration-btn.active {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    color: #fff;
    box-shadow:
        0 0 18px rgba(168,85,247,0.7),
        0 0 35px rgba(236,72,153,0.4);
}

.duration-btn:hover {
    transform: translateY(-2px);
}

/* STOCK */
.stock {
    margin-bottom: 15px;
}

.stock-bar {
    height: 6px;
    width: 70%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 10px;
    margin-bottom: 6px;
}

/* FEATURES */
.features span {
    display: inline-block;
    background: #020617;
    padding: 6px 10px;
    border-radius: 20px;
    margin: 6px 6px 6px 0;
    font-size: 13px;
}

/* =========================
   ACTION BUTTONS
========================= */
.actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-action {
    min-width: 200px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
}

/* PRIMARY */
.btn-nebula {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    color: #fff;
    box-shadow: 0 0 25px rgba(236,72,153,0.7);
}

.btn-nebula:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 35px rgba(236,72,153,0.9),
        0 0 55px rgba(168,85,247,0.6);
}

/* SECONDARY */
.btn-view-more {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    box-shadow:
        0 0 10px rgba(34,211,238,0.5),
        inset 0 0 10px rgba(34,211,238,0.15);
}

.btn-view-more:hover {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    color: #020617;
}

/* REMOVE UNDERLINES */
.actions a {
    text-decoration: none !important;
}

/* WARNING */
.warning {
    margin-top: 15px;
    font-size: 13px;
    color: #facc15;
}

/* =========================
   DESCRIPTION BOX
========================= */
.product-desc-section {
    max-width: 1200px;
    margin: 40px auto 70px;
    padding: 0 20px;
}

.product-desc-box {
    border-radius: 20px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(20,10,40,0.65),
        rgba(5,5,15,0.85)
    );

    backdrop-filter: blur(18px);
    border: 1px solid rgba(168,85,247,0.25);

    box-shadow:
        0 0 30px rgba(168,85,247,0.35),
        inset 0 0 25px rgba(255,255,255,0.03);
}

.desc-toggle {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.desc-title {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arrow {
    color: #c084fc;
    transition: transform 0.3s ease;
}

.desc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.product-desc-box.open .desc-content {
    max-height: 600px;
}

.product-desc-box.open .arrow {
    transform: rotate(180deg);
}

.desc-content ul {
    padding: 20px 26px 26px;
    list-style: none;
}

.desc-content li {
    margin-bottom: 14px;
    font-size: 14.8px;
    line-height: 1.65;
    color: #e5e7eb;
}

.desc-content li strong {
    color: #fff;
    font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    background: linear-gradient(90deg, #070120, var(--dark));
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .delta-product {
        flex-direction: column;
        padding: 25px;
    }

    .delta-image-card {
        max-width: 100%;
    }

    .actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .nav {
        gap: 16px;
    }

    .title-row h1 {
        font-size: 22px;
    }

    .price {
        font-size: 26px;
    }

    .duration-selector {
        flex-direction: column;
    }

    .duration-btn,
    .btn-action {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .delta-product {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}



/* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;          /* 🔥 vertical perfect align */
    gap: 10px;                    /* clean spacing */
    font-weight: 700;
    font-size: 24px;              /* base text size */
}

/* LOGO IMAGE — MATCH TEXT HEIGHT */
.logo-img {
    height: 2em;                /* 🔥 KEY: scales with text */
    width: auto;                  /* keeps ratio */
    display: block;

    /* soft neon glow */
    filter:
        drop-shadow(0 0 6px rgba(236,72,153,0.6))
        drop-shadow(0 0 12px rgba(168,85,247,0.5));
}

/* LOGO TEXT */
.logo span {
    color: #ffffff;          /* ✅ white text */
    font-weight: 700;
    line-height: 1;
}




/* TABLET */
@media (max-width: 768px) {
    .logo {
        font-size: 22px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .logo {
        font-size: 20px;
        gap: 8px;
    }
}



/* =========================
   PRODUCT VARIANT DROPDOWN
========================= */
.service-dropdown {
    position: relative;
    margin: 18px 0 22px;
}

/* MAIN BUTTON */
.service-btn {
    width: 100%;
    padding: 14px 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 15px;
    font-weight: 600;
    color: #ffffff;

    background: linear-gradient(90deg, #a855f7, #ec4899);
    border: none;
    border-radius: 14px;

    cursor: pointer;

    box-shadow:
        0 0 18px rgba(168,85,247,0.7),
        0 0 32px rgba(236,72,153,0.5);

    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.service-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 26px rgba(168,85,247,0.9),
        0 0 50px rgba(236,72,153,0.7);
}

/* DROPDOWN LIST */
.service-list {
    position: absolute;
    top: 115%;
    left: 0;
    width: 100%;

    background: linear-gradient(
        180deg,
        rgba(15,23,42,0.98),
        rgba(2,6,23,1)
    );

    border-radius: 16px;
    border: 1px solid rgba(168,85,247,0.35);

    box-shadow:
        0 0 30px rgba(0,0,0,0.9),
        0 0 50px rgba(168,85,247,0.35);

    display: none;
    overflow: hidden;
    z-index: 50;
}

/* SHOW LIST */
.service-dropdown.open .service-list {
    display: block;
}

/* OPTION ITEM */
.service-item {
    padding: 14px 16px;
    font-size: 14px;
    color: #e5e7eb;

    cursor: pointer;
    transition: all 0.25s ease;

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-item:last-child {
    border-bottom: none;
}

/* HOVER OPTION */
.service-item:hover {
    background: rgba(168,85,247,0.18);
}

/* ACTIVE OPTION */
.service-item.active {
    background: linear-gradient(
        90deg,
        rgba(168,85,247,0.35),
        rgba(236,72,153,0.25)
    );

    box-shadow:
        inset 4px 0 0 #a855f7,
        0 0 20px rgba(168,85,247,0.4);

    color: #ffffff;
}

/* =========================
   PRICE GLOW (MATCH STYLE)
========================= */
.price {
    font-size: 32px;
    font-weight: 700;
    color: #22d3ee;

    text-shadow:
        0 0 10px rgba(34,211,238,0.6),
        0 0 22px rgba(34,211,238,0.4);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 600px) {
    .service-btn {
        font-size: 14px;
        padding: 13px 16px;
    }

    .service-item {
        font-size: 13.5px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background: #000;
    color: #fff;
}

/* HEADER */
.header {
    max-width: 1200px;
    margin: 20px auto;
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#120024,#020617);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(168,85,247,.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
}

.logo img {
    height: 2em;
    filter: drop-shadow(0 0 10px #ec4899);
}

.nav a {
    margin-left: 18px;
    text-decoration: none;
    color: #a855f7;
}

/* PRODUCT LAYOUT */
.product-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 30px;
    background: radial-gradient(circle at top,#0b0f1a,#000);
    border-radius: 22px;
    box-shadow: 0 0 40px rgba(168,85,247,.3);
}

.product-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 35px rgba(168,85,247,.5);
}

.product-info {
    background: linear-gradient(180deg,#0f172a,#020617);
    padding: 26px;
    border-radius: 18px;
}

/* TITLE */
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: linear-gradient(90deg,#ec4899,#a855f7);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* PRICE */
.price {
    font-size: 30px;
    margin: 14px 0;
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34,211,238,.6);
}

/* DROPDOWN */
.service-dropdown {
    position: relative;
    margin: 18px 0;
}

.service-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg,#a855f7,#ec4899);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(168,85,247,.7);
}

.service-list {
    display: none;
    position: absolute;
    width: 100%;
    top: 115%;
    background: #020617;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(168,85,247,.3);
}

.service-dropdown.open .service-list {
    display: block;
}

.service-item {
    padding: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.service-item:hover,
.service-item.active {
    background: rgba(168,85,247,.25);
}

/* STOCK */
.stock-bar {
    height: 6px;
    width: 70%;
    background: linear-gradient(90deg,#22c55e,#16a34a);
    border-radius: 10px;
    margin: 14px 0 6px;
}

/* FEATURES */
.features span {
    display: inline-block;
    margin: 6px 8px 6px 0;
    padding: 6px 10px;
    background: #020617;
    border-radius: 16px;
    font-size: 13px;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.btn {
    height: 46px;
    padding: 0 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: linear-gradient(90deg,#a855f7,#ec4899);
    color: #fff;
    box-shadow: 0 0 25px rgba(236,72,153,.7);
}

.secondary {
    border: 1px solid #22d3ee;
    color: #22d3ee;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-wrapper {
        grid-template-columns: 1fr;
    }
    .actions {
        flex-direction: column;
    }
}

.insta-btn {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
    box-shadow: 0 0 20px rgba(221,42,123,.7);
}


/* =========================
   SERVICE BUTTON ROW
========================= */
.service-btn-row {
    display: flex;
    gap: 14px;
    width: 100%;
}

/* Make both buttons equal */
.service-btn,
.insta-video-btn {
    flex: 1;
}

/* =========================
   ALL STEAM GAME BUTTON
========================= */
.service-btn {
    height: 50px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 600;
    color: #ffffff;

    background: linear-gradient(90deg, #a855f7, #ec4899);
    border: none;
    border-radius: 16px;

    cursor: pointer;

    box-shadow:
        0 0 18px rgba(168,85,247,0.7),
        0 0 32px rgba(236,72,153,0.5);

    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 26px rgba(168,85,247,0.9),
        0 0 50px rgba(236,72,153,0.7);
}

/* =========================
   INSTAGRAM VIDEO BUTTON
   (More Product Style)
========================= */
.insta-video-btn {
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;

    color: #22d3ee;
    background: transparent;

    border-radius: 16px;
    border: 1.5px solid #22d3ee;

    cursor: pointer;
    text-decoration: none;

    box-shadow:
        0 0 12px rgba(34,211,238,0.6),
        inset 0 0 10px rgba(34,211,238,0.2);

    transition: all 0.3s ease;
}

.insta-video-btn:hover {
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    color: #020617;

    box-shadow:
        0 0 22px rgba(34,211,238,0.9),
        0 0 45px rgba(168,85,247,0.7);

    transform: translateY(-2px);
}

/* =========================
   MOBILE (PHONES)
========================= */
@media (max-width: 600px) {

    .service-btn-row {
        flex-direction: column;
        gap: 12px;
    }

    .service-btn,
    .insta-video-btn {
        width: 100%;
        height: 52px;
        font-size: 15px;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {

    .service-btn-row {
        gap: 12px;
    }

    .service-btn,
    .insta-video-btn {
        height: 48px;
        font-size: 15.5px;
    }
}

/* =========================
   LARGE SCREENS / 4K
========================= */
@media (min-width: 1400px) {

    .service-btn,
    .insta-video-btn {
        height: 54px;
        font-size: 17px;
    }
}
