/* ================================== */
/* COLLECTION GRID RESPONSIVE */
/* ================================== */

.collection-section {
    width: 100%;
    padding: 40px 20px 10px;
    box-sizing: border-box;
}

/* BASE (mobile) */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1600px;
    margin: 60px auto 0 auto;
    box-sizing: border-box;
    align-items: start;
}

@media (min-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* COLLECTION CARD */
.collection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 30px 15px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.collection-card:hover {
    transform: translateY(-6px);
}

/* LOGO WRAP */
.collection-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
}

/* LOGO */
.collection-logo-wrap img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    background: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.12));
}

/* HOVER EFFECT */
.collection-card:hover .collection-logo-wrap img {
    transform: scale(1.08);
    filter:
        brightness(1.25)
        drop-shadow(0 0 12px rgba(0, 191, 255, 0.18))
        drop-shadow(0 0 24px rgba(0, 191, 255, 0.12));
}

/* ================================== */
/* COLLECTION TITLES (UNIQUE FONTS) */
/* ================================== */

.collection-title {
    margin-top: 22px;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
    line-height: 1.1;
}

/* SINEWAVE */
.collection-card.sinewave .collection-title {
    font-family: 'Audiowide', sans-serif;
    letter-spacing: 2px;
    text-transform: none;
}

/* TRIWAVE */
.collection-card.triwave .collection-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ASYMMETRIK */
.collection-card.asymmetrik .collection-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: skewX(-8deg);
}

/* PULSE */
.collection-card.pulse .collection-title {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* SINEWAVE HOVER */
.collection-card.sinewave:hover .collection-title {
    color: #00e5ff;
    text-shadow:
        0 0 8px rgba(0, 229, 255, 0.5),
        0 0 18px rgba(0, 229, 255, 0.3);
}

/* TRIWAVE HOVER */
.collection-card.triwave:hover .collection-title {
    color: #ffd54f;
    text-shadow:
        0 0 8px rgba(255, 213, 79, 0.5),
        0 0 18px rgba(255, 213, 79, 0.3);
}

/* ASYMMETRIK HOVER */
.collection-card.asymmetrik:hover .collection-title {
    color: #ff4dff;
    text-shadow:
        0 0 8px rgba(255, 77, 255, 0.5),
        0 0 18px rgba(255, 77, 255, 0.3);
}

/* PULSE HOVER */
.collection-card.pulse:hover .collection-title {
    color: #ff4d4d;
    animation: pulseGlow 1.2s ease-in-out infinite;
    text-shadow:
        0 0 8px rgba(255, 77, 77, 0.5),
        0 0 18px rgba(255, 77, 77, 0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow:
            0 0 6px rgba(255, 77, 77, 0.3),
            0 0 12px rgba(255, 77, 77, 0.15);
    }
    50% {
        text-shadow:
            0 0 12px rgba(255, 77, 77, 0.65),
            0 0 22px rgba(255, 77, 77, 0.35);
    }
}

/* REMOVE BACKGROUND LOGO ON STORE PAGE */
.store-page .page-bg-logo {
    display: none;
}

/* ================================== */
/* COLLECTION PAGE HERO */
/* ================================== */

.collection-page .page-content {
    max-width: 1500px;
}

.collection-hero {
    text-align: center;
    padding: 40px 20px 20px;
    margin-bottom: 70px;
}

.collection-hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

/* COLLECTION HERO LOGO */
.collection-hero-logo img {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* COLLECTION HERO LOGO HOVER */
.collection-hero-logo:hover img {
    transform: scale(1.08);
}

/* REMOVE COLLECTION HERO LINES */
.collection-accent-line {
    display: none;
}

.collection-hero-title {
    margin: 0 0 24px;
    color: #ffffff;
    line-height: 1.05;
    text-align: center;
}

.collection-hero-description {
    max-width: 920px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: #d8d8d8;
    text-align: center;
}

/* ================================== */
/* SINEWAVE THEME */
/* ================================== */

.collection-page.theme-sinewave .collection-hero-logo img {
    filter:
        drop-shadow(0 0 16px rgba(0, 229, 255, 0.22))
        drop-shadow(0 0 34px rgba(0, 229, 255, 0.10));
}

.collection-page.theme-sinewave .collection-hero-logo:hover img {
    filter:
        brightness(1.25)
        drop-shadow(0 0 18px rgba(0, 229, 255, 0.35))
        drop-shadow(0 0 36px rgba(0, 229, 255, 0.18));
}

.collection-page.theme-sinewave .collection-hero-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #00e5ff;
    text-shadow:
        0 0 6px rgba(0, 229, 255, 0.9),
        0 0 12px rgba(0, 229, 255, 0.7),
        0 0 22px rgba(0, 229, 255, 0.5),
        0 0 40px rgba(0, 229, 255, 0.25);
}

.collection-page.theme-sinewave .collection-hero-description {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.4px;
    color: #d9fbff;
    max-width: 860px;
}

/* ================================== */
/* TRIWAVE THEME */
/* ================================== */

.collection-page.theme-triwave .collection-hero-logo img {
    filter:
        drop-shadow(0 0 16px rgba(255, 213, 79, 0.22))
        drop-shadow(0 0 34px rgba(255, 213, 79, 0.10));
}

.collection-page.theme-triwave .collection-hero-logo:hover img {
    filter:
        brightness(1.25)
        drop-shadow(0 0 18px rgba(255, 213, 79, 0.35))
        drop-shadow(0 0 36px rgba(255, 213, 79, 0.18));
}

.collection-page.theme-triwave .collection-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffd54f;
    text-shadow:
        0 0 6px rgba(255, 213, 79, 0.9),
        0 0 12px rgba(255, 213, 79, 0.7),
        0 0 22px rgba(255, 213, 79, 0.5),
        0 0 40px rgba(255, 213, 79, 0.25);
}

