
:root {
    --primary: #ff6b6b;
    --dark: #2d3436;
    --text: #636e72;
    --bg: #f5f6fa;
    --white: #ffffff;
    --border: #dfe6e9;
}

*, *::before, *::after { box_sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8; 
}


.container {
    max-width: 1100px;
    width: 92%;
    margin: 0 auto;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }


.site-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 900; 
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-search {
    background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--dark);
}

.btn-user {
    background: var(--primary); color: white; padding: 8px 20px;
    border-radius: 50px; font-weight: 700; font-size: 0.9rem;
}


.home-container { padding: 40px 0; }


.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px;
}

.recipe-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    transition: transform 0.3s;
    display: flex; flex-direction: column;
}

.recipe-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

.card-image { height: 200px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.recipe-card:hover .card-image img { transform: scale(1.05); }

.card-content { padding: 20px; flex-grow: 1; }
.card-cat { font-size: 0.75rem; text-transform: uppercase; color: var(--primary); font-weight: 800; display: block; margin-bottom: 5px; }
.card-title { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }


.main-content-area {
    margin-top: 40px;
    margin-bottom: 60px;
}

.single-card {
    background: var(--white);
    padding: 50px; 
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    max-width: 850px; 
    margin: 0 auto;   
}


.entry-header { text-align: center; margin-bottom: 30px; }
.entry-cat a { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; }
.entry-title { font-size: 2.5rem; color: var(--dark); font-weight: 900; line-height: 1.2; margin: 10px 0 15px; }
.entry-meta { color: #888; font-size: 0.9rem; font-weight: 600; }
.meta-item { margin: 0 10px; display: inline-flex; align-items: center; gap: 5px; }


.entry-image-box {
    width: 100%;
    height: 450px; 
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.entry-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


.entry-content { font-size: 1.15rem; color: #444; }
.entry-content p { margin-bottom: 25px; }
.entry-content h2, .entry-content h3 { color: var(--dark); margin-top: 40px; margin-bottom: 15px; font-weight: 800; }
.entry-content img { border-radius: 8px; margin: 20px 0; }
.entry-content ul, .entry-content ol { margin-bottom: 25px; padding-left: 20px; }


.tags-list { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag-icon { color: var(--primary); font-weight: bold; }
.tags-list a { background: #f1f2f6; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-right: 5px; }
.tags-list a:hover { background: var(--primary); color: white; }


.comments-area { max-width: 850px; margin: 50px auto; }
#respond { background: #fff5eb; padding: 30px; border-radius: 8px; margin-bottom: 40px; border: 1px solid #faeadd; }
.comment-reply-title { font-size: 1.4rem; font-weight: 800; color: #5d4037; text-transform: uppercase; margin-bottom: 5px; }
.comment-notes { font-size: 0.85rem; color: #8d6e63; margin-bottom: 20px; }
.rating-box-input { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #5d4037; margin-bottom: 20px; }
.stars-input { color: #ff9f43; font-size: 18px; }


.input-row { display: flex; gap: 15px; margin-bottom: 15px; }
.input-row input { flex: 1; width: 100%; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #e0cbbd; border-radius: 5px; font-weight: 600; color: #4e342e; }
textarea { min-height: 100px; resize: vertical; }
.submit-btn { background: var(--primary); color: white; border: none; padding: 12px 30px; border-radius: 50px; font-weight: 800; text-transform: uppercase; cursor: pointer; float: right; }



.comments-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); border-bottom: 2px solid var(--border); padding-bottom: 15px; margin-bottom: 30px; }
.comment-list { list-style: none; padding: 0; }

.comment-body-custom {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.comment-avatar-col img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

.comment-content-col {
    flex-grow: 1; 
}


.comment-header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 10px;
    flex-wrap: wrap; 
}

.header-meta {
    display: flex;
    flex-direction: column; 
}

.fn { font-size: 1rem; font-weight: 800; color: var(--dark); font-style: normal; line-height: 1.2; }
.comment-date { font-size: 0.75rem; color: #999; font-weight: 600; text-transform: uppercase; }


.comment-rating-display {
    color: #ff9f43; 
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.comment-text p { font-size: 1rem; color: #555; margin: 0 0 10px; line-height: 1.6; }

.reply a {
    font-size: 0.7rem; font-weight: 800; color: var(--primary); text-transform: uppercase;
    border: 1px solid var(--border); padding: 4px 15px; border-radius: 20px; transition: 0.3s;
}
.reply a:hover { background: var(--primary); color: white; border-color: var(--primary); }


@media (max-width: 768px) {
    .comment-header {
        align-items: flex-start; 
    }
    .comment-rating-display {
        font-size: 14px; 
    }
}

.stars-input-wrapper {
    display: flex;
    gap: 5px;
}

.star-click {
    font-size: 24px;
    color: #ff9f43; 
    cursor: pointer; 
    transition: transform 0.2s;
}

.star-click:hover {
    transform: scale(1.2); 
}




.site-footer {
    margin-top: 100px; 
    position: relative;
}


.newsletter-box {
    background-color: #fff5eb; 
    background-image: url('https://www.transparenttextures.com/patterns/food.png'); 
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: -60px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #faeadd;
    
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.newsletter-content .sub-title {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #2c3e50; 
    margin: 0 0 10px;
    font-weight: 900;
}

.newsletter-content p { color: #666; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }


.newsletter-form-wrapper { width: 100%; max-width: 500px; }
.yummly-newsletter {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.yummly-newsletter input {
    flex: 1;
    border: none;
    background: none;
    padding: 15px 25px;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.yummly-newsletter button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.yummly-newsletter button:hover {
    background: #2c3e50; 
    transform: translateY(-2px);
}



.footer-main {
    background-color: #231f20; 
    color: #b0b0b0;
    padding-top: 100px; 
    padding-bottom: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 250px; }


.footer-logo {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.about-col p { line-height: 1.8; font-size: 0.95rem; opacity: 0.8; }


.links-col h3, .social-col h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}


.links-col h3::after, .social-col h3::after {
    content: '';
    display: block;
    width: 40px; height: 3px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 5px;
}

.footer-menu { list-style: none; padding: 0; }
.footer-menu li { margin-bottom: 12px; }
.footer-menu a {
    color: #b0b0b0; text-decoration: none; transition: 0.3s; font-size: 0.95rem;
}
.footer-menu a:hover { color: var(--primary); padding-left: 5px; }


.social-col p { margin-bottom: 20px; opacity: 0.8; }

.social-icons { display: flex; gap: 10px; }

.social-btn {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1); 
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(360deg); 
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}


.footer-bottom {
    background: #1a1718; 
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.heart { color: var(--primary); animation: beat 1s infinite; display: inline-block; }

@keyframes beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}


@media (max-width: 768px) {
    .newsletter-box { padding: 40px 20px; margin-bottom: -40px; }
    .newsletter-content h2 { font-size: 1.8rem; }
    .yummly-newsletter { flex-direction: column; padding: 15px; border-radius: 20px; }
    .yummly-newsletter input { text-align: center; margin-bottom: 10px; padding: 10px; }
    .yummly-newsletter button { width: 100%; }
    
    .footer-main { padding-top: 80px; text-align: center; }
    .footer-grid { flex-direction: column; gap: 40px; }
    .links-col h3::after, .social-col h3::after { margin: 10px auto; } 
    .social-icons { justify-content: center; }
}

@media (max-width: 768px) {
    .header-grid { flex-direction: column; gap: 15px; }
    .recipe-grid { grid-template-columns: 1fr; } 
    .single-card { padding: 30px 20px; }
    .entry-image-box { height: 250px; } 
    .entry-title { font-size: 1.8rem; }
    .input-row { flex-direction: column; }
    .footer-grid { flex-direction: column; text-align: center; }
}


.account-container {
    display: flex;
    gap: 40px;
    margin: 60px auto;
    max-width: 1000px;
}


.account-sidebar { flex: 0 0 280px; }
.profile-card {
    background: white; padding: 40px 20px; text-align: center;
    border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}
.profile-avatar img {
    border-radius: 50%; width: 120px; height: 120px;
    border: 4px solid var(--primary); padding: 3px;
    margin-bottom: 15px;
}
.profile-name { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin: 0; }
.profile-email { color: #888; font-size: 0.9rem; margin-bottom: 25px; }
.btn-logout {
    display: inline-block; padding: 10px 30px; border: 1px solid var(--primary);
    color: var(--primary); border-radius: 30px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
}
.btn-logout:hover { background: var(--primary); color: white; }


.account-content { flex: 1; }


.account-tabs { display: flex; gap: 20px; border-bottom: 2px solid #eee; margin-bottom: 30px; }
.tab-btn {
    background: none; border: none; padding: 15px 0; font-size: 1.1rem;
    font-weight: 700; color: #999; cursor: pointer; position: relative;
    top: 2px;
}
.tab-btn.active { color: var(--dark); border-bottom: 2px solid var(--primary); }

.tab-content { display: none; animation: fadeIn 0.3s; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


.small-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.small-grid .card-image { height: 150px; }
.small-grid .card-title { font-size: 1rem; }
.btn-fav {
    background: none; border: none; cursor: pointer; color: #ccc; font-weight: 700;
    display: flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 0.85rem;
}
.btn-fav.active { color: var(--primary); }
.no-favs { background: #fff5eb; padding: 30px; border-radius: 8px; color: #8d6e63; }
.btn-browse { display: inline-block; margin-top: 15px; font-weight: 800; color: var(--primary); }


.settings-form { background: white; padding: 30px; border-radius: 8px; border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--dark); font-size: 0.9rem; }
.settings-form input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; }
.separator { margin: 30px 0; border: 0; border-top: 1px solid #eee; }
.small-text { font-size: 0.8rem; color: #999; margin-top: -5px; margin-bottom: 15px; }
.alert { padding: 15px; border-radius: 5px; margin-bottom: 20px; font-weight: 700; }
.alert.success { background: #e8f5e9; color: #2e7d32; }
.alert.error { background: #ffebee; color: #c62828; }


@media (max-width: 768px) {
    .account-container { flex-direction: column; }
    .account-sidebar { width: 100%; }
}

.login-container {
    min-height: 70vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
    padding: 40px 20px;
}

.auth-wrapper {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h2 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.auth-header p { color: #888; font-size: 0.95rem; }


.auth-tabs {
    display: flex; border-bottom: 2px solid #f0f0f0; margin-bottom: 30px;
}
.auth-tab {
    flex: 1; padding: 15px; background: none; border: none; font-size: 1rem;
    font-weight: 700; color: #aaa; cursor: pointer; border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.auth-tab.active { color: var(--dark); border-bottom-color: var(--primary); }


.auth-form { display: none; animation: fadeIn 0.3s; }
.auth-form.active { display: block; } 
#login-form { display: block; } 

.form-group label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.full-width { width: 100%; margin-top: 10px; padding: 15px; font-size: 1rem; }


.alert { padding: 15px; border-radius: 6px; margin-bottom: 20px; font-weight: 600; font-size: 0.9rem; text-align: center; }
.alert.error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }


   

.site-header ul, 
.header-grid ul {
    list-style: none !important; 
    margin: 0;
    padding: 0;
    display: flex;               
    align-items: center;         
    gap: 25px;                   
}


.site-header ul li a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;            
    text-transform: uppercase;   
    color: var(--dark);          
    transition: color 0.3s;
}


.site-header ul li a:hover {
    color: var(--primary);       
}




.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-icon {
    background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark);
    display: flex; align-items: center; gap: 5px;
}
.login-text { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }


.user-account-trigger img {
    border-radius: 50%;
    border: 2px solid var(--primary);
    width: 40px; height: 40px;
    object-fit: cover;
    transition: transform 0.2s;
}
.user-account-trigger:hover img { transform: scale(1.1); }



.card-image, .entry-image-box { position: relative; } 

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    z-index: 10;
}

.wishlist-btn .dashicons {
    font-size: 22px;
    color: #ccc; 
    margin-top: 3px; 
    transition: color 0.3s;
}


.wishlist-btn.active .dashicons {
    color: #ff6b6b; 
}
.wishlist-btn.active {
    transform: scale(1.1);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}



.header-actions {
    display: flex; align-items: center; gap: 15px;
}


.header-icon-btn {
    background: none; border: none; cursor: pointer;
    font-size: 24px; color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    transition: all 0.3s;
}
.header-icon-btn:hover {
    background-color: #f0f0f0; color: var(--primary);
}


.wishlist-header-btn:hover {
    color: #ff6b6b; 
    background-color: #fff0f0;
}


.btn-login-styled {
    display: flex; align-items: center; gap: 8px;
    background-color: var(--dark); 
    color: white;
    padding: 10px 25px;
    border-radius: 50px; 
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-login-styled:hover {
    background-color: var(--primary); 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
    color: white;
}

.btn-login-styled .dashicons { font-size: 18px; }



.user-profile-link { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); }
.user-profile-link img { border-radius: 50%; border: 2px solid var(--primary); }
.user-name-header { font-size: 0.9rem; }



.search-bar-container {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: absolute;
    top: 100%; 
    left: 0; width: 100%;
    display: none; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 900;
}

.search-bar-container.active {
    display: block; animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.search-form .container { display: flex; gap: 10px; }
.search-field {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}
.search-field:focus { border-color: var(--primary); }

.search-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.search-submit:hover { background: var(--primary-hover); }

.hero-wrapper {
    padding: 40px 0;
    background: linear-gradient(to bottom, #fff, #f9f9f9); 
}

.hero-header {
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
}
.hero-header h3 { font-size: 1.5rem; font-weight: 900; color: var(--dark); text-transform: uppercase; margin: 0; }
.hero-header .line { flex: 1; height: 2px; background: #eee; }



.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr; 
    gap: 30px;
    height: 450px; 
}


.hero-main-post { height: 100%; border-radius: 15px; overflow: hidden; position: relative; }
.hero-img-big { height: 100%; width: 100%; position: relative; }
.hero-img-big img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hero-main-post:hover .hero-img-big img { transform: scale(1.05); }


.hero-overlay-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 80px 30px 30px;
    color: white;
}
.hero-cat { background: var(--primary); padding: 5px 12px; border-radius: 4px; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; display: inline-block; margin-bottom: 10px; }
.hero-overlay-info h2 { font-size: 2rem; margin: 0 0 10px; line-height: 1.2; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.read-more { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; color: #ffbcbc; display: flex; align-items: center; gap: 5px; }



.hero-side-posts {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    gap: 15px;
}

.hero-small-card {
    display: flex; gap: 15px; align-items: center;
    background: white; padding: 10px; border-radius: 10px;
    border: 1px solid #f0f0f0; transition: 0.3s;
    height: 32%; 
}
.hero-small-card:hover { transform: translateX(-5px); border-color: var(--primary); }

.small-img { width: 90px; height: 90px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.small-img img { width: 100%; height: 100%; object-fit: cover; }

.small-content h4 { font-size: 1rem; margin: 5px 0; line-height: 1.4; font-weight: 700; }
.small-content h4 a { color: var(--dark); }
.small-cat { color: var(--primary); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.small-date { color: #aaa; font-size: 0.75rem; display: block; }



@media (max-width: 900px) {
    .hero-grid-layout {
        grid-template-columns: 1fr; 
        height: auto; 
    }
    .hero-main-post { height: 300px; margin-bottom: 20px; }
    .hero-side-posts { gap: 20px; }
    .hero-small-card { height: auto; } 
}

.hero-fw-wrapper {
    width: 100%;
    margin-bottom: 50px;
    background: #fff;
}

.hero-fw-grid {
    display: grid;
    
    grid-template-columns: 55% 45%; 
    height: 600px; 
}


.hero-fw-item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-fw-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    transition: 0.3s;
}
.hero-fw-item:hover { background-size: 110%; }
.hero-fw-item { transition: background-size 0.5s ease; }
.hero-link-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }


.big-item { height: 100%; }
.hero-fw-content { position: absolute; bottom: 0; left: 0; padding: 30px; z-index: 3; width: 100%; }
.big-item h1 { font-size: 2.8rem; font-weight: 900; color: white; margin: 5px 0 15px; line-height: 1.1; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.big-item h1 a { color: white; text-decoration: none; }
.hero-fw-cat { background: var(--primary); color: white; padding: 5px 12px; font-weight: 800; text-transform: uppercase; font-size: 0.8rem; border-radius: 4px; display: inline-block; }
.hero-fw-meta { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.hero-heart-pos { position: absolute; top: 20px; right: 20px; z-index: 10; }


.hero-fw-col-right {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr;    
    
    gap: 2px; 
    background: white; 
    border-left: 2px solid white; 
}


.small-item { position: relative; }

.small-item .hero-fw-content { padding: 20px; } 

.hero-fw-cat-small {
    color: #ffbcbc; 
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase; display: block; margin-bottom: 5px;
}

.small-item h3 { 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin: 0; 
    line-height: 1.3;
}
.small-item h3 a { color: white; text-decoration: none; }


@media (max-width: 900px) {
    .hero-fw-grid {
        grid-template-columns: 1fr; 
        height: auto;
    }
    .big-item { height: 400px; }
    
    .hero-fw-col-right {
        border-left: none;
        height: auto;
        
        
        grid-template-rows: 250px 250px; 
    }
}

@media (max-width: 600px) {
    
    .hero-fw-col-right {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .small-item { height: 250px; border-bottom: 2px solid white; }
}

.yummly-special-sec {
    margin: 60px 0;
    width: 100%;
}


.sec-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.sec-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
}


.sec-header h3::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--sec-underline, #fbd560); 
    opacity: 0.6;
    z-index: -1;
    transform: rotate(-1deg); 
}

.sec-header .arrow {
    color: #cc5500; 
    font-weight: 300;
    margin-left: 5px;
}



.sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}


.sec-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.sec-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.sec-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.sec-img img { width: 100%; height: 100%; object-fit: cover; }

.sec-heart { position: absolute; top: 10px; right: 10px; z-index: 10; }

.sec-content { padding: 20px; }

.sec-cat {
    color: #cc5500; 
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.sec-content h4 {
    font-size: 1.2rem;
    font-weight: 700; 
    font-family: 'Georgia', serif; 
    line-height: 1.3;
    margin: 0 0 20px;
    color: #333;
}
.sec-content h4 a { color: #333; text-decoration: none; }


.sec-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.sec-time .dashicons { font-size: 16px; position: relative; top: 3px; margin-right: 3px; }


@media (max-width: 768px) {
    .sec-grid { grid-template-columns: 1fr; } 
    .sec-header h3 { font-size: 1.5rem; }
}

.feat-split-wrapper {
    display: flex;
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: #0f1c2e; 
    min-height: 450px;
}


.feat-split-img {
    flex: 1.2; 
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}
.feat-link-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
}


.feat-split-content {
    flex: 1; 
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    color: white;
}

.feat-split-content h2 {
    font-size: 2.2rem;
    font-weight: 800; 
    font-family: 'Georgia', serif; 
    margin-bottom: 20px;
    line-height: 1.2;
}
.feat-split-content h2 a {
    color: white; text-decoration: none; transition: 0.3s;
}
.feat-split-content h2 a:hover { opacity: 0.8; }

.feat-split-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8); 
    margin-bottom: 35px;
    line-height: 1.6;
}


.feat-btn {
    background-color: #ff6b6b; 
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.feat-btn:hover {
    background-color: white;
    color: #ff6b6b;
    transform: translateY(-3px);
}


@media (max-width: 900px) {
    .feat-split-wrapper {
        flex-direction: column; 
    }
    .feat-split-img {
        height: 300px;
        flex: none; 
    }
    .feat-split-content {
        padding: 40px 20px;
    }
    .feat-split-content h2 { font-size: 1.8rem; }
}

.full-split-section {
    display: flex;
    width: 100%;
    min-height: 550px; 
    position: relative;
    
}


.full-split-section.row-reverse {
    flex-direction: row-reverse;
}


.full-split-img {
    flex: 1; 
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px; 
}
.full-link-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}


.full-split-content {
    flex: 1; 
    padding: 80px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
}


.full-split-cat {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid; 
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.full-split-content h2 {
    font-size: 3rem; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.full-split-content h2 a { text-decoration: none; transition: 0.3s; }
.full-split-content h2 a:hover { opacity: 0.7; }

.full-split-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px; 
}


.full-split-btn {
    background: var(--primary); 
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.full-split-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: white;
}


@media (max-width: 900px) {
    .full-split-section { flex-direction: column !important; height: auto; }
    .full-split-img { min-height: 350px; width: 100%; }
    .full-split-content { padding: 40px 20px; width: 100%; align-items: center; text-align: center; }
    .full-split-content h2 { font-size: 2rem; }
    .full-split-cat { margin: 0 auto 20px; }
}

.yummly-carousel-section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden; 
}


.carousel-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; padding: 0 40px; 
}
.carousel-header h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 0; }


.carousel-nav { display: flex; gap: 10px; }
.nav-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid #eee;
    background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.nav-btn:hover { border-color: var(--dark); background: var(--dark); color: white; }


.carousel-track-wrapper {
    width: 100%;
    
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    padding: 20px 40px 50px; 
    scrollbar-width: none; 
    scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none;  }


.carousel-card {
    flex: 0 0 300px; 
    scroll-snap-align: start;
    transition: transform 0.3s;
}
.carousel-card:hover { transform: translateY(-10px); }

.c-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px; 
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.c-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.carousel-card:hover .c-card-img img { transform: scale(1.1); }


.c-card-tag {
    position: absolute; top: 15px; left: 15px;
    background: #ffce00; color: #000;
    font-weight: 800; font-size: 0.75rem;
    padding: 5px 12px; border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.carousel-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin: 0; padding: 0 5px; }
.carousel-card h3 a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.carousel-card h3 a:hover { color: var(--primary); }


@media (max-width: 768px) {
    .carousel-card { flex: 0 0 80%;  }
    .c-card-img { height: 300px; }
    .carousel-header { padding: 0 20px; }
    .carousel-track { padding: 20px 20px 40px; gap: 15px; }
}




.bs-header-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 25px; flex-wrap: wrap; gap: 15px;
}
.bs-title h2 { margin: 0; font-size: 1.6rem; font-weight: 800; }


.bs-track-wrapper {
    overflow: hidden; width: 100%;
    padding: 10px 0 40px 0; 
}
.bs-track {
    display: flex; 
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: flex-start; 
}
.bs-track::-webkit-scrollbar { display: none; }


.bs-card-pro {
    flex: 0 0 290px; 
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}
.bs-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.bs-pro-img {
    height: 320px; position: relative; overflow: hidden;
}
.bs-pro-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.bs-card-pro:hover .bs-pro-img img { transform: scale(1.08); }


.bs-pro-tag {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(5px);
    color: #000; font-size: 0.7rem; font-weight: 800;
    padding: 6px 14px; border-radius: 30px; text-decoration: none;
    z-index: 2; transition: 0.3s;
}
.bs-pro-tag:hover { background: #000; color: #fff; }


.bs-pro-content { padding: 20px; text-align: left; }
.bs-pro-meta {
    display: flex; justify-content: space-between; color: #888; font-size: 0.8rem; margin-bottom: 10px;
}
.bs-pro-content h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 0 0 15px 0; font-weight: 700;
}
.bs-pro-content h3 a { color: #222; text-decoration: none; }
.bs-read-more { font-size: 0.8rem; font-weight: 800; color: #ff6b6b; text-transform: uppercase; text-decoration: none; }


.bs-tab-btn { padding: 8px 24px; border-radius: 50px; border: 1px solid #eee; background: white; cursor: pointer; transition: 0.3s; }
.bs-tab-btn.active { background: #000; color: white; border-color: #000; }
.bs-nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #eee; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.bs-nav:hover { background: #000; color: white; }

.stories-header {
    margin-bottom: 25px; text-align: center;
}
.stories-header h3 {
    font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    display: inline-block; border-bottom: 2px solid var(--primary); padding-bottom: 5px;
}


.stories-track-wrapper {
    width: 100%; overflow: hidden;
}
.stories-track {
    display: flex;
    justify-content: center; 
    gap: 25px;
    padding: 10px;
    overflow-x: auto; 
    scrollbar-width: none; 
}
.stories-track::-webkit-scrollbar { display: none; }


.story-item {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0; 
}
.story-item:hover { transform: translateY(-5px); }


.story-ring {
    width: 90px; height: 90px;
    
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    padding: 3px; 
    position: relative;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}


.story-img {
    background: white;
    width: 100%; height: 100%;
    border-radius: 50%;
    padding: 3px; 
    overflow: hidden;
}


.story-img img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.story-item:hover .story-ring {
    transform: rotate(15deg); 
}
.story-item:hover .story-img img {
    transform: scale(1.1); 
}


.story-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    text-transform: capitalize;
    text-align: center;
}


@media (max-width: 768px) {
    .stories-track {
        justify-content: flex-start; 
        padding-bottom: 20px;
    }
    .story-ring { width: 75px; height: 75px; } 
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #ff6b6b; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    
    z-index: 99999; 
    cursor: pointer;
    
    
    opacity: 0; 
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


#back-to-top .dashicons {
    font-size: 24px;
    line-height: 45px; 
}


#back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

#back-to-top:hover {
    background-color: #2c3e50;
    transform: translateY(-5px);
}



.archive-hero {
    background: #0f1c2e; 
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
    background-image: radial-gradient(circle at 20% 50%, #1a2a40 0%, #0f1c2e 100%);
}
.hero-subtitle {
    display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    color: #ff6b6b; margin-bottom: 10px; font-weight: 700;
}
.hero-title {
    font-size: 3.5rem; font-weight: 800; margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
}
.hero-stats span {
    background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px;
    font-size: 0.9rem;
}


.main-layout {
    display: flex; gap: 40px; position: relative;
    padding-bottom: 80px;
}
.recipe-sidebar {
    flex: 0 0 280px; 
}
.recipe-feed {
    flex: 1; 
}


.sidebar-inner {
    position: sticky; top: 40px; 
    background: white; border: 1px solid #eee; border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.widget-title {
    font-size: 1.1rem; font-weight: 800; margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0; padding-bottom: 10px;
}


.cat-filter-list { list-style: none; padding: 0; margin: 0; }
.cat-filter-list li { margin-bottom: 12px; }
.cat-filter-list a {
    display: flex; justify-content: space-between; align-items: center;
    text-decoration: none; color: #555; font-weight: 600; transition: 0.2s;
    padding: 8px 12px; border-radius: 8px;
}
.cat-filter-list a:hover, .cat-filter-list li.active a {
    background: #f9f9f9; color: var(--primary); transform: translateX(5px);
}
.cat-count {
    background: #eee; font-size: 0.75rem; padding: 2px 8px; border-radius: 10px; color: #888;
}


.sidebar-promo {
    margin-top: 40px; background: #fdf6e4; padding: 20px;
    border-radius: 10px; text-align: center;
}
.sidebar-promo h4 { font-size: 1rem; font-weight: 800; margin-bottom: 5px; }
.sidebar-promo p { font-size: 0.85rem; color: #666; margin-bottom: 15px; }
.sidebar-promo button {
    background: #2c3e50; color: white; border: none; padding: 10px 20px;
    border-radius: 20px; cursor: pointer; font-weight: 700; width: 100%;
}


.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.archive-grid .bs-card-pro { flex: none; width: 100%; margin-bottom: 0; }


.pagination-pro { margin-top: 60px; text-align: center; }
.pagination-pro .page-numbers {
    display: inline-block; padding: 10px 20px; margin: 0 5px;
    border: 1px solid #ddd; color: #333; text-decoration: none;
    font-weight: 700; border-radius: 50px; transition: 0.3s;
}
.pagination-pro .page-numbers.current, .pagination-pro .page-numbers:hover {
    background: #2c3e50; color: white; border-color: #2c3e50;
}


.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.archive-grid .bs-card-pro:nth-child(1) { animation-delay: 0.1s; }
.archive-grid .bs-card-pro:nth-child(2) { animation-delay: 0.2s; }
.archive-grid .bs-card-pro:nth-child(3) { animation-delay: 0.3s; }
.archive-grid .bs-card-pro:nth-child(4) { animation-delay: 0.4s; }


@media (max-width: 1024px) {
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-layout { flex-direction: column; }
    .recipe-sidebar { display: none;  }
    .archive-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
}


:root {
    --ph-bg: #0f172a;
    --ph-text: #f8fafc;
    --ph-accent: #f59e0b;
    --ph-border: rgba(255, 255, 255, 0.1);
}

.platinum-hero {
    position: relative; width: 100%; min-height: 650px; 
    background: var(--ph-bg); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--ph-text); padding: 50px 0;
}


.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.08; pointer-events: none; z-index: 1;
}
.ambient-light {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; filter: blur(120px); z-index: 0;
    animation: phFloat 10s infinite alternate ease-in-out;
}
.light-1 { top: -20%; left: -10%; background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%); }
.light-2 { bottom: -20%; right: -10%; background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%); }

.ph-container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }


.hero-tag {
    display: inline-block; padding: 6px 14px;
    background: rgba(245,158,11, 0.1); color: var(--ph-accent);
    border: 1px solid rgba(245,158,11, 0.3); border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.hero-title {
    font-size: 4rem; line-height: 1; margin: 0 0 20px 0;
    font-weight: 800; color: #fff;
}
.outline-text {
    color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.3);
    position: relative; display: block;
}

.hero-title:hover .outline-text { color: rgba(255,255,255,0.1); }

.hero-desc { font-size: 1.1rem; color: #94a3b8; max-width: 450px; line-height: 1.6; margin-bottom: 35px; }


.hero-search {
    position: relative; max-width: 400px;
    background: rgba(255,255,255,0.05); padding: 5px;
    border-radius: 60px; border: 1px solid var(--ph-border);
    display: flex; transition: 0.3s; backdrop-filter: blur(10px);
}
.hero-search:focus-within { background: rgba(255,255,255,0.1); border-color: var(--ph-accent); }
.hero-search input {
    flex: 1; background: transparent; border: none; padding: 12px 20px;
    color: #fff; font-size: 1rem; outline: none;
}
.hero-search button {
    width: 45px; height: 45px; border-radius: 50%; border: none;
    background: var(--ph-accent); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}


.hero-stats { display: flex; gap: 30px; margin-top: 40px; align-items: center; }
.stat-item b { display: block; font-size: 1.8rem; color: #fff; line-height: 1; }
.stat-item span { color: #64748b; font-size: 0.8rem; text-transform: uppercase; font-weight: 600; }
.stat-sep { width: 1px; height: 35px; background: rgba(255,255,255,0.1); }


.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.circle-backdrop {
    position: absolute; width: 450px; height: 450px;
    border: 2px solid rgba(255,255,255,0.05); border-radius: 50%;
    animation: phRotate 40s linear infinite;
}
.floating-dish {
    width: 110%; max-width: 600px; z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: transform 0.1s ease-out; 
}
.glass-card {
    position: absolute; bottom: 50px; right: 0;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1); padding: 15px 20px;
    border-radius: 16px; display: flex; align-items: center; gap: 15px;
    color: #fff; z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: phFloatCard 6s ease-in-out infinite;
}
.gc-icon { width: 40px; height: 40px; background: var(--ph-accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.gc-info b { display: block; font-size: 1rem; }
.gc-info span { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; }


@keyframes phRotate { to { transform: rotate(360deg); } }
@keyframes phFloat { 0% { transform: translate(0,0); } 100% { transform: translate(30px, 30px); } }
@keyframes phFloatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }


@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-search { margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .hero-visual { height: 400px; margin-top: 20px; }
    .floating-dish { width: 60%; }
    .glass-card { right: 10%; bottom: 0; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .circle-backdrop { width: 280px; height: 280px; }
    .glass-card { display: none; }
}

:root {
    --pg-dark: #1e1e24;
    --pg-gold: #fbbf24;
    --pg-bg: #f8f9fa;
    --pg-text: #333;
}

.platinum-grid-section {
    padding: 60px 0;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.pg-container {
    width: 90%; max-width: 1200px; margin: 0 auto;
}


.pg-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; border-bottom: 2px solid #eee; padding-bottom: 15px;
}
.pg-main-title { font-size: 1.8rem; font-weight: 800; color: var(--pg-dark); margin: 0; display: flex; align-items: center; gap: 10px; }
.pg-icon { font-size: 1.5rem; }
.pg-view-all { text-decoration: none; color: #666; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.pg-view-all:hover { color: var(--pg-gold); transform: translateX(5px); }


.pg-grid-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr; 
    gap: 30px;
    height: 550px; 
}


.pg-hero-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s;
    background: #000;
}
.pg-hero-card:hover .pg-hero-bg { transform: scale(1.05); }

.pg-hero-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pg-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.pg-hero-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px; color: #fff; z-index: 2;
}
.pg-badge {
    background: var(--pg-gold); color: #000;
    padding: 5px 12px; font-weight: 800; font-size: 0.75rem;
    text-transform: uppercase; border-radius: 4px; display: inline-block; margin-bottom: 15px;
}
.pg-hero-title { font-size: 2.5rem; line-height: 1.1; margin: 0 0 15px 0; }
.pg-hero-title a { color: #fff; text-decoration: none; transition: 0.3s; }
.pg-hero-title a:hover { color: var(--pg-gold); }

.pg-meta { display: flex; gap: 20px; font-size: 0.9rem; color: #ccc; margin-bottom: 25px; }
.pg-meta span { display: flex; align-items: center; gap: 5px; }
.pg-meta .dashicons { color: var(--pg-gold); }

.pg-btn {
    display: inline-block; background: #fff; color: #000;
    padding: 12px 30px; border-radius: 30px; font-weight: 700;
    text-decoration: none; transition: 0.3s;
}
.pg-btn:hover { background: var(--pg-gold); }


.pg-list-wrapper {
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.pg-list-header {
    font-size: 0.8rem; font-weight: 900; letter-spacing: 1px;
    color: #999; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between;
}

.pg-list-item {
    display: flex; align-items: center; gap: 15px;
    background: #fff; border: 1px solid #eee;
    padding: 15px; border-radius: 12px;
    transition: 0.3s;
    height: 31%; 
}
.pg-list-item:hover {
    border-color: var(--pg-gold);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pg-list-rank {
    font-size: 2rem; font-weight: 900;
    color: #eee; line-height: 1; width: 30px; text-align: center;
    font-family: 'Impact', sans-serif;
}
.pg-list-item:nth-child(2) .pg-list-rank { color: #ffd700; } 
.pg-list-item:nth-child(3) .pg-list-rank { color: #c0c0c0; } 
.pg-list-item:nth-child(4) .pg-list-rank { color: #cd7f32; } 

.pg-list-img {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden;
}
.pg-list-img img { width: 100%; height: 100%; object-fit: cover; }

.pg-list-info { flex: 1; }
.pg-cat-tiny { font-size: 0.7rem; text-transform: uppercase; color: var(--pg-gold); font-weight: 700; }
.pg-list-info h3 { font-size: 1rem; margin: 5px 0; line-height: 1.3; }
.pg-list-info h3 a { color: var(--pg-dark); text-decoration: none; }
.pg-list-info h3 a:hover { color: var(--pg-gold); }

.pg-mini-stars .dashicons { font-size: 12px; color: #ffc107; width: 12px; height: 12px; }


@media (max-width: 900px) {
    .pg-grid-wrapper { grid-template-columns: 1fr; height: auto; }
    .pg-hero-card { height: 400px; margin-bottom: 30px; }
    .pg-list-wrapper { gap: 15px; }
    .pg-list-item { height: auto; }
}

:root {
    --st-bg: #fff;
    --st-card-width: 200px; 
    --st-card-height: 320px; 
    --st-radius: 16px;
    --st-gradient: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
    --st-accent: #ff4757; 
}

.yummly-stories-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.stories-container {
    width: 95%; 
    max-width: 1400px;
    margin: 0 auto;
}


.stories-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding: 0 10px;
}
.stories-header h3 {
    font-size: 1.4rem; font-weight: 800; margin: 0;
    display: flex; align-items: center; gap: 10px;
}
.story-pulse {
    width: 10px; height: 10px; background: var(--st-accent);
    border-radius: 50%; display: inline-block;
    box-shadow: 0 0 0 rgba(255, 71, 87, 0.4);
    animation: pulseRed 2s infinite;
}
.scroll-hint { font-size: 0.8rem; color: #999; font-weight: 600; text-transform: uppercase; }


.stories-scroll-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 20px 5px; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}
.stories-scroll-wrapper::-webkit-scrollbar { display: none;  }


.story-card {
    flex: 0 0 var(--st-card-width);
    height: var(--st-card-height);
    position: relative;
    border-radius: var(--st-radius);
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.story-link { display: block; width: 100%; height: 100%; text-decoration: none; }


.story-image {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.story-card:hover .story-image { transform: scale(1.1); }

.story-overlay {
    position: absolute; inset: 0;
    background: var(--st-gradient);
    z-index: 1;
}


.story-top {
    position: absolute; top: 15px; left: 15px; z-index: 2;
}
.story-cat {
    background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}

.story-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 15px; z-index: 2;
    transform: translateY(5px); transition: 0.3s;
}
.story-card:hover .story-info { transform: translateY(0); }


.story-author {
    position: absolute; top: -25px; right: 15px;
    width: 40px; height: 40px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}
.story-author img {
    width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid #fff; object-fit: cover;
    display: block;
}

.story-title {
    color: #fff; font-size: 1rem; line-height: 1.3; margin: 5px 0 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; 
}

.story-meta {
    display: flex; gap: 10px; font-size: 0.75rem; color: #ddd; opacity: 0.8;
}
.story-meta span { display: flex; align-items: center; gap: 4px; }
.story-meta .dashicons { font-size: 14px; width: 14px; height: 14px; }


@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}


@media (max-width: 768px) {
    .yummly-stories-section { padding: 20px 0; }
    .story-card { flex: 0 0 140px; height: 220px; } 
    .story-title { font-size: 0.9rem; }
    .story-author { width: 32px; height: 32px; top: -20px; }
    .scroll-hint { display: none; }
}

:root {
    --ch-height: 600px; 
    --ch-gold: #fbbf24;
}

.yummly-cinematic-hero {
    position: relative;
    width: 100%;
    height: var(--ch-height);
    background: #000;
    overflow: hidden;
}


.ych-slides-container {
    width: 100%; height: 100%; position: relative;
}

.ych-slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 8s ease; 
    transform: scale(1);
    z-index: 1;
}
.ych-slide.active {
    opacity: 1; visibility: visible;
    transform: scale(1.05); 
    z-index: 2;
}

.ych-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.ych-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}


.ych-content {
    position: absolute; bottom: 120px; left: 50%; 
    transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    z-index: 3; color: #fff;
}

.ych-tag {
    background: var(--ch-gold); color: #000;
    padding: 5px 12px; font-weight: 800; text-transform: uppercase;
    font-size: 0.8rem; border-radius: 4px; display: inline-block; margin-bottom: 20px;
    opacity: 0; transform: translateY(20px); transition: 0.5s 0.3s;
}
.ych-slide.active .ych-tag { opacity: 1; transform: translateY(0); }

.ych-title {
    font-size: 3.5rem; line-height: 1.1; margin: 0 0 20px 0; font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    opacity: 0; transform: translateY(30px); transition: 0.5s 0.4s;
}
.ych-slide.active .ych-title { opacity: 1; transform: translateY(0); }

.ych-title a { color: #fff; text-decoration: none; }
.ych-title a:hover { color: var(--ch-gold); }

.ych-meta {
    display: flex; gap: 20px; color: #ddd; margin-bottom: 30px; font-size: 1rem;
    opacity: 0; transform: translateY(30px); transition: 0.5s 0.5s;
}
.ych-meta .dashicons { color: var(--ch-gold); }
.ych-slide.active .ych-meta { opacity: 1; transform: translateY(0); }

.ych-btn {
    display: inline-block; border: 2px solid #fff; color: #fff;
    padding: 12px 30px; font-weight: 700; text-transform: uppercase;
    text-decoration: none; transition: 0.3s;
    opacity: 0; transform: translateY(30px); transition: 0.5s 0.6s;
}
.ych-slide.active .ych-btn { opacity: 1; transform: translateY(0); }
.ych-btn:hover { background: #fff; color: #000; }



.ych-nav-wrapper {
    position: absolute; bottom: 20px; left: 0; right: 0;
    z-index: 10;
}
.ych-nav-items {
    display: flex; gap: 15px;
    width: 100%; max-width: 1200px; margin: 0 auto;
}

.ych-nav-item {
    flex: 1; display: flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
    padding: 10px; border-radius: 8px; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.ych-nav-item.active {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.ych-nav-img {
    width: 50px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.ych-nav-img img { width: 100%; height: 100%; object-fit: cover; }

.ych-nav-info { flex: 1; overflow: hidden; }
.ych-nav-num { font-size: 0.7rem; color: var(--ch-gold); font-weight: 700; display: block; }
.ych-nav-title {
    font-size: 0.85rem; color: #fff; margin: 2px 0 5px 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}


.ych-progress-bar {
    width: 100%; height: 2px; background: rgba(255,255,255,0.2); position: relative;
}
.ych-progress {
    width: 0; height: 100%; background: var(--ch-gold);
    transition: width 0s;
}
.ych-nav-item.active .ych-progress {
    width: 100%;
    transition: width 5s linear; 
}


@media (max-width: 768px) {
    .yummly-cinematic-hero { height: 500px; }
    .ych-title { font-size: 2rem; }
    .ych-content { bottom: 100px; text-align: center; width: 100%; }
    .ych-nav-wrapper { display: none;  }
    
    
}

:root {
    --zh-bg: #111827;
    --zh-accent: #10b981; 
    --zh-text: #fff;
    --zh-card-bg: rgba(255, 255, 255, 0.08);
}

.zenith-hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    display: flex; align-items: center;
    color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}


.zenith-bg {
    position: absolute; inset: 0; background: var(--zh-bg); z-index: 0;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.6;
    animation: zFloat 10s infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #4f46e5; } 
.blob-2 { bottom: -10%; right: -10%; width: 60vw; height: 60vw; background: #059669; animation-delay: -5s; } 
.blob-3 { top: 40%; left: 40%; width: 40vw; height: 40vw; background: #db2777; opacity: 0.4; animation-duration: 15s; } 

.blob-overlay {
    position: absolute; inset: 0;
    background: rgba(17, 24, 39, 0.7); 
    backdrop-filter: blur(20px); 
}


.zenith-container {
    position: relative; z-index: 2;
    width: 90%; max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; 
    gap: 40px;
    align-items: center;
}


.zenith-left { display: flex; flex-direction: column; gap: 20px; }
.z-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #aaa; font-weight: 700; display: block; margin-bottom: 10px; }

.z-cards-stack {
    display: flex; flex-direction: column; gap: 15px;
}
.z-card {
    display: flex; align-items: center; gap: 15px;
    background: var(--zh-card-bg);
    padding: 10px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: 0.3s; cursor: pointer;
}
.z-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px); border-color: var(--zh-accent);
}

.z-card-img { width: 50px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.z-card-img img { width: 100%; height: 100%; object-fit: cover; }

.z-card-info h4 { margin: 0 0 5px 0; font-size: 0.95rem; line-height: 1.2; }
.z-card-info h4 a { color: #fff; text-decoration: none; }
.z-rating { color: #fbbf24; font-size: 0.8rem; letter-spacing: 1px; }


.zenith-center { text-align: center; }
.z-title {
    font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.z-desc { font-size: 1.2rem; color: #94a3b8; margin-bottom: 40px; }

.z-search-form {
    max-width: 600px; margin: 0 auto 20px auto;
    background: rgba(255,255,255,0.1); padding: 8px;
    border-radius: 100px; border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px); transition: 0.3s;
}
.z-search-form:focus-within {
    background: rgba(255,255,255,0.2);
    border-color: var(--zh-accent);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}
.z-input-wrapper { display: flex; height: 50px; }
.z-search-form input {
    flex: 1; background: transparent; border: none; padding: 0 25px;
    color: #fff; font-size: 1.1rem; outline: none;
}
.z-search-form button {
    background: var(--zh-accent); color: #fff; border: none;
    padding: 0 30px; border-radius: 50px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
}
.z-search-form button:hover { background: #059669; }

.z-tags { font-size: 0.9rem; color: #aaa; }
.z-tags a { color: #fff; margin-left: 5px; text-decoration: none; opacity: 0.7; }
.z-tags a:hover { opacity: 1; text-decoration: underline; }


.zenith-right { display: flex; justify-content: flex-end; align-items: center; }

.z-logo-wrapper {
    position: relative; width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
}


.z-logo-spin-text {
    position: absolute; inset: 0;
    animation: zSpin 20s linear infinite;
}
.z-logo-spin-text svg { width: 100%; height: 100%; }
.z-logo-spin-text text { font-size: 14px; font-weight: bold; letter-spacing: 2px; fill: rgba(255,255,255,0.5); text-transform: uppercase; }


.z-logo-img {
    width: 120px; height: 120px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    animation: zPulse 3s infinite ease-in-out;
}


@keyframes zFloat { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }
@keyframes zSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes zPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }


@media (max-width: 1024px) {
    .zenith-container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .zenith-left { order: 3; align-items: center; } 
    .z-cards-stack { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .zenith-center { order: 2; }
    .zenith-right { order: 1; justify-content: center; margin-bottom: 20px; } 
    .z-title { font-size: 3rem; }
}
@media (max-width: 600px) {
    .z-search-form { flex-direction: column; background: transparent; border: none; }
    .z-input-wrapper { flex-direction: column; height: auto; gap: 10px; }
    .z-search-form input { background: rgba(255,255,255,0.1); border-radius: 50px; height: 50px; text-align: center; border: 1px solid rgba(255,255,255,0.2); }
    .z-search-form button { height: 50px; width: 100%; }
    .z-cards-stack { flex-direction: column; width: 100%; }
}

:root {
    --h14-gold: #f59e0b;
    --h14-glass: rgba(0, 0, 0, 0.4); 
}

.hollywood-hero-v14 {
    position: relative; width: 100%; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}


.hh14-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hh14-video { width: 100%; height: 100%; object-fit: cover; }
.hh14-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, #000 95%);
    z-index: 1;
}


.hh14-container {
    position: relative; z-index: 2;
    width: 95%; max-width: 1600px; margin: 0 auto;
    height: 500px; 
    display: grid;
    
    grid-template-columns: 40% 1fr 280px; 
    gap: 0; 
    align-items: center;
}


.hh14-left { 
    height: 100%; width: 100%;
    border-right: 1px solid rgba(255,255,255,0.1); 
    padding-right: 30px;
}


.hh14-ants-wrapper {
    position: relative;
    width: 100%; height: 100%;
    padding: 3px; 
    
    
    background:
        linear-gradient(90deg, var(--h14-gold) 50%, transparent 50%) top repeat-x,
        linear-gradient(90deg, var(--h14-gold) 50%, transparent 50%) bottom repeat-x,
        linear-gradient(0deg, var(--h14-gold) 50%, transparent 50%) left repeat-y,
        linear-gradient(0deg, var(--h14-gold) 50%, transparent 50%) right repeat-y;
        
    background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px; 
    animation: hh14March 1s linear infinite;
}

.hh14-sharp-card {
    position: relative; display: block;
    width: 100%; height: 100%;
    
    border-radius: 0; 
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
    background: #000; 
}

.hh14-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: 0.5s;
    filter: brightness(0.8);
}
.hh14-sharp-card:hover .hh14-card-bg { transform: scale(1.05); filter: brightness(1); }


.hh14-card-glass-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    transition: 0.3s;
}

.hh14-card-content {
    position: absolute; bottom: 0; left: 0; right: 0; top: 0;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: flex-end; 
    z-index: 2;
}

.hh14-label {
    color: var(--h14-gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px; font-weight: 700;
}

.hh14-card-title {
    color: #fff; font-size: 2.5rem; font-weight: 900; margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hh14-card-meta {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}
.hh14-stars { display: flex; align-items: center; gap: 4px; color: var(--h14-gold); font-weight: bold; }
.hh14-read-btn {
    color: #fff; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
    border: 1px solid #fff; padding: 8px 20px;
    transition: 0.3s;
}
.hh14-sharp-card:hover .hh14-read-btn { background: #fff; color: #000; }



.hh14-center { text-align: center; padding: 0 40px; }
.hh14-main-title {
    font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hh14-desc { font-size: 1.1rem; color: #ccc; margin-bottom: 35px; }

.hh14-search {
    max-width: 500px; margin: 0 auto;
    position: relative; height: 55px; display: flex;
}
.hh14-search input {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px; padding: 0 55px 0 25px;
    font-size: 1rem; color: #fff; backdrop-filter: blur(5px);
    outline: none;
}
.hh14-search button {
    position: absolute; right: 5px; top: 5px; bottom: 5px;
    width: 45px; border-radius: 50%; border: none;
    background: var(--h14-gold); color: #000; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}


.hh14-tags { margin-top: 20px; font-size: 0.9rem; color: #aaa; }
.hh14-tags span { font-weight: bold; color: #fff; margin-right: 5px; }
.hh14-tags a {
    color: var(--h14-gold); text-decoration: none; margin: 0 5px;
    transition: 0.2s;
}
.hh14-tags a:hover { color: #fff; text-decoration: underline; }



.hh14-right { display: flex; justify-content: flex-end; align-items: center; }

.hh14-logo-wrap {
    position: relative;
    width: 240px; height: 240px;
    display: flex; align-items: center; justify-content: center;
    animation: h14Breathe 5s ease-in-out infinite;
}

.hh14-ring {
    position: absolute;
    inset: 2px; 
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: h14Spin 20s linear infinite;
}

.hh14-logo-img {
    width: 92%; height: 92%;
    object-fit: contain; z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.6));
}


@keyframes h14Breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes h14Spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hh14March {
    0% { background-position: 0 0, 0 100%, 0 0, 100% 0; }
    100% { background-position: 30px 0, -30px 100%, 0 -30px, 100% 30px; }
}


@media (max-width: 1200px) {
    .hh14-container { grid-template-columns: 1fr; height: auto; padding: 40px 0; gap: 40px; }
    .hh14-left { width: 100%; height: 400px; padding-right: 0; border-right: none; order: 3; }
    .hh14-right { order: 1; justify-content: center; }
    .hh14-center { order: 2; }
}
@media (max-width: 768px) {
    .hh14-main-title { font-size: 2.5rem; }
    .hh14-logo-wrap { width: 160px; height: 160px; }
    .hh14-left { height: 350px; }
}

.footer-flexible-grid .wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-flexible-grid h2, .footer-flexible-grid h3 {
    color: #ff6b6b;
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-flexible-grid p, .footer-flexible-grid a {
    color: #eee;
    text-decoration: none;
}
/*------------------------------------------
