* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}
nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.logo {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    text-decoration: none;
}
.logo img {
    width: 65px;
    height: auto;
    display: block;
}
.logo-text {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #ff9143;
    letter-spacing: 2px;
    line-height: 1;
    display: block;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
}
.nav-menu li { white-space: nowrap; }
.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}
.nav-menu a:hover,
.nav-menu a.active { color: #ff9143; }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff9143;
    cursor: pointer;
}
main { margin-top: 80px; }
.container {
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
    padding: 0 2rem;
    margin-top: 150px;
}
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff5f2 100%);
}
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}
.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-button {
    display: inline-block;
    background: #ff9143;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
/*.lifestyle-section { padding: 4rem 0; }*/
.lifestyle-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff9143;
}
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.lifestyle-photo {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lifestyle-photo-logo {
    height: 300px;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    background-repeat: no-repeat;
}
.lifestyle-photo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
    z-index: 1;
}
.lifestyle-photo div {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.lifestyle-photo:hover { transform: scale(1.05); }
.purse-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-items: center;
    align-items: stretch;
}
/* --- PURSE CARD SIZING --- */
/* Desktop default: largest */
.purse-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    height: auto;
}
.purse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.purse-image,
.purse-detail-image {
    width: 100%;
    max-width: 476px;
    aspect-ratio: 476 / 600;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 600px;
    min-height: 200px;
    border-radius: 0;
    overflow: hidden;
}
.purse-image.card {
    height: 400px;
    max-width: 350px;
    aspect-ratio: 4 / 5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}
h3.claire-bear-title {
/*    white-space: nowrap;*/
}
.purse-detail > div {
    border-radius: 0;
    overflow: hidden;
}
.purse-image.skeleton, .purse-detail-image.skeleton {
    background-image: url('photos/skeleton_home_600.jpg');
}
.purse-image.crossbody, .purse-detail-image.crossbody {
    background-image: url('photos/crossbody_home.jpg');
}
.purse-image.pleated, .purse-detail-image.pleated {
    background-image: url('photos/red_pleated_home_600.jpg');
}
.purse-image.bucket, .purse-detail-image.bucket {
    background-image: url('photos/bucket_home_600.jpg');
}
.purse-info {
    padding: 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.purse-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.purse-info p {
    color: #666;
    font-size: 0.9rem;
}
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.content-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}
.content-section h2 {
    color: #ff9143;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}
.content-section p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}
.content-section.bottom-margin {
    margin-bottom: 10rem; /* Adjust as needed for spacing */
}
.content-section.bottom-padding {
    padding-bottom: 3.5rem; /* Ensures space above vegan/donation info */
}
.process-flex, .about-flex {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}
.process-copy, .about-copy {
    flex: 1;
    min-width: 260px;
    max-width: 600px;
}
.process-image-container, .about-image-container {
    flex: 0 0 320px;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.responsive-side-image {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: #f8f8f8;
    object-fit: cover;
    display: block;
    overflow: hidden;
}
.purse-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.purse-detail-info h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.price {
    font-size: 1.5rem;
    color: #ff9143;
    font-weight: bold;
    margin-bottom: 1rem;
}
.purse-gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.thumb {
    width: 70px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s ease, transform 0.2s ease;
}
.thumb:hover, .thumb.active {
    border: 2px solid #ff9143;
    transform: scale(1.1);
}
/* --- TABLET --- */
@media (max-width: 1100px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .process-flex, .about-flex {
        flex-direction: column;
    }
    .process-copy, .about-copy {
        max-width: 100%;
    }
    .process-image-container, .about-image-container {
        max-width: 100%;
        width: 100%;
        margin-top: 2rem;
    }
    .responsive-side-image {
        max-width: 100%;
    }
    .purse-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .purse-image,
    .purse-detail-image {
        max-width: 400px;
        height: 500px;
        min-height: 180px;
    }
    .purse-image.card {
        height: 300px;
        max-width: 250px;
    }
    .purse-card {
        min-height: 300px;
        max-width: 250px;
        height: auto;
    }
}
/* --- SMALL TABLET / MOBILE --- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    .nav-menu.active {
        display: flex;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    .lifestyle-photo {
        height: 500px;
    }
    .purse-image,
    .purse-detail-image {
        max-width: 350px;
        height: 500px;
        min-height: 150px;
    }
    .purse-image.card {
        height: 250px;
        max-width: 200px;
    }
    .purse-card {
        min-height: 250px;
        max-width: 200px;
        height: auto;
    }
}
/* --- MOBILE --- */
@media (max-width: 600px) {
    .responsive-side-image {
       /* max-width: 95vw;*/
    }
    .purse-image,
    .purse-detail-image {
        height: 500px;
        min-height: 250px;
    }
    .purse-image.card {
        height: 250px;
        max-width: 100vw;
    }
    .purse-card {
        /*min-height: 500px;*/
        max-width: 100vw;
        height: auto;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .lifestyle-section h2 {
        font-size: 2rem;
    }
    .purse-gallery {
        grid-template-columns: 1fr;
    }
    .purse-card {
        min-height: 100px;
        height: auto;
    }
}

.donation-info {
    margin: 2rem 0 0 0;
    padding: 1.2rem 1.5rem;
    background: #ff9143;
    border-left: none;
    border-radius: 0 0 8px 8px;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    width: 100%;
}
.donation-info a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.vegan-info {
    margin: 1.5rem 0 0 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #333;
    text-align: center;
}