/* Gifts Page - Premium Style */

/* Variables */
:root {
    --primary-color: #2c1810;
    --secondary-color: #d4a574;
    --text-light: #666;
    --text-dark: #333;
    --bg-light: #f8f6f3;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section defaults */
section {
    padding: 80px 0;
    position: relative;
}

/* Typography defaults */
h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Section label */
.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Button styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c09560;
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-premium {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2418 100%);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.coffee-steam-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q30,20 40,50 T60,50 T80,50" stroke="white" fill="none" opacity="0.5"/></svg>') repeat;
    animation: steamFloat 20s infinite linear;
}

@keyframes steamFloat {
    0% { transform: translate(-50%, 0) rotate(0deg); }
    100% { transform: translate(0, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.headline-small {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.headline-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

.hero-subtext {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

/* Gift Philosophy Section */
.gift-philosophy {
    padding: 100px 0;
    background: white;
}

.philosophy-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.gift-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gift Process Section */
.gift-process {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.process-step {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.process-outcome {
    max-width: 600px;
    margin: 4rem auto 0;
}

.outcome-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.outcome-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.outcome-box ul {
    list-style: none;
    padding: 0;
}

.outcome-box li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.outcome-box li i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Gift Selection */
.gift-selection {
    padding: 100px 0;
    background: white;
}

.gift-amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.gift-amount-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.gift-amount-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.gift-amount-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gift-amount-card .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.gift-amount-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    transform: rotate(15deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.amount-header {
    background: var(--bg-light);
    padding: 2rem;
    text-align: center;
}

.amount-header .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.amount-content {
    padding: 2rem;
    text-align: center;
}

.amount-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.amount-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.amount-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.amount-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.amount-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.custom-amount-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Perfect For Section */
.perfect-for {
    padding: 100px 0;
    background: var(--bg-light);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.persona-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.persona-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.persona-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Gift Occasions */
.gift-occasions {
    padding: 100px 0;
    background: white;
}

.occasions-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.occasion-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.occasion-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.occasion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.occasion-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.suggested-amount {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* FAQ Section */
.gift-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.gift-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.gifts-cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2418 100%);
    color: white;
    text-align: center;
}

.gifts-cta-premium h2 {
    color: white;
    margin-bottom: 1rem;
}

.gifts-cta-premium p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-benefits i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary-large {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--primary-color);
}

.gifts-cta-premium .btn-primary-large,
.gifts-cta-premium .btn-secondary-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

/* Fix the primary button for dark background */
.gifts-cta-premium .btn-primary-large {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.gifts-cta-premium .btn-primary-large:hover {
    background: #c09560;
    border-color: #c09560;
    transform: translateY(-2px);
    color: white;
}

/* Fix the secondary button for dark background */
.gifts-cta-premium .btn-secondary-large {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.gifts-cta-premium .btn-secondary-large:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Ensure icons stay visible */
.gifts-cta-premium .btn-primary-large i,
.gifts-cta-premium .btn-secondary-large i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .headline-large {
        font-size: 2.5rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
    }
    
    .trust-row {
        gap: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .philosophy-content h2,
    .gift-selection h2 {
        font-size: 2rem;
    }
}