/* Common Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(180deg, #1a0f0f 0%, #2d1414 100%);
    color: #f4e4d4;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-bottom: 3px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2.5rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    text-align: center;
    font-weight: bold;
}

.tagline {
    text-align: center;
    color: #d4a574;
    font-style: italic;
    margin-top: 5px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #f4e4d4;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    transition: all 0.3s;
    background: rgba(255, 107, 53, 0.1);
}

nav a:hover, nav a.active {
    background: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

/* Common Page Header */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.6);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

/* Hero Section (Homepage) */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b35" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,197.3C960,213,1056,203,1152,176C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    margin-bottom: 30px;
}

/* Stock Ticker */
.stock-ticker {
    background: rgba(0,0,0,0.6);
    padding: 10px;
    margin: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    display: inline-block;
    margin: 0 50px;
    color: #ff6b35;
}

/* Homepage Illustrations */
.hero-illustration {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 30px auto;
    border: 4px solid #ff6b35;
    position: relative;
    overflow: hidden;
    animation: pulse-hero 2s ease-in-out infinite;
}

@keyframes pulse-hero {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
}

.product-illustration {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
    border: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.product-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine-product 2.5s ease-in-out infinite;
}

@keyframes shine-product {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    float: left;
    margin: 0 15px 10px 0;
    border: 2px solid #ff6b35;
    flex-shrink: 0;
}

/* Product Cards */
.products, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
}

.product-card, .product-detailed {
    background: rgba(0,0,0,0.6);
    border: 2px solid #ff6b35;
    padding: 20px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.product-detailed {
    background: rgba(0,0,0,0.7);
    padding: 30px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.product-card:hover, .product-detailed:hover {
    transform: translateY(-5px);
}

.product-card:hover::before {
    opacity: 0.3;
}

.product-detailed:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.product-card h3, .product-detailed h2 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.product-detailed h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35 0%, #d4a574 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 20px;
}

.quality-badge {
    background: gold;
    color: #000;
    padding: 5px 10px;
    display: inline-block;
    font-weight: bold;
    margin: 10px 0;
    animation: shine 2s infinite;
}

@keyframes shine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.price {
    font-size: 1.8rem;
    color: #4CAF50;
    margin: 15px 0;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ff6b35;
}

.price-box .price {
    font-size: 2rem;
}

/* Feature Lists */
.feature-list, .spec-list ul {
    list-style: none;
    padding: 10px 0;
}

.feature-list li, .spec-list li {
    padding: 5px 0;
    color: #d4a574;
}

.feature-list li:before {
    content: "🔥 ";
    margin-right: 10px;
}

.spec-list {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #ff6b35;
}

.spec-list h3 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.spec-list li:before {
    content: "▸ ";
    color: #ff6b35;
    margin-right: 10px;
}

/* Buttons */
.cta-button {
    background: #ff6b35;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #ff8855;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

/* Filter Bars */
.filter-bar, .merch-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn, .category-btn {
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    color: #f4e4d4;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn {
    padding: 10px 25px;
    font-size: 1.1rem;
}

.filter-btn:hover, .filter-btn.active, .category-btn:hover, .category-btn.active {
    background: #ff6b35;
}

/* Testimonial Styles */
.testimonial {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    margin: 20px;
    border-left: 4px solid #ff6b35;
    font-style: italic;
}

.author {
    text-align: right;
    margin-top: 10px;
    color: #d4a574;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(0,0,0,0.7);
    border: 2px solid #ff6b35;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #ff6b35;
    opacity: 0.3;
}

.testimonial-rating {
    color: gold;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f4e4d4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #ff6b35;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 3px;
}

.author-title {
    color: #d4a574;
    font-size: 0.9rem;
}

.verified-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.featured-testimonial {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0,0,0,0.8));
    border: 3px solid gold;
    grid-column: span 2;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: gold;
    color: #000;
    padding: 5px 20px;
    font-weight: bold;
}

.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stars {
    color: gold;
    font-size: 2rem;
}

.rating-text {
    font-size: 1.5rem;
    color: #d4a574;
}

/* Merchandise Styles */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.merch-item {
    background: rgba(0,0,0,0.7);
    border: 2px solid #ff6b35;
    padding: 20px;
    transition: all 0.3s;
    text-align: center;
}

