        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f4f0;
            color: #2d2a24;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #b4756a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8f4e44;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1f1b17;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        :root {
            --primary: #b4756a;
            --primary-dark: #8f4e44;
            --secondary: #e8d5c9;
            --accent: #d4a89a;
            --bg-light: #fefcf9;
            --bg-card: #ffffff;
            --text-main: #2d2a24;
            --text-light: #6b5f55;
            --border: #e6ddd6;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 16px;
        }
        header {
            padding: 1.5rem 0 1rem;
            border-bottom: 2px solid var(--border);
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--primary-dark);
            background: linear-gradient(135deg, #b4756a, #8f4e44);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--primary);
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border);
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            font-size: 1.4rem;
            cursor: pointer;
            color: var(--text-main);
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 1.2rem;
        }
        nav a {
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: var(--secondary);
            color: var(--primary-dark);
            text-decoration: none;
        }
        nav a.active {
            background: var(--primary);
            color: #fff;
        }
        .breadcrumb {
            font-size: 0.85rem;
            padding: 0.6rem 0 1.2rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            width: 100%;
        }
        .breadcrumb span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--primary-dark);
            font-weight: 600;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 860px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        article {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 1.8rem 2rem 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
            line-height: 1.15;
        }
        article h1::before {
            content: "👗 ";
            font-size: 2.4rem;
        }
        .byline {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 1rem;
        }
        .byline i {
            margin-right: 0.3rem;
        }
        article h2 {
            font-size: 1.9rem;
            margin: 2.5rem 0 0.8rem;
            padding-top: 0.5rem;
            border-top: 2px solid var(--secondary);
        }
        article h2::before {
            content: "✨ ";
        }
        article h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.6rem;
            color: var(--primary-dark);
        }
        article h4 {
            font-size: 1.15rem;
            margin: 1.5rem 0 0.4rem;
            color: var(--text-light);
            font-weight: 600;
        }
        article p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        article img.featured {
            margin: 1.8rem 0 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            width: 100%;
        }
        .highlight-box {
            background: var(--secondary);
            border-left: 5px solid var(--primary);
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem 1.5rem;
            margin: 1rem 0 1.5rem;
        }
        .inline-list li {
            padding: 0.3rem 0 0.3rem 1.8rem;
            position: relative;
        }
        .inline-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
        @media (max-width: 540px) {
            .inline-list {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.2rem 1rem 2rem;
            }
            article h1 {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            article h3 {
                font-size: 1.2rem;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.4rem 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid var(--secondary);
            color: var(--primary-dark);
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebe6;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: block;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.3rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: var(--bg-light);
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.6rem 1.2rem;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--secondary);
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 500px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            background: var(--bg-light);
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--primary);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.6rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
            font-weight: 600;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: var(--primary-dark);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e0d5ce;
            cursor: pointer;
            padding: 0.3rem 0;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #e8b84b;
            transform: scale(1.1);
        }
        footer {
            border-top: 2px solid var(--border);
            padding: 2rem 0 1.5rem;
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            font-size: 0.95rem;
            background: var(--bg-card);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            width: 100%;
        }
        friend-link a {
            font-weight: 500;
            color: var(--text-light);
        }
        friend-link a:hover {
            color: var(--primary);
        }
        .copyright {
            width: 100%;
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            margin-top: 0.5rem;
        }
        .copyright strong {
            color: var(--text-main);
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.3rem;
                gap: 0.3rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            header {
                align-items: center;
            }
        }
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary-dark);
            border-radius: 30px;
            padding: 0.2rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-muted {
            color: var(--text-light);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        :focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
        @media (max-width: 420px) {
            body {
                padding: 0 0.6rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form input {
                min-width: 120px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
