:root {
    --arctic-blue: #4BA3C7;
    --snow: #F7F9FA;
    --charcoal: #2A2D31;
    --copper: #C57E47;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--snow);
}

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

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.brand-link:hover {
    opacity: 0.8;
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--arctic-blue);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--arctic-blue);
}

main {
    min-height: calc(100vh - 200px);
}

.alert {
    padding: 1rem 1.5rem;
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: 12px;
    font-weight: 500;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #3a3;
    border: 1px solid #cfc;
}

.hero {
    background: linear-gradient(135deg, var(--arctic-blue) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--copper);
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features {
    padding: 4rem 0;
}

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

.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card h3 {
    color: var(--arctic-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.gallery {
    padding: 4rem 0;
    background-color: var(--white);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.waitlist {
    padding: 4rem 0;
}

.waitlist-card {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-card h2 {
    color: var(--arctic-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.waitlist-card > p {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--arctic-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.required {
    color: var(--copper);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--arctic-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 1rem;
}

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

.btn-secondary {
    background-color: var(--copper);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #a96a3a;
    transform: translateY(-2px);
}

.page-header {
    background-color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 4px solid var(--arctic-blue);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 0.9rem;
}

.content-section {
    padding: 3rem 0;
}

.brand-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 1.5rem;
}

.timeline-item h4 {
    color: var(--arctic-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--arctic-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.faq-item a {
    color: var(--arctic-blue);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info .card {
    padding: 1.5rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    color: var(--arctic-blue);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--arctic-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--arctic-blue);
    font-weight: 600;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-card h2 {
    color: var(--arctic-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.thanks-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

footer {
    background-color: var(--charcoal);
    color: var(--snow);
    padding: 2rem 0;
    margin-top: 4rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--snow);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--copper);
}

.cart-link {
    position: relative;
    font-weight: 600;
}

.cart-badge {
    background-color: var(--copper);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    margin-left: 4px;
}

.shop-controls {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filters {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    font-size: 0.95rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--ice-blue);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--charcoal);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 150px;
}

.filter-select:hover {
    border-color: var(--arctic-blue);
}

.filter-select:focus {
    outline: none;
    border-color: var(--arctic-blue);
}

.filter-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--arctic-blue);
}

.results-count {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--ice-blue);
}

.results-count span {
    font-weight: 700;
    color: var(--arctic-blue);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--snow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 12px 12px 0 0;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-info h3 a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.product-info h3 a:hover {
    color: var(--arctic-blue);
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--arctic-blue);
    margin: 0;
}

.out-of-stock {
    color: #999;
    font-style: italic;
    padding: 0.5rem 1rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover {
    border-color: var(--arctic-blue);
}

.no-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--snow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #999;
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-variants {
    margin-top: 2rem;
}

.variant-select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    margin: 1rem 0;
    cursor: pointer;
}

.quantity-selector {
    margin: 1.5rem 0;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quantity-selector input {
    width: 100px;
    padding: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.cart-message {
    margin-top: 1rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.cart-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.cart-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.remove-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--arctic-blue);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
}

.cart-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-image .no-image {
    width: 100px;
    height: 100px;
    background-color: var(--snow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 0.8rem;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cart-item-details a {
    color: var(--charcoal);
    text-decoration: none;
}

.cart-item-details a:hover {
    color: var(--arctic-blue);
}

.cart-item-variant {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--arctic-blue);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity label {
    font-weight: 600;
    margin: 0;
}

.cart-item-quantity input {
    width: 70px;
    padding: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.cart-item-total p {
    margin: 0;
}

.remove-btn {
    background-color: transparent;
    border: 2px solid var(--copper);
    color: var(--copper);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.remove-btn:hover {
    background-color: var(--copper);
    color: var(--white);
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-line.total {
    border-top: 2px solid var(--charcoal);
    border-bottom: none;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cart-actions a {
    flex: 1;
    text-align: center;
}

.checkout-btn {
    margin-top: 0;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.empty-cart p {
    margin-bottom: 2rem;
    color: #666;
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.75rem 15px;
    }
    
    .brand a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
        display: inline-block;
    }
    
    nav {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    nav a {
        padding: 0.75rem 0.5rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .cart-link {
        white-space: nowrap;
    }
    
    .cart-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
        margin-left: 3px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .features,
    .waitlist,
    .content-section {
        padding: 2rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-controls {
        padding: 1rem;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .filter-select {
        width: 100%;
        min-width: 0;
    }
    
    .filter-group input[type="checkbox"] {
        margin-right: 0.5rem;
    }
    
    .gallery {
        padding: 2rem 0;
    }
    
    .gallery h2 {
        font-size: 1.75rem;
    }
    
    .feature-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image,
    .product-image-placeholder {
        height: 280px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .product-detail-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-details h1 {
        font-size: 1.75rem;
    }
    
    .main-image img {
        border-radius: 8px;
    }
    
    .image-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
        text-align: left;
    }
    
    .cart-item-image img,
    .cart-item-image .no-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-info {
        grid-column: 1 / -1;
    }
    
    .cart-item-details h3 {
        font-size: 1rem;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
    }
    
    .cart-item-quantity input {
        width: 70px;
        padding: 0.75rem 0.5rem;
        min-height: 44px;
    }
    
    .remove-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea,
    .variant-select,
    .quantity-selector input {
        font-size: 16px;
        min-height: 44px;
        padding: 0.75rem;
    }
    
    footer {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    nav {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    nav a {
        padding: 0.75rem 0.4rem;
        min-height: 44px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        gap: 1.25rem;
    }
    
    .product-image,
    .product-image-placeholder {
        height: 240px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cart-item-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .remove-btn {
        width: 100%;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-hero {
    background-color: var(--white);
    color: var(--arctic-blue);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background-color: var(--copper);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--arctic-blue);
    transform: translateY(-2px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--arctic-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--copper);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: var(--charcoal);
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--arctic-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.75rem 0;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .btn-hero,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}
