/*
Theme Name: Custom Tumi
Description: A modern minimalist WooCommerce theme specifically designed for backpack e-commerce stores. Features clean design, premium aesthetics, and optimized product display for backpacks and travel gear.
Author: Custom Development
Version: 1.0.0
Text Domain: custom-tumi
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f6f3;
    font-size: 16px;
    font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 200;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: 2rem; 
    font-weight: 300;
    letter-spacing: -0.02em;
}
h3 { 
    font-size: 1.75rem; 
    font-weight: 300;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 400;
}
h5 { 
    font-size: 1.25rem; 
    font-weight: 400;
}
h6 { 
    font-size: 1rem; 
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
}

a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo {
    width: 40px;
    height: 40px;
    background: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    overflow: hidden;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000;
    margin: 0;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.01em;
}

.site-title .brand-accent {
    color: #d32f2f;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Hide mobile navigation on desktop */
.mobile-navigation {
    display: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #000000;
    font-weight: 300;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.01em;
}

.main-navigation a:hover {
    color: #d32f2f;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions a {
    color: #000000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: #d32f2f;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: #f8f6f3;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: #d32f2f;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.3) 0%, rgba(240, 237, 232, 0.4) 100%);
    z-index: 1;
}

.hero-text {
    max-width: 500px;
}

.hero-badge {
    color: #8a8a8a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.04em;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
}

.btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn-primary {
    background: #d32f2f;
    color: #ffffff;
    border-color: #d32f2f;
}

