/* Cultural Passport Integration Styles */

/* Expedition Context */
.cultural-passport-section {
    margin: 2rem 0;
    background: #fafafa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #C9CC68;
}

.expedition-context {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #7E5D4C;
}

.expedition-context .field-note {
    margin: 0;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.expedition-context .location {
    display: block;
    font-weight: bold;
    color: #7E5D4C;
    margin-bottom: 0.5rem;
}

.expedition-context .expedition-update {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expedition-context .last-update {
    color: #888;
    font-size: 0.85rem;
}

.expedition-context .follow-expedition {
    color: #C9CC68;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.expedition-context .follow-expedition:hover {
    color: #7E5D4C;
}

/* Purchase Options */
.purchase-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .purchase-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.purchase-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.purchase-option:hover {
    border-color: #C9CC68;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.purchase-option.featured {
    border-color: #C9CC68;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 3px 15px rgba(201, 204, 104, 0.2);
}

.purchase-option.selected {
    border-color: #7E5D4C;
    background: linear-gradient(135deg, #7E5D4C 0%, #B8865E 100%);
    color: white;
}

.purchase-option .badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #C9CC68;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-option h4 {
    color: #7E5D4C;
    margin: 0 0 1rem 0;
    font-family: 'Stardos Stencil', serif;
    font-size: 1.5rem;
}

.purchase-option.selected h4 {
    color: white;
}

.purchase-option .price {
    font-size: 2rem;
    font-weight: bold;
    color: #B8865E;
    margin: 0.5rem 0 1rem 0;
}

.purchase-option.selected .price {
    color: #C9CC68;
}

.purchase-option .description {
    color: #666;
    margin-bottom: 1rem;
}

.purchase-option.selected .description {
    color: rgba(255,255,255,0.9);
}

.purchase-option .benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.purchase-option .benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.purchase-option.selected .benefits li {
    border-bottom-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.95);
}

.purchase-option .benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9CC68;
    font-weight: bold;
}

.purchase-option .benefits li:last-child {
    border-bottom: none;
}

.purchase-option .community-impact {
    background: rgba(201, 204, 104, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.purchase-option.selected .community-impact {
    background: rgba(255,255,255,0.1);
}

/* Purchase Type Selector */
.purchase-type-selector {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.purchase-type {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.purchase-type:hover {
    border-color: #C9CC68;
}

.purchase-type.featured {
    border-color: #C9CC68;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.purchase-type input[type="radio"] {
    margin-bottom: 0.5rem;
    transform: scale(1.2);
}

.purchase-type span {
    font-weight: bold;
    color: #7E5D4C;
}

.purchase-type small {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.purchase-type:has(input:checked) {
    border-color: #7E5D4C;
    background: linear-gradient(135deg, #7E5D4C 0%, #B8865E 100%);
    color: white;
}

.purchase-type:has(input:checked) span,
.purchase-type:has(input:checked) small {
    color: white;
}

/* Expedition Story Preview */
.expedition-story-preview {
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #C9CC68;
}

.expedition-story-preview h3 {
    color: #7E5D4C;
    font-family: 'Stardos Stencil', serif;
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
}

.expedition-story-preview .producer-intro {
    color: #B8865E;
    font-weight: bold;
    margin-bottom: 1rem;
}

.expedition-story-preview .story-teaser p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.expedition-story-preview .read-more {
    color: #7E5D4C;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.expedition-story-preview .read-more:hover {
    color: #C9CC68;
}

/* Tab Content Styling */
.expedition-content,
.brewing-content,
.impact-content {
    max-width: none;
    line-height: 1.7;
}

.expedition-content h3,
.brewing-content h3,
.impact-content h3 {
    color: #7E5D4C;
    font-family: 'Stardos Stencil', serif;
    margin: 2rem 0 1rem 0;
}

.expedition-content h4,
.brewing-content h4,
.impact-content h4 {
    color: #B8865E;
    margin: 1.5rem 0 0.5rem 0;
}

.discovery-moment,
.origin-story,
.cultural-context {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.discovery-moment:last-child,
.origin-story:last-child,
.cultural-context:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expedition-cta {
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid #C9CC68;
}

.expedition-cta p {
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-passport {
    background: linear-gradient(135deg, #C9CC68 0%, #B8865E 100%);
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-passport:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #333;
    text-decoration: none;
}

.brewing-conversation {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 3px solid #C9CC68;
}

.brewing-conversation p {
    margin-bottom: 1rem;
    color: #555;
}

.brewing-conversation .learn-more {
    color: #7E5D4C;
    text-decoration: none;
    font-weight: bold;
}

.brewing-conversation .learn-more:hover {
    color: #C9CC68;
}

/* Impact Content */
.impact-breakdown {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-item {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #B8865E;
}

.impact-item.passport-only {
    border-left-color: #C9CC68;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.impact-item h4 {
    color: #7E5D4C;
    margin: 0 0 0.5rem 0;
}

.impact-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.impact-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

.vote-cta {
    background: rgba(201, 204, 104, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
}

.current-vote {
    background: rgba(126, 93, 76, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 3px solid #C9CC68;
}

.current-vote p {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #7E5D4C;
}

.current-vote small {
    color: #666;
    font-style: italic;
}

.story-placeholder {
    background: rgba(201, 204, 104, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #C9CC68;
}

.story-placeholder p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cultural-passport-section {
        padding: 1.5rem;
    }
    
    .expedition-context {
        padding: 1rem;
    }
    
    .purchase-type-selector {
        flex-direction: column;
    }
    
    .expedition-story-preview {
        padding: 1.5rem;
    }
    
    .expedition-cta {
        padding: 1.5rem;
    }
    
    .impact-breakdown {
        gap: 1rem;
    }
    
    .impact-item {
        padding: 1rem;
    }
}