/** Shopify CDN: Minification failed

Line 779:19 Unexpected ","

**/
/* ============================================
   SECTION - EDUT (BENEFITS)
   ============================================ */

.benefits-section {
    padding: 50px 30px;
    background: linear-gradient(135deg, #EDD5E1 0%, #F5E6F0 100%);
}

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

.benefits-title {
    text-align: center;
    font-size: 36px;
    color: #8B6B8F;
    margin-bottom: 40px;
    font-weight: normal;
    font-style: italic;
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(167, 139, 190, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h3 {
    font-size: 18px;
    color: #A78BBE;
    margin-bottom: 10px;
    font-weight: normal;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* ============================================
   SECTION - BRÄNDIN TARINA (BRAND STORY)
   ============================================ */

.brand-story-section {
    padding: 60px 30px;
    background: var(--white);
}

.brand-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* BRAND STORY - PAREMPI RESPONSIVE */
@media (max-width: 768px) {
    .brand-story-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* ABOUT STORE - PAREMPI RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-image {
        font-size: 80px;
    }
}

/* CONTACT PAGE - PAREMPI RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.brand-story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.brand-story-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.placeholder {
    font-size: 120px;
    text-align: center;
    opacity: 0.6;
}

.brand-story-content h2 {
    font-size: 36px;
    color: #8B6B8F;
    margin-bottom: 20px;
    font-weight: normal;
}

.brand-story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.brand-story-content .button-primary {
    margin-top: 15px;
}

/* ============================================
   SECTION - SUOSITUIMMAT TUOTTEET
   ============================================ */

.featured-products-section {
    padding: 50px 30px;
    background: var(--white);
}

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

.featured-title {
    text-align: center;
    font-size: 36px;
    color: #8B6B8F;
    margin-bottom: 40px;
    font-weight: normal;
    font-style: italic;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.featured-product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(167, 139, 190, 0.2);
}

.featured-product-image {
    width: 100%;
    height: 250px;
    background: #EDD5E1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.featured-product-card h3 {
    padding: 15px;
    font-weight: normal;
    color: #333;
    font-size: 16px;
}

.featured-product-card .price {
    padding: 0 15px;
    color: #A78BBE;
    font-weight: bold;
    font-size: 18px;
}

.featured-product-card a {
    display: block;
    margin: 10px 15px 15px;
}

.view-all-featured {
    text-align: center;
    margin-top: 30px;
}

.view-all-featured .button-primary {
    padding: 12px 30px;
}

/* ============================================
   SECTION - FOOTER
   ============================================ */

.footer {
    background-color: #A78BBE;
    color: var(--white);
    padding: 40px 30px 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.95;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 12px;
    opacity: 0.9;
}

/* ============================================
   SECTION - HEADER
   ============================================ */

.header-section {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.announcement-bar {
    background-color: #A78BBE;
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 20px;
    gap: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 250px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #A78BBE;
    box-shadow: 0 0 5px rgba(167, 139, 190, 0.3);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s;
}

.search-btn:hover {
    transform: scale(1.1);
}

.logo {
    text-align: center;
    flex: 1;
}

.logo h1 {
    font-size: 32px;
    color: #A78BBE;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo h1 a {
    text-decoration: none;
    color: #A78BBE;
    transition: color 0.3s;
}

.logo h1 a:hover {
    color: #8B6B8F;
}

.tagline {
    color: #A78BBE;
    font-size: 12px;
    letter-spacing: 1px;
    font-style: italic;
    opacity: 0.9;
}

.header-icons {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.icon-link {
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

.icon-link:hover {
    color: #A78BBE;
    transform: scale(1.1);
}

.main-nav {
    background-color: #A78BBE;
    padding: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav li {
    flex: 1;
    text-align: center;
    min-width: 80px;
}

.main-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 10px;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: #8B6B8F;
}

/* ============================================
   SECTION - HERO BANNER
   ============================================ */

.hero-section {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 1;
    max-width: 40%;
}

.hero-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: normal;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
    font-style: italic;
}

.hero-image {
    font-size: 120px;
    opacity: 0.8;
    flex: 1;
    text-align: right;
}

.cta-button {
    background-color: #A78BBE;
    color: var(--white);
    border: none;
    padding: 12px 25px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #8B6B8F;
}


/* ============================================
   SECTION - KUVAGALLERIA
   ============================================ */

.images-section {
    padding: 50px 30px;
    background: linear-gradient(135deg, #F9F7FB 0%, var(--white) 100%);
}

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

.images-title {
    text-align: center;
    font-size: 36px;
    color: #8B6B8F;
    margin-bottom: 40px;
    font-weight: normal;
    font-style: italic;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(167, 139, 190, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    color: var(--white);
    font-weight: normal;
    text-align: center;
    font-size: 18px;
}

/* ============================================
   SECTION - MIELIALAKATEGORIAT
   ============================================ */

.mood-categories-section {
    padding: 50px 30px;
    background: var(--white);
}

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

.mood-title {
    text-align: center;
    font-size: 36px;
    color: #8B6B8F;
    margin-bottom: 10px;
    font-weight: normal;
    font-style: italic;
}

.mood-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mood-card {
    text-decoration: none;
    cursor: pointer;
}

.mood-box {
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mood-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(167, 139, 190, 0.3);
}

.mood-label {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.95;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.mood-name {
    font-size: 28px;
    font-weight: normal;
}

/* ============================================
   RESPONSIVE - SECTIONS
   ============================================ */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-story-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        padding: 15px 30px;
        margin-bottom: 15px;
    }
    
    .search-form {
        display: none;
    }
    
    .header-icons {
        justify-content: center;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        margin: 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefits-grid,
    .featured-grid,
    .images-grid,
    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-story-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 12px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .main-nav a {
        font-size: 11px;
        padding: 12px 8px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-image {
        font-size: 80px;
    }
    
    .featured-title,
    .images-title,
    .mood-title,
    .benefits-title {
        font-size: 28px;
    }
    
    .benefits-grid,
    .featured-grid,,
    .images-grid,
    .mood-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-product-image,
    .image-card {
        height: 200px;
    }
    
    .brand-story-content {
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}

/* ============================================
   ANIMAATIOT JA SIIRTYMÄT
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   DARK MODE (VALINNAINEN)
   ============================================ */

@media (prefers-color-scheme: dark) {
    .benefit-card,
    .featured-product-card,
    .collection-card {
        background: #2a2a2a;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .benefit-card p,
    .product-description {
        color: #000000;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .announcement-bar,
    .header-section,
    .main-nav,
    .footer {
        display: none;
    }
    
    .hero-section,
    .benefits-section,
    .featured-products-section,
    .images-section,
    .mood-categories-section {
        page-break-inside: avoid;
    }
}