.btn-primary:hover {
    background: #b71c1c;
    border-color: #b71c1c;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f8f8f8;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.product-description {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Category Navigation */
.category-nav {
    background: #ffffff;
    padding: 3rem 0;
    margin: 0;
}

.category-nav:first-of-type {
    margin-top: 0;
}

.category-nav:not(:first-of-type) {
    margin-top: 4rem;
}

/* Bestsellers Section - No Edge Spacing */
.category-nav.bestsellers-section .container {
    padding-left: 0;
    padding-right: 0;
}

.category-nav.bestsellers-section {
    padding-left: 0;
    padding-right: 0;
}

.bestsellers-section .section-title {
    padding-left: 0;
    margin-left: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: #d32f2f;
    transform: translateY(-2px);
}

.category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

/* WooCommerce Integration */
.woocommerce {
    margin: 2rem 0;
}

.woocommerce-products-header {
    margin-bottom: 2rem;
}

.woocommerce-products-header h1 {
    font-size: 2.5rem;
    color: #000000;
}

.woocommerce-result-count {
    color: #000000;
    margin-bottom: 1rem;
}

.woocommerce-ordering {
    margin-bottom: 2rem;
}

.woocommerce-ordering select {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    color: #000000;
}

/* Product Single Page */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product-images {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-gallery img:hover {
    opacity: 0.8;
}

.product-summary {
    padding: 1rem 0;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.product-description {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Product Variations */
.variations {
    margin-bottom: 2rem;
}

.variations label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.variations select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    color: #000000;
    margin-bottom: 1rem;
}

/* Add to Cart */
.single_add_to_cart_button {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.single_add_to_cart_button:hover {
    background: #b71c1c;
}

/* Related Products */
.related-products {
    margin: 4rem 0;
}

.related-products h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #d32f2f;
}

.newsletter-signup h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .single-product .product {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* About Features Section - Redesigned */
.about-features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 1px;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-feature-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-feature-item:hover::before {
    transform: scaleX(1);
}

.about-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-feature-item:hover .feature-icon::before {
    opacity: 1;
}

.about-feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.features-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-features-section {
        padding: 3rem 0;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-features-section {
        padding: 2.5rem 0;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .about-feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* TUMI Story Section - Redesigned */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="story-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23e9ecef" opacity="0.3"/><circle cx="80" cy="80" r="0.5" fill="%23e9ecef" opacity="0.3"/><circle cx="40" cy="60" r="0.3" fill="%23e9ecef" opacity="0.2"/><circle cx="60" cy="40" r="0.3" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23story-grain)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}

.tumi-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-content {
    padding-right: 2rem;
}

.story-header {
    margin-bottom: 3rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 300;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.story-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.story-text {
    position: relative;
}

.story-highlight {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.highlight-year {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: -0.02em;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0;
    font-weight: 400;
}

.story-visual {
    position: relative;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 1rem;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.story-image-container:hover .story-image {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image-container:hover .story-image-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tumi-story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-description {
        font-size: 1rem;
    }
    
    .highlight-year {
        font-size: 1.5rem;
    }
    
    
    .story-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .tumi-story-wrapper {
        gap: 2rem;
    }
    
    .story-title {
        font-size: 1.75rem;
    }
    
    .story-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .highlight-year {
        font-size: 1.25rem;
    }
    
    .story-description {
        font-size: 0.95rem;
    }
    
    .story-image {
        height: 250px;
    }
}

/* Shipping Page Styles */
.shipping-page-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.shipping-hero-section {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.shipping-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.shipping-hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #212529;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.shipping-hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 2px;
    margin: 0 auto 2rem;
}

.shipping-content-section {
    padding: 2rem 0 4rem;
}

.shipping-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.shipping-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shipping-info-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shipping-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.shipping-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.shipping-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.shipping-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design for Shipping Page */
@media (max-width: 768px) {
    .shipping-hero-title {
        font-size: 2rem;
    }
    
    .shipping-info-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .shipping-icon {
        margin: 0 auto;
    }
    
    .shipping-content h2 {
        font-size: 1.25rem;
    }
    
    .shipping-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shipping-page-wrapper {
        padding: 1rem 0;
    }
    
    .shipping-hero-section {
        padding: 2rem 0 1rem;
    }
    
    .shipping-hero-title {
        font-size: 1.75rem;
    }
    
    .shipping-info-card {
        padding: 1.5rem;
    }
    
    .shipping-icon {
        width: 50px;
        height: 50px;
    }
}

/* Returns & Exchanges Page Styles */
.returns-page-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.returns-hero-section {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.returns-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.returns-hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.returns-hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.returns-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.returns-content-section {
    padding: 2rem 0 4rem;
}

.returns-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.returns-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.returns-section {
    text-align: center;
    margin-bottom: 1rem;
}

.returns-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.returns-info-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.returns-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.returns-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.returns-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.returns-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin: 1.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.returns-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0 0 1rem;
    font-weight: 400;
}

.returns-content p:last-child {
    margin-bottom: 0;
}

.returns-steps {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.returns-steps li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.returns-steps li:last-child {
    margin-bottom: 0;
}

.returns-notes {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.returns-notes li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.returns-notes li:last-child {
    margin-bottom: 0;
}

.returns-thanks {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dc3545;
    margin: 1rem 0 0;
    font-weight: 500;
    font-style: italic;
}

/* Responsive Design for Returns Page */
@media (max-width: 768px) {
    .returns-hero-title {
        font-size: 2rem;
    }
    
    .returns-hero-subtitle {
        font-size: 1rem;
    }
    
    .returns-info-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .returns-icon {
        margin: 0 auto;
    }
    
    .returns-content h2 {
        font-size: 1.25rem;
    }
    
    .returns-content h3 {
        font-size: 1.1rem;
    }
    
    .returns-content p {
        font-size: 1rem;
    }
    
    .returns-steps li,
    .returns-notes li {
        font-size: 1rem;
    }
    
    .returns-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .returns-page-wrapper {
        padding: 1rem 0;
    }
    
    .returns-hero-section {
        padding: 2rem 0 1rem;
    }
    
    .returns-hero-title {
        font-size: 1.75rem;
    }
    
    .returns-info-card {
        padding: 1.5rem;
    }
    
    .returns-icon {
        width: 50px;
        height: 50px;
    }
    
    .returns-content h2 {
        font-size: 1.1rem;
    }
    
    .returns-content h3 {
        font-size: 1rem;
    }
    
    .returns-content p {
        font-size: 0.95rem;
    }
    
    .returns-steps li,
    .returns-notes li {
        font-size: 0.95rem;
    }
    
    .returns-intro {
        font-size: 1rem;
    }
}