.collection-page.theme-triwave .collection-hero-description {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff4cc;
}

/* ================================== */
/* ASYMMETRIK THEME */
/* ================================== */

.collection-page.theme-asymmetrik .collection-hero-logo img {
    filter:
        drop-shadow(0 0 16px rgba(255, 77, 255, 0.22))
        drop-shadow(0 0 34px rgba(255, 77, 255, 0.10));
}

.collection-page.theme-asymmetrik .collection-hero-logo:hover img {
    filter:
        brightness(1.25)
        drop-shadow(0 0 18px rgba(255, 77, 255, 0.35))
        drop-shadow(0 0 36px rgba(255, 77, 255, 0.18));
}

.collection-page.theme-asymmetrik .collection-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: skewX(-8deg);
    color: #ff4dff;
    text-shadow:
        0 0 6px rgba(255, 77, 255, 0.9),
        0 0 12px rgba(255, 77, 255, 0.7),
        0 0 22px rgba(255, 77, 255, 0.5),
        0 0 40px rgba(255, 77, 255, 0.25);
}

.collection-page.theme-asymmetrik .collection-hero-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: #ffe2ff;
}

/* ================================== */
/* PULSE THEME */
/* ================================== */

.collection-page.theme-pulse .collection-hero-logo img {
    filter:
        drop-shadow(0 0 16px rgba(255, 77, 77, 0.22))
        drop-shadow(0 0 34px rgba(255, 77, 77, 0.10));
}

.collection-page.theme-pulse .collection-hero-logo:hover img {
    filter:
        brightness(1.25)
        drop-shadow(0 0 18px rgba(255, 77, 77, 0.35))
        drop-shadow(0 0 36px rgba(255, 77, 77, 0.18));
}

.collection-page.theme-pulse .collection-hero-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff4d4d;
    text-shadow:
        0 0 6px rgba(255, 77, 77, 0.9),
        0 0 12px rgba(255, 77, 77, 0.7),
        0 0 22px rgba(255, 77, 77, 0.5),
        0 0 40px rgba(255, 77, 77, 0.25);
}

.collection-page.theme-pulse .collection-hero-description {
    font-family: 'Oxanium', sans-serif;
    font-size: 20px;
    color: #ffe0e0;
}