.merch-item:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.merch-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2d1414 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.merch-item h3 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.size-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.size-btn {
    padding: 5px 10px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    color: #f4e4d4;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover, .size-btn.selected {
    background: #ff6b35;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

/* Special Sections */
.special-section, .warranty-banner {
    background: rgba(255, 107, 53, 0.1);
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    border: 3px dashed #ff6b35;
}

.special-section {
    border: 3px dashed #ff6b35;
}

.warranty-banner {
    background: rgba(255, 107, 53, 0.2);
    padding: 30px;
    border: 2px solid #ff6b35;
}

.special-section h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Heritage Page Styles */
.timeline {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #ff6b35;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: rgba(0,0,0,0.7);
    padding: 30px;
    border: 2px solid #ff6b35;
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-illustration {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    border: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.timeline-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine-timeline 3s ease-in-out infinite;
}

@keyframes shine-timeline {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.timeline-text {
    flex: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    position: absolute;
    top: 30px;
    width: 100px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #000;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
}

.timeline-content h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.timeline-content p {
    line-height: 1.6;
    color: #d4a574;
}

.manufacturing-section, .values-section, .legacy-section, .museum-section, .quote-section {
    padding: 60px 20px;
    margin: 60px 0;
}

.manufacturing-section {
    background: rgba(0,0,0,0.8);
}

.values-section {
    background: rgba(255, 107, 53, 0.1);
}

.legacy-section {
    background: rgba(255, 107, 53, 0.1);
}

.museum-section {
    background: rgba(0,0,0,0.7);
    text-align: center;
}

.quote-section {
    background: rgba(0,0,0,0.8);
    text-align: center;
}

.manufacturing-grid, .values-grid, .awards-grid, .museum-gallery {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.manufacturing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.museum-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.process-card, .value-card, .award-card, .exhibit-card {
    text-align: center;
    padding: 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    position: relative;
    transition: transform 0.3s;
}

.value-card {
    padding: 30px;
    background: rgba(0,0,0,0.6);
}

.award-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0,0,0,0.8));
    border: 2px solid gold;
    padding: 20px;
}

.exhibit-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    cursor: pointer;
}

.value-card:hover, .exhibit-card:hover {
    transform: translateY(-10px);
}

.award-card:hover {
    transform: translateY(-5px) rotate(2deg);
}

.exhibit-card:hover {
    transform: scale(1.05);
    background: rgba(255, 107, 53, 0.2);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-icon, .value-icon, .award-icon, .exhibit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.exhibit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.award-year {
    color: gold;
    font-weight: bold;
    margin-bottom: 5px;
}

.award-title {
    color: #d4a574;
    font-size: 0.9rem;
}

.value-card h3, .exhibit-title {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.exhibit-title {
    margin-bottom: 10px;
}

.founders-section, .awards-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.awards-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.founder-card {
    background: rgba(0,0,0,0.7);
    border: 2px solid #ff6b35;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.founder-portrait {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b35, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
}

.founder-info h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.founder-title {
    color: #d4a574;
    font-style: italic;
    margin-bottom: 15px;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.legacy-stat {
    text-align: center;
}

.legacy-number {
    font-size: 3rem;
    color: #ff6b35;
    font-weight: bold;
}

.legacy-label {
    color: #d4a574;
    margin-top: 10px;
}

.quote {
    font-size: 2rem;
    color: #ff6b35;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: -40px;
    top: -20px;
    opacity: 0.3;
}

/* Video Testimonials */
.video-testimonials {
    background: rgba(255, 107, 53, 0.1);
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.video-placeholder {
    background: rgba(0,0,0,0.8);
    border: 2px solid #ff6b35;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
    background: rgba(0,0,0,0.8);
}

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

.stat-number {
    font-size: 3rem;
    color: #ff6b35;
    font-weight: bold;
}

.stat-label {
    color: #d4a574;
    margin-top: 10px;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 107, 53, 0.1);
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.disclaimer {
    color: #888;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-illustration {
        align-self: center;
        margin-bottom: 15px;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-testimonial {
        grid-column: span 1;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}