/* ==========================================================
   FUNPACK – MODULE STYLES ONLY
   (Header & Footer handled in inprint.css)
========================================================== */


/* ==========================================================
   MAIN HERO LAYOUT
========================================================== */

.fp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% / 50% */
    gap: 60px;
    padding: 80px 20px;
    align-items: center;
}

/* ==========================================================
   LEFT COLUMN – PRODUCT DATA
========================================================== */

.fp-main-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     /* CENTER horizontally */
    text-align: center;      /* CENTER text */
}
.fp-main-left h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #ff1a1a;
}

.fp-description {
    color: #b6b6c7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.fp-price {
    font-size: 28px;
    margin-bottom: 20px;
}

.fp-base {
    text-decoration: line-through;
    color: #777;
    margin-right: 15px;
}

.fp-final {
    font-weight: 700;
    color: #ff1a1a;
}

.fp-share {
    margin-bottom: 25px;
}

.fp-share p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #b6b6c7;
}

.fp-btn-share {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid #ff1a1a;
    color: #ff1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.fp-btn-share:hover {
    background: #ff1a1a;
    color: #000;
}

.fp-btn-buy {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    background: #ff1a1a;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.fp-btn-buy:hover {
    filter: brightness(1.1);
}

/* LEFT COLUMN IMAGE */

.fp-card-image {
    width: 100%;
    margin: 25px 0;
}

.fp-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* ==========================================================
   RIGHT COLUMN – SLIDER + INSTRUCTIONS
========================================================== */

.fp-main-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}


/* ==========================================================
   SLIDER
========================================================== */

.fp-gallery {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.fp-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.fp-slide.active {
    opacity: 1;
}


/* ==========================================================
   INSTRUCTIONS PANEL
========================================================== */

.fp-instructions {
    height: 100%;
    min-height: 250px;
    background: #111;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-instructions h3 {
    margin-bottom: 15px;
    color: #ff1a1a;
}

.fp-instructions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-instructions li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #b6b6c7;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1000px) {

    .fp-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fp-main-right {
        grid-template-columns: 1fr;
    }

    .fp-gallery,
    .fp-instructions {
        min-height: 300px;
    }
}

/* ==========================================================
   FUNPACK HERO TEXT STYLING
========================================================== */

.fp-hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 800;
}

.fp-red {
    color: #ff0033;
}

.fp-blue {
    color: #00e0ff;
}

.fp-lead {
    max-width: 650px;
    margin-top: 20px;
    color: #aaa;
    font-size: 1rem;
}

.fp-price-box {
    margin-top: 30px;
}

.fp-base-label {
    font-size: 1.2rem;
    color: #888;
}

.fp-base-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff0033;
}

.fp-vat {
    font-size: 1rem;
    color: #aaa;
    margin-left: 6px;
}

.fp-share-text {
    margin-top: 15px;
    color: #00e0ff;
}

.fp-share-count {
    margin-top: 10px;
    font-size: 1.1rem;
}

.fp-dynamic-price {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.fp-button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================
   FUNPACK BUTTON OVERRIDE (NEON RED)
========================================================== */

.fp-main-left .btn {
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* PRIMARY (RED NEON) */
.fp-main-left .btn-primary {
    background: linear-gradient(135deg, #ff0033, #cc0000);
    color: #000;
    box-shadow:
        0 0 8px #ff0033,
        0 0 20px rgba(255,0,51,0.7),
        0 0 40px rgba(255,0,51,0.5);
    transition: 0.2s ease;
}

.fp-main-left .btn-primary:hover {
    filter: brightness(1.1);
    box-shadow:
        0 0 12px #ff0033,
        0 0 30px rgba(255,0,51,0.9),
        0 0 60px rgba(255,0,51,0.6);
}

/* GHOST */
.fp-main-left .btn-ghost {
    background: transparent;
    color: #ff0033;
    border: 1px solid #ff0033;
}

.fp-main-left .btn-ghost:hover {
    background: #ff0033;
    color: #000;
}

.fp-card-image {
    display: flex;
    justify-content: center;   /* centers horizontally */
    align-items: center;
    margin: 30px 0;
}

.fp-card-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* =========================================
   RIGHT COLUMN STRUCTURE
========================================= */

.fp-main-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Top 2-column area */
.fp-right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Bottom full width image */
.fp-right-bottom {
    width: 100%;
}

.fp-right-bottom img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Price drop animation */
.price-drop {
    animation: priceFlash 0.5s ease;
}

@keyframes priceFlash {
    0% {
        transform: scale(1.2);
        color: #00ffcc;
    }
    100% {
        transform: scale(1);
        color: #ff0033;
    }
}

.fp-hero {
    position: relative;
}

.fp-main-left {
    position: relative;
    z-index: 2;
}

.fp-main-right {
    position: relative;
    z-index: 1;
}

.fp-order-section {
    padding: 100px 20px;
    background: #0f1118;
}

.fp-order-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.fp-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.fp-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #aaa;
}

.fp-form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
    color: #fff;
}

.fp-order-section {
    display: none;
    margin-top: 40px;
    animation: fadeSlide 0.4s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fp-ai-instructions{
margin-top:40px;
padding:25px;
background:#111;
color:#fff;
border-radius:10px;
text-align:center;
}

.fp-ai-btn{
display:inline-block;
margin-top:10px;
padding:12px 24px;
background:#00bfff;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.fp-ai-btn:hover{
background:#0090c7;
}

.fp-tip{
margin-top:10px;
font-size:14px;
opacity:0.8;
}
