:root {
    /* Theme: SOFT */
    --mf-surface-bg: #F7F7F7;
    --mf-pastel-accent: #78C0A8; /* Soft Teal/Green */
    --mf-text-main: #333333;
    
    /* Visuals */
    --mf-shadow-raised: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --mf-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Fonts */
    --mf-font-primary: 'Fjalla One', sans-serif;
    --mf-font-secondary: 'Mulish', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Base Styles */
h1, h2, h3 {
    margin-top: 0;
}

/* Gallery System */
.mf-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    z-index: 1;
}

.mf-main-view {padding-bottom: 100% }

#mf-pic-1:checked ~ .mf-main-view #mf-slide-1,
#mf-pic-2:checked ~ .mf-main-view #mf-slide-2,
#mf-pic-3:checked ~ .mf-main-view #mf-slide-3,
#mf-pic-4:checked ~ .mf-main-view #mf-slide-4 {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Thumbnail Styling */
.mf-thumb-label {
    border-color: #e5e7eb;
    box-sizing: border-box;
}

#mf-pic-1:checked ~ .mf-thumb-row label[for="mf-pic-1"],
#mf-pic-2:checked ~ .mf-thumb-row label[for="mf-pic-2"],
#mf-pic-3:checked ~ .mf-thumb-row label[for="mf-pic-3"],
#mf-pic-4:checked ~ .mf-thumb-row label[for="mf-pic-4"] {
    border-color: var(--mf-pastel-accent);
    box-shadow: 0 2px 4px rgba(120, 192, 168, 0.4);
    transform: translateY(-2px);
}

.mf-thumb-label:hover {
    border-color: #d1d5db;
}

/* CTA Interaction */
.mf-purchase-link:hover {
    box-shadow: var(--mf-shadow-hover);
    transform: translateY(-3px);
    filter: brightness(1.03);
    text-decoration: none;
}
.mf-purchase-link:active {
    transform: translateY(0);
    box-shadow: var(--mf-shadow-raised);
}

/* Review Adjustments */
.mf-feedback-item {
    transition: transform 0.2s ease;
}
.mf-feedback-item:hover {
    transform: translateX(4px);
}