/* STORE HERO SPACING FIX */
.store-page {
    padding-top: 20px !important;
}

/* LET THE STORE PAGE BREATHE ON LARGE SCREENS */
.store-page .page-content {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ================================== */
/* COLLECTION TAGLINE */
/* ================================== */

.collection-tagline {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 18px;
    letter-spacing: 3px;
    color: #00bfff;
    margin-top: 10px;
    margin-bottom: 10px;
    text-shadow:
        0 0 6px rgba(0, 191, 255, 0.25),
        0 0 12px rgba(0, 191, 255, 0.12);
}

.collection-subtext {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 18px !important;
    color: #cfcfcf;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================================== */
/* STORE PRODUCT GRID */
/* ================================== */

.store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* TABLET */
@media (min-width: 768px) {
    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* DESKTOP */
@media (min-width: 1200px) {
    .store-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.store-card {
    position: relative;
    background-color: #0a0a0a;
    overflow: hidden;
    text-align: center;
    border: none;
    box-shadow: none;
    z-index: 1;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* FULL SPECTRAL BORDER */
.store-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 0;
    background: linear-gradient(
        135deg,
        #ff4d4d 0%,
        #ff9a3c 16%,
        #ffe14d 32%,
        #5cff72 48%,
        #4dffff 64%,
        #4d7dff 80%,
        #b84dff 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.62;
    transition: opacity 0.3s ease, filter 0.3s ease, padding 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

/* CARD HOVER */
.store-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
}

/* RADIATING BORDER EFFECT */
.store-card:hover::before {
    padding: 3px;
    opacity: 0.95;
    animation: spectralPulse 3.2s ease-in-out infinite;
}

/* IMAGE AREA */
.store-image-wrap {
    width: 100%;
    height: clamp(300px, 32vw, 400px);
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.store-image {
    width: 92%;
    height: 92%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transform: translateY(26px);
}

@media (max-width: 768px) {
    .store-image-wrap {
        height: 360px;
    }

    .store-image {
        width: 86%;
        height: 86%;
        transform: translateY(24px);
    }
}

@media (max-width: 480px) {
    .store-image-wrap {
        height: 320px;
    }

    .store-image {
        width: 84%;
        height: 84%;
        transform: translateY(20px);
    }
}
/* INFO AREA */
.store-info {
    position: relative;
    z-index: 2;
    padding: 24px;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.store-category {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-align: center;

    display: flex;
    flex-direction: column; /* 🔥 THIS FIXES STACKING */
    align-items: center;
    justify-content: center;

    min-height: 110px;
    margin: 0 0 20px 0;

    line-height: 1.2;
}

.collection-name {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #fbfeff;
    margin-bottom: 10px;
    font-weight: 500;

    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.42),
        0 0 9px rgba(255, 255, 255, 0.18);

    animation: productTitlePulseSoft 2.6s ease-in-out infinite;
}

.product-type {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffffff;

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.5),
        0 0 11px rgba(255, 255, 255, 0.22);

    animation: productTitlePulseStrong 2.6s ease-in-out infinite;
}

.store-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.store-price {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.store-button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #00bfff;
    color: #00bfff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.store-button:hover {
    background-color: #00bfff;
    color: #000000;
}

/* ================================== */
/* PULSE ANIMATION */
/* ================================== */

@keyframes spectralPulse {
    0% {
        filter: brightness(0.75) blur(0px);
        opacity: 0.65;
    }
    50% {
        filter: brightness(1.6) blur(1.6px);
        opacity: 1;
    }
    100% {
        filter: brightness(0.75) blur(0px);
        opacity: 0.65;
    }
}

/* REMOVE EXTRA SPACE UNDER COLLECTIONS ON STORE PAGE */
.store-page {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
}

.store-page .page-content {
    padding-bottom: 0 !important;
}

.store-page.page-section {
    min-height: auto !important;
    height: auto !important;
    padding: 20px 0 0 !important;
}

/* Creates space under store collection, products, cart and divider line */

.collection-page.page-section {
    padding-bottom: 80px !important;
}

.product-page.page-section {
    padding-bottom: 10px !important;
}

.cart-page.page-section {
    padding-bottom: 40px !important;
}

/* ================================ */
/* STORE MISSION SECTION */
/* ================================ */

.store-mission {
    max-width: 900px;
    margin: 100px auto 60px;
    text-align: center;
    padding: 0 20px;
}

.store-mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(0, 191, 255, 0.25),
        0 0 18px rgba(0, 191, 255, 0.12);
}

.store-mission-text {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #cfcfcf;
    max-width: 900px;
    margin: 0 auto;
}

/* ================================== */
/* PRODUCT DETAIL PAGE */
/* ================================== */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 30px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-main-image {
    background-color: #080808;
    border: 1px solid #1a1a1a;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnails img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    background-color: #080808;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-thumbnails img:hover {
    border-color: #00bfff;
    transform: scale(1.03);
}

.product-detail-info {
    text-align: left;
    max-width: 620px;
}

.product-detail-info h2 {
    margin-bottom: 18px;
}

.product-detail-info .store-price {
    margin-bottom: 28px;
}

.product-description {
    max-width: 520px;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.product-description p {
    font-size: 14px !important;
    line-height: 1.65;
    margin-bottom: 14px;
}

.product-desc-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 26px 0 12px;
    text-transform: uppercase;
}

.product-spec-list {
    list-style: none;
    margin: 14px 0 30px;
    padding-left: 0;
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
}

.product-spec-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.product-spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00cfff;
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
    max-width: 620px;
}

.product-form label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 4px;
}

.product-form select,
.product-form input {
    padding: 14px 16px;
    background-color: #050505;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 15px;
}

.product-form select:focus,
.product-form input:focus {
    outline: none;
    border-color: #00cfff;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.14);
}

.product-form .store-button {
    margin-top: 10px;
    min-height: 54px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ================================== */
/* CART PAGE */
/* ================================== */

.cart-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cart-card {
    padding: 24px;
    text-align: center;
}

.cart-image-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
}

.cart-image {
    display: block;
    width: 100%;
    height: auto;
}

.cart-form-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.cart-qty-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.cart-qty-control {
    display: grid;
    grid-template-columns: 42px 48px 42px;
    height: 46px;
    border: 1px solid #00cfff;
    background: #050505;
}

.cart-qty-button,
.cart-qty-input {
    border: none;
    background: transparent;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.cart-qty-button {
    cursor: pointer;
    transition: 0.2s ease;
}

.cart-qty-button:hover {
    color: #00cfff;
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.8);
}

.cart-qty-input {
    width: 48px;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input:focus {
    outline: none;
}

/* ================================== */
/* CART REMOVE BUTTON */
/* ================================== */

.cart-remove-form {
    margin-top: 10px;
    text-align: center;
}

.cart-remove-button {
    background: none;
    border: none;
    padding: 0;

    color: rgba(255,255,255,0.70);

    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition: color .25s ease,
                text-shadow .25s ease,
                transform .25s ease;
}

.cart-remove-button:hover {
    color: #00cfff;
    text-shadow: 0 0 10px rgba(0,207,255,.8);
    transform: translateY(-1px);
}


/* 2 across on medium screens */
@media (max-width: 1200px) {
    .cart-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 1 across on small screens */
@media (max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-card {
        padding: 24px 18px;
    }

    .cart-image-wrap {
        max-width: 200px;
    }

    .cart-form-inline {
        justify-content: center;
    }
}

/* ================================== */
/* CHECKOUT PAGE */
/* ================================== */

.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.checkout-form-wrap,
.checkout-summary {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 28px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-form h3,
.checkout-summary h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.checkout-form label {
    font-size: 15px;
    letter-spacing: 1px;
    color: #ffffff;
}

.checkout-form input,
.checkout-form select {
    padding: 12px;
    background-color: #050505;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 16px;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: #00bfff;
}

.checkout-button {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

.checkout-summary-item {
    padding: 16px 0;
    border-bottom: 1px solid #1a1a1a;
}

.checkout-summary-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.checkout-summary-meta {
    font-size: 15px;
    color: #cfcfcf;
    margin-bottom: 4px;
}

.checkout-summary-price {
    font-size: 18px;
    color: #ffffff;
    margin-top: 8px;
}

.checkout-total {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* CHECKOUT CARD STYLING         */
/* ============================= */

.checkout-form-card {
    border-radius: 16px;
    padding: 32px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Section titles (Contact / Shipping) */
.success-section-title {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Improve spacing */
.checkout-form label {
    margin-top: 16px;
    display: block;
}

.checkout-form input,
.checkout-form select {
    margin-top: 6px;
}

/* Softer inputs to match UI */
.checkout-form input,
.checkout-form select {
    border-radius: 8px;
}

/* ================================== */
/* ORDERS PAGE */
/* ================================== */

.orders-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
}

.orders-table th,
.orders-table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    vertical-align: middle;
}

.orders-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00bfff;
    background-color: #080808;
}

.orders-table tr:hover {
    background-color: rgba(0, 191, 255, 0.04);
}

.orders-table td {
    color: #d8d8d8;
}

.orders-table td:nth-child(4),
.orders-table td:nth-child(5),
.orders-table td:nth-child(6) {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .orders-table th,
    .orders-table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

.order-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-link:hover {
    color: #00bfff;
}

/* ================================== */
/* ORDER STATUS FORM */
/* ================================== */

.status-form {
    max-width: 260px;
    margin-top: 10px;
}

.status-select {
    width: 100%;
    padding: 10px 12px;
    background-color: #050505;
    border: 1px solid #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.status-select:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.2);
}

.status-form .store-button {
    width: 100%;
    margin-top: 10px;
}

/* ================================ */
/* CART ACTION BUTTONS */
/* ================================ */

.cart-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cart-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.continue-shopping-btn {
    border: 1px solid #00cfff;
    color: #00cfff !important;
    background: transparent;
    text-decoration: none !important;
}

.continue-shopping-btn:hover {
    background: rgba(0, 207, 255, 0.08);
    border-color: #00cfff;
    color: #00cfff !important;
}

.store-button {
    border: 1px solid #00cfff;
    color: #00cfff;
    background: transparent;
}

.store-button:hover {
    background: rgba(0, 207, 255, 0.08);
    color: #00cfff;
}

/* ================================== */
/* SUCCESS PAGE */
/* ================================== */

.success-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.success-page .page-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.success-content {
    max-width: 920px;
    margin: 0 auto;
}

.success-logo-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.success-logo {
    width: 80px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.success-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.success-message {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 6px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 20px;
}

.success-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 22px;
    text-align: left;
}

.success-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.success-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #e0e0e0;
    text-align: left;
}

.success-items-card {
    margin-bottom: 20px;
}

.success-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.success-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.success-item-info {
    flex: 1;
    text-align: left;
}

.success-item-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
    color: #ffffff;
}

.success-item-meta {
    color: #9f9f9f;
    font-size: 0.85rem;
}

.success-item-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    white-space: nowrap;
}

.success-total-row {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 207, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.success-actions {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .success-title {
        letter-spacing: 0.04em;
    }

    .success-item-row,
    .success-total-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* PRODUCT PAGE FOOTER SPACING TEST */
.product-page .page-content {
    padding-bottom: 80px !important;
}

/* Product page responisve desgn*/

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .product-gallery,
    .product-detail-info {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .product-detail-info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 16px;
    }

    .product-detail-info h2,
    .product-description,
    .product-description p,
    .product-spec-list,
    .product-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* Collection Title Header Centered on Mobile Device */
@media (max-width: 768px) {
    .collection-hero {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 16px;
        padding-right: 16px;
    }

    .collection-hero-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        white-space: normal;
        overflow-wrap: normal;

        /* Mobile title sizing */
        font-size: 34px !important;
        letter-spacing: 2px !important;
        line-height: 1.1;
    }
}
