
        .collection-label {
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 25px;
            padding: 8px 20px;
            border: 2px solid #fbbf24;
            border-radius: 30px;
        }

        .hero-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            margin: 40px auto 0;
            border-radius: 2px;
        }

       
        .recipe-counter {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            min-width: 80px;
            display: flex;
            align-items: anchor-center;
        }

        .recipe-counter span {
            color: var(--rp-mc);
        }

        .progress-bar-container {
            flex: 1;
            height: 3px;
            background: var(--bdc);
            margin: 0 40px;
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--rp-mc), var(--rp-mc));
            width: 0%;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-right: 20px;
        }

        .nav-btn {
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: #374151;
        }

        .nav-btn:hover:not(:disabled) {
            background: #e5e7eb;
            transform: translateY(-2px);
        }

        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .nav-btn.top-btn {
            color: white;
        }

        .nav-btn.top-btn:hover {
            opacity: 0.9;
        }

        .gallery-btn {
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .gallery-btn:hover {
            background: #1f2937;
        }

        .gallery-btn svg {
            width: 18px;
            height: 18px;
            fill: var(--rp-mc);
        }

        /* Recipe Gallery Slider */
        .recipe-gallery {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: var(--bg);
            border-bottom: 1px solid var(--rp-brdrc);
            border-top: 1px solid var(--rp-brdrc);
        }

        .recipe-gallery.open {
            max-height: 200px;
        }

        .gallery-container {
            padding: 20px 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .gallery-title {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gallery-arrows {
            display: flex;
            gap: 8px;
        }

        .gallery-arrow {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .gallery-arrow:hover {
            background: #f3f4f6;
        }

        .recipe-slider {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 5px 0;
            padding-bottom: 15px;
        }

        .recipe-slider::-webkit-scrollbar {
            height: 5px;
        }

        .recipe-slider::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 5px;
        }

        .recipe-slider::-webkit-scrollbar-thumb {
            background: var(--rp-mc);
            border-radius: 5px;
        }

        .recipe-thumb {
            flex-shrink: 0;
            width: 120px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .recipe-thumb:hover {
            transform: translateY(-3px);
        }

        .recipe-thumb.active {
            transform: scale(1.05);
        }

        .thumb-image {
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 8px;
            margin-bottom: 8px;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .recipe-thumb.active .thumb-image {
            border: 3px solid var(--rp-mc);
        }

        .thumb-number {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(0,0,0,0.7);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .thumb-title {
            font-size: 0.75rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .recipe-thumb.active .thumb-title {
            color: var(--rp-mc);
            font-weight: 600;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 25px 20px;
        }

        /* Recipe Article */
        .recipe-article {
            margin: 0 auto 120px;
            scroll-margin-top: 120px;
            position: relative;
        }

        .recipe-article:last-child {
            margin-bottom: 80px;
        }

        .recipe-number-badge {
            display: inline-block;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--rp-mc);
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .recipe-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 400;
            line-height: 1.3;
            letter-spacing: -0.5px;
            display: flex;
            gap: 25px;
        }

        .recipe-meta {
            display: flex;
            gap: 30px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
        }

        .recipe-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .recipe-meta-icon {
            font-size: 1.1rem;
        }

        .recipe-image-container {
            position: relative;
            width: 100%;
            margin-bottom: 50px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .recipe-image {
            width: 100%;
            height: 600px;
            position: relative;
        }

        .recipe-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recipe-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
        }

        .recipe-content-section {
            padding: 18px 24px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .recipe-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, #58585a4d, transparent);
            margin: 60px 0;
        }

        /* Meta Styles */
        .meta-content {
            padding: 60px 40px;
            display: flex;
            justify-content: center;
        }

        .meta-style {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .meta-style .meta-item {
            border: 2px solid var(--rp-brdrc);
            padding: 20px 30px;
            border-radius: 8px;
            text-align: center;
            min-width: 150px;
            transition: all 0.3s;
            display: grid;
            align-items: center;
            gap: 5px;
        }

        .meta-style .meta-item:hover {
            border: 1px solid var(--rp-mc);
        }

        .meta-style .meta-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
            display: block;
        }

        .meta-style .meta-value {
            display: block;
            font-size: 16px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 5px;
        }

        .meta-style .meta-label {
            font-size: 0.85rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .meta-item svg {
            width: 34px;
            height: 34px;
            fill: var(--rp-mc);
        }

        .content-list-number {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding-right: 25px;
            border-right: 1px solid var(--rp-mc);
            padding-left: 10px;
        }

        .text-title-current {
            font-family: 'Roboto Condensed';
            font-size: 30px;
            font-weight: bold;
            color: var(--rp-mc);
        }

        .text-total {
            font-family: 'Roboto Condensed';
            font-size: 14px;
            color: var(--tt-fade);
        }

        .rct-titre {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        /* Hero */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero {
            border-radius: 8px;
            overflow: hidden;
        }

        .hero-6 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 10px 10px;
            align-items: center;
        }

        .hero-6 .content-side {
            order: 2;
        }

        .hero-6 .eyebrow {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--rp-mc);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .hero-6 h1 {
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 500;
            line-height: 0.95;
            display: flex;
        }

        .hero-6 .intro p {
            font-size: 15px;
            line-height: 1.6;
            border-left: 2px solid var(--rp-mc);
            padding-left: 25px;
            padding-bottom: 10px;
        }

        .hero-6 .image-side {
            order: 1;
            height: 375px;
            background: url('{dle-filter cover}') center/cover;
            border-radius: 15px 15px 0px 0px;
        }
        
        .intro a {
            color: var(--rp-mc);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .content-wrapper {
                padding: 60px 20px;
            }

            .recipe-article {
                margin-bottom: 100px;
            }

            .recipe-image {
                height: 500px;
            }

            .hero-6 {
                grid-template-columns: 1fr;
            }

            .hero-6 .image-side {
                height: 400px;
                order: 1;
            }

            .hero-6 .content-side {
                order: 2;
            }
        }

        @media (max-width: 768px) {
            

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero .intro {
                font-size: 1.05rem;
            }

            .sticky-content {
                padding: 12px 20px;
            }

            .progress-bar-container {
                margin: 0 15px;
            }

            .nav-controls {
                gap: 6px;
            }

            .nav-btn, .gallery-btn {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }

            .recipe-gallery.open {
                max-height: 180px;
            }

            .gallery-container {
                padding: 15px 20px;
            }

            .recipe-thumb {
                width: 100px;
            }

            .thumb-image {
                height: 70px;
            }

            .content-wrapper {
                padding: 40px 15px;
            }

            .recipe-article {
                margin-bottom: 80px;
                scroll-margin-top: 150px;
            }

            .recipe-title {
                font-size: 2rem;
            }

            .recipe-meta {
                flex-direction: column;
                gap: 12px;
            }

            .recipe-image {
                height: 350px;
            }

            .meta-content {
                padding: 40px 20px;
            }

            .meta-style {
                flex-direction: column;
                align-items: stretch;
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 7px;
            }
            
            .meta-item svg {
    width: 20px;
    height: 20px;
    fill: var(--rp-mc);
}

.meta-style .meta-value {
    font-size: 10px;
}

.meta-style .meta-label {
    font-size: 10px;
}

            .meta-style .meta-item {
                width: 100%;
            }

            .recipe-divider {
                margin: 70px 0;
            }

            .hero-6 {
                gap: 40px;
            }

            .hero-6 h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .recipe-title {
                font-size: 1.7rem;
            }

            .recipe-image {
                height: 280px;
            }

            .sticky-content {
                flex-wrap: wrap;
                gap: 10px;
            }

            .recipe-counter {
                order: 1;
                font-size: 0.9rem;
            }

            .progress-bar-container {
                order: 3;
                width: 100%;
                margin: 0;
            }

            .nav-controls {
                order: 2;
            }
            
            .nav-btn:focus,
            .gallery-btn:focus {
                outline: 2px solid var(--rp-mc);
                outline-offset: 2px;
            }

              .meta-style {
                flex-direction: column;
                align-items: stretch;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 7px;
            }
            
            .meta-item svg {
    width: 20px;
    height: 20px;
    fill: var(--rp-mc);
}

.meta-style .meta-value {
    font-size: 10px;
}

.meta-style .meta-label {
    font-size: 10px;
}

        }
        
        .accordion a {
    color: var(--rp-mc);
}

.rctpls-colltxt {
    line-height: 29px;
    display: block;
    padding: 1%;
    margin-bottom: 50px;
}
.rctpls-colltxt h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--rp-mc);
}
.rctpls-colltxt h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.rctpls-colltxt h2:not(:first-child) {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--rp-mc);
    margin-top: 30px;
}
.rctpls-colltxt ul {
    list-style: disc;
    padding: 20px;
}
.rctpls-colltxt a {
    color: var(--rp-mc);
}
.rctpls-colltxt ul a {
    color: var(--tt);
    text-decoration: underline;
}


.eyebrow {
  display: flex;
  align-items: center;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--rp-mc);
  margin-right: 12px;
  flex-shrink: 0;
}

.eyebrow a {
  font-size: 13px; font-weight: 500;
  text-decoration: none; 
  color: var(--rp-mc);
  transition: color 0.15s;
}
.eyebrow a:hover { color: #111; }

.eyebrow a + a::before {
  content: '/';
  margin: 0 8px;
  color: #aaa;
  font-weight: 400;
}
main.content h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 22px;
    font-family: 'Roboto Condensed';
}
.btmdv {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
}
.btmdv ul {
    list-style: disc;
    display: grid;
    gap: 7px;
    padding-left: 20px;
}
.btmdv p a {
    color: var(--rp-mc);
}
.topdv {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
}
.topdv ul {
    list-style: disc;
    display: grid;
    gap: 7px;
    padding-left: 20px;
}
.topdv p a {
    color: var(--rp-mc);
}
.topdv h2 {
    margin-top: 10px !important;
}
    </style>
[dle-filter skin]
       <style>
        /* Recipe Magazine Style Template - Concept 3 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

   

        .recipe-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Recipe Card */
        .recipe-card {
            margin-bottom: 25px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid var(--rp-brdrc2);
        }

        .recipe-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        /* Two Column Layout */
        .recipe-grid {
            display: flex !important;
            flex-flow: column;
            gap: 0;
        }

        /* Left Column - Image */
        .recipe-image-section {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    max-height: 400px;
        }

        .recipe-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .recipe-card:hover .recipe-main-image {
            transform: scale(1.08);
        }

        /* Image Overlay */
        .recipe-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .recipe-difficulty {
            display: flex;
            align-items: anchor-center;
            justify-content: center;
            gap: 20px;
            background: var(--bdc);
            color: var(--rp-mc);
            font-weight: bold;
            fill: var(--rp-mc);
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
         .recipe-difficulty svg {
         width:25px; 
         height:25px;
        }

        /* Right Column - Content */
        .recipe-info-section {
           justify-content: space-between;
            padding: 10px 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Category */
        .recipe-category {
            display: inline-block;
            color: var(--rp-mc);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Title */
        .recipe-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
            font-family: 'Georgia', serif;
        }

        .recipe-title a {
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .recipe-title a:hover {
            color: #e67e22;
        }

        /* Excerpt */
        .recipe-excerpt {
            font-size: 14px;
            color: var(--tt-fade);
            line-height: 1.6;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-family: 'Georgia', serif;
        }

        /* Quick Stats */
        .recipe-quick-stats {
            display: flex;
            gap: 18px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .stat-icon {
            width: 18px;
            height: 18px;
            fill: #e67e22;
        }

        .stat-text {
            font-size: 13px;
        }

        .stat-value {
            font-weight: 600;
        }

        /* Footer Meta */
        .recipe-footer-meta {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px solid var(--rp-brdrc2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    gap: 3px;
    padding-bottom: 10px;
    margin-top: 10px;
}

        .author-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #888;
        }

        .author-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #e67e22;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 11px;
        }

        .recipe-date {
            font-size: 12px;
            color: #999;
        }

        /* Read More Link */
        .recipe-read-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--rp-mc);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            margin-top: 8px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: gap 0.3s ease;
        }

        .recipe-read-link:hover {
            gap: 10px;
        }

        .recipe-read-link::after {
            content: '→';
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .recipe-grid {
                grid-template-columns: 200px 1fr;
            }

            .recipe-info-section {
                padding: 18px 20px;
            }

            .recipe-title {
                font-size: 18px;
            }

            .recipe-excerpt {
                font-size: 13px;
                -webkit-line-clamp: 2;
            }

            .recipe-quick-stats {
                gap: 12px;
            }
        }

        @media (max-width: 580px) {
            .recipe-wrapper {
                padding: 0 15px;
            }

            .recipe-grid {
                grid-template-columns: 1fr;
            }

            .recipe-image-section {
                height: 220px;
            }

            .recipe-info-section {
                padding: 20px;
            }

            .recipe-title {
                font-size: 19px;
            }

            .recipe-excerpt {
                -webkit-line-clamp: 3;
            }

            .recipe-footer-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* Alternative Minimal Style */
        .recipe-minimal {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #efefef;
        }

        .recipe-minimal:hover {
            transform: none;
            box-shadow: none;
        }

        .recipe-minimal .recipe-image-section {
            border-radius: 6px;
            height: 135px;
        }

        .recipe-minimal .recipe-info-section {
            padding: 0;
        }

        @media (max-width: 580px) {
            .recipe-minimal {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .recipe-minimal .recipe-image-section {
                height: 200px;
            }
        }
        main.content h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 22px;
    font-family: 'Roboto Condensed';
}
        .stat-box svg {
    width: 20px;
    height: 20px;
    fill: var(--rp-mc);
}