/* ===================================
   GIFT PAGE STYLES v2.0
   Clean, Minimal, Unique Design
   =================================== */

/* Variables */
:root {
    --primary-green: #2e7d32;
    --primary-green-light: #4caf50;
    --primary-green-dark: #1b5e20;
    --accent-green: #81c784;
    --bg-green-light: #e8f5e9;
    --bg-green-lighter: #f1f8e9;

    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;

    --white: #ffffff;
    --off-white: #fafafa;
    --border-light: #e0e0e0;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* ===================================
   HERO SECTION (Redesigned)
   =================================== */

.gift-hero-new {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(165deg, #f8fdf8 0%, var(--bg-green-light) 50%, var(--bg-green-lighter) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.gift-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.gift-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gift-hero-content {
    animation: fadeSlideIn 0.8s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-green-light);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 12px;
}

.gift-hero-headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-emphasis {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.headline-emphasis::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.gift-hero-subtext {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
    transition: all var(--transition-normal);
    width: fit-content;
}

.hero-cta-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
    gap: 16px;
}

.hero-cta-primary i {
    transition: transform var(--transition-normal);
}

.hero-cta-primary:hover i {
    transform: translateX(4px);
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.hero-cta-note i {
    color: var(--primary-green);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
}

.proof-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-stars {
    color: #fbbf24;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.proof-text > span {
    font-size: 13px;
    color: var(--text-medium);
}

/* Hero Visual - Book Stack */
.gift-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    animation: fadeSlideInRight 0.8s ease 0.2s both;
}

@keyframes fadeSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-book-stack {
    position: relative;
    width: 380px;
    height: 480px;
}

.book-card {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.book-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-card.book-back {
    width: 260px;
    height: 340px;
    top: 70px;
    left: -40px;
    transform: rotate(-15deg);
    z-index: 1;
}

.book-card.book-middle {
    width: 280px;
    height: 360px;
    top: 50px;
    left: 50px;
    transform: rotate(-5deg);
    z-index: 2;
}

.book-card.book-front {
    width: 300px;
    height: 380px;
    top: 30px;
    left: 130px;
    transform: rotate(8deg);
    z-index: 3;
}

.hero-book-stack:hover .book-card.book-back {
    transform: rotate(-22deg) translateX(-150px) translateY(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-book-stack:hover .book-card.book-middle {
    transform: rotate(-12deg) translateX(-85px) translateY(-10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-book-stack:hover .book-card.book-front {
    transform: rotate(14deg) translateX(95px) translateY(-30px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-floating-badge i {
    color: var(--primary-green);
}

.hero-floating-badge.badge-top {
    top: 0;
    right: 20px;
    animation-delay: 0s;
}

.hero-floating-badge.badge-bottom {
    bottom: 40px;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SHOWCASE SECTION (New)
   =================================== */

.gift-showcase {
    padding: 100px 0;
    background: var(--white);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.showcase-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-feature:last-child {
    margin-bottom: 0;
}

.showcase-feature.reverse {
    direction: rtl;
}

.showcase-feature.reverse > * {
    direction: ltr;
}

.showcase-visual {
    position: relative;
}

.showcase-image-stack {
    position: relative;
}

.showcase-img-main {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.showcase-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.showcase-floating-card.right {
    left: auto;
    right: -20px;
}

.showcase-floating-card i {
    font-size: 24px;
    color: var(--primary-green);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.showcase-content {
    padding: 20px 0;
}

.showcase-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.showcase-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.showcase-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-features li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.showcase-features .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-features .feature-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.showcase-features li strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.showcase-features li span {
    font-size: 14px;
    color: var(--text-light);
}

/* Dedication Preview */
.dedication-preview {
    margin-top: 24px;
}

.dedication-card {
    background: linear-gradient(135deg, #fef7ed, #fef3e6);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.dedication-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 64px;
    font-family: Georgia, serif;
    color: rgba(234, 179, 8, 0.3);
    line-height: 1;
}

.dedication-text {
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.dedication-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.dedication-footer i {
    color: #eab308;
}

/* QR Options */
.qr-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.qr-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.qr-option:hover {
    background: var(--bg-green-light);
    transform: translateX(8px);
}

.qr-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-icon.video {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.qr-icon.audio {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.qr-icon i {
    font-size: 20px;
    color: var(--white);
}

.qr-details strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.qr-details span {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   OCCASIONS SECTION (New - Pill Style)
   =================================== */

.gift-occasions-new {
    padding: 80px 0;
    background: var(--off-white);
    overflow: hidden;
}

.occasions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.occasions-header {
    text-align: center;
    margin-bottom: 48px;
}

.occasions-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.occasions-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

.occasions-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.occasion-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: default;
}

.occasion-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-green-light);
}

.occasion-pill i {
    font-size: 18px;
    color: var(--primary-green);
}

/* ===================================
   PROCESS SECTION (Redesigned - Clean Cards)
   =================================== */

.gift-process-new {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.process-new-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.process-new-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-green-light);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.process-new-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-new-subtitle {
    font-size: 18px;
    color: var(--text-medium);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-line {
    display: none;
}

.process-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.process-card-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.process-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card-icon i {
    font-size: 28px;
    color: var(--primary-green);
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   TESTIMONIAL HERO (New)
   =================================== */

.gift-testimonial-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-green-lighter) 0%, var(--bg-green-light) 100%);
}

.testimonial-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-quote-large {
    position: relative;
}

.quote-marks {
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: -40px;
    left: -10px;
}

.testimonial-quote-large blockquote {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-large img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-large strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author-large span {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.testimonial-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-img.t-img-1 {
    transform: rotate(-3deg);
}

.testimonial-img.t-img-2 {
    transform: translateY(20px);
}

.testimonial-img.t-img-3 {
    transform: rotate(3deg);
}

.testimonial-img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

/* ===================================
   FAQ MINIMAL (New Card Style)
   =================================== */

.gift-faq-minimal {
    padding: 100px 0;
    background: var(--white);
}

.faq-minimal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-minimal-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-card-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-fast);
}

.faq-more-link:hover {
    gap: 12px;
}

.faq-more-link i {
    transition: var(--transition-fast);
}

/* ===================================
   FINAL CTA NEW (Emotional)
   =================================== */

.gift-final-cta-new {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-new-content {
    position: relative;
    z-index: 2;
}

.cta-new-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-new-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-new-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cta-new-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    gap: 16px;
}

.cta-new-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.cta-new-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-new-details i {
    color: var(--accent-green);
}

.cta-new-visual {
    position: relative;
    height: 400px;
}

.floating-books {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-book {
    position: absolute;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.float-book.fb-1 {
    top: 20%;
    left: 10%;
    width: 180px;
    transform: rotate(-8deg);
    animation: floatBook1 4s ease-in-out infinite;
}

.float-book.fb-2 {
    top: 30%;
    left: 35%;
    width: 200px;
    transform: rotate(3deg);
    animation: floatBook2 5s ease-in-out infinite;
    z-index: 2;
}

.float-book.fb-3 {
    top: 40%;
    right: 10%;
    width: 170px;
    transform: rotate(10deg);
    animation: floatBook3 4.5s ease-in-out infinite;
}

@keyframes floatBook1 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes floatBook2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-20px); }
}

@keyframes floatBook3 {
    0%, 100% { transform: rotate(10deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(-12px); }
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    /* Hero responsive */
    .gift-hero-new {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .gift-hero-container {
        gap: 60px;
    }

    .gift-hero-headline {
        font-size: 52px;
    }

    .hero-book-stack {
        width: 340px;
        height: 420px;
    }

    .book-card.book-back {
        width: 220px;
        height: 290px;
        left: -30px;
        top: 65px;
        transform: rotate(-12deg);
    }

    .book-card.book-middle {
        width: 240px;
        height: 310px;
        left: 50px;
        top: 45px;
        transform: rotate(-4deg);
    }

    .book-card.book-front {
        width: 260px;
        height: 330px;
        left: 110px;
        top: 25px;
        transform: rotate(6deg);
    }

    .showcase-feature {
        gap: 48px;
    }

    .showcase-title {
        font-size: 32px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process-card {
        padding: 28px 20px;
    }

    .process-new-title {
        font-size: 36px;
    }

    .testimonial-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonial-images {
        justify-content: center;
    }

    .cta-new-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-new-visual {
        display: none;
    }

    .cta-new-details {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Hero responsive */
    .gift-hero-new {
        padding: 80px 0 60px;
    }

    .gift-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .gift-hero-headline {
        font-size: 44px;
    }

    .gift-hero-subtext {
        max-width: 100%;
    }

    .hero-cta-group {
        align-items: center;
    }

    .hero-cta-primary {
        width: 100%;
        max-width: 320px;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .gift-hero-visual {
        min-height: 380px;
    }

    .hero-book-stack {
        width: 320px;
        height: 360px;
    }

    .book-card.book-back {
        width: 180px;
        height: 240px;
        top: 60px;
        left: -20px;
        transform: rotate(-12deg);
    }

    .book-card.book-middle {
        width: 200px;
        height: 260px;
        top: 40px;
        left: 55px;
        transform: rotate(-3deg);
    }

    .book-card.book-front {
        width: 220px;
        height: 280px;
        top: 20px;
        left: 120px;
        transform: rotate(6deg);
    }

    .hero-floating-badge {
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero-floating-badge.badge-top {
        right: 0;
    }

    .hero-gradient-orb.orb-1 {
        width: 400px;
        height: 400px;
    }

    .hero-gradient-orb.orb-2 {
        width: 300px;
        height: 300px;
    }

    .showcase-feature,
    .showcase-feature.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
        margin-bottom: 80px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .showcase-floating-card {
        bottom: -10px;
        left: 10px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .occasions-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .occasion-pill {
        flex-shrink: 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-new-title {
        font-size: 28px;
    }

    .process-card-icon {
        width: 60px;
        height: 60px;
    }

    .process-card-icon i {
        font-size: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-quote-large blockquote {
        font-size: 22px;
    }

    .testimonial-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-img.t-img-3 {
        display: none;
    }

    .cta-new-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    /* Hero responsive */
    .gift-hero-headline {
        font-size: 36px;
    }

    .gift-hero-subtext {
        font-size: 17px;
    }

    .hero-eyebrow {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-book-stack {
        width: 280px;
        height: 300px;
    }

    .book-card.book-back {
        width: 150px;
        height: 200px;
        top: 50px;
        left: -10px;
        transform: rotate(-10deg);
    }

    .book-card.book-middle {
        width: 165px;
        height: 220px;
        top: 30px;
        left: 50px;
        transform: rotate(-2deg);
    }

    .book-card.book-front {
        width: 180px;
        height: 240px;
        top: 10px;
        left: 105px;
        transform: rotate(5deg);
    }

    .hero-floating-badge.badge-bottom {
        bottom: 20px;
    }

    .proof-avatars img {
        width: 32px;
        height: 32px;
        margin-left: -10px;
    }

    .showcase-title {
        font-size: 24px;
    }

    .showcase-description {
        font-size: 16px;
    }

    .occasions-title {
        font-size: 28px;
    }

    .process-title {
        font-size: 28px;
    }

    .testimonial-quote-large blockquote {
        font-size: 20px;
    }

    .faq-minimal-title {
        font-size: 28px;
    }

    .faq-card {
        padding: 24px;
    }

    .cta-new-title {
        font-size: 28px;
    }

    .cta-new-details {
        flex-direction: column;
        gap: 12px;
    }
}
