/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f7f4;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Notification Bar */
.top-notification {
    background: linear-gradient(to right, #5d4037, #795548);
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 0.9rem;
}

.top-notification p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-notification i {
    color: #ffcc80;
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

.logo {
    height: 70px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4e342e;
    line-height: 1.2;
    margin-bottom: 4px;
}

.site-subtitle {
    font-size: 0.85rem;
    color: #795548;
    font-weight: 400;
}

/* Search Section */
.search-section {
    flex: 0 1 320px;
    margin: 0 20px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #d7ccc8;
    border-radius: 30px;
    font-size: 0.95rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8d6e63;
    box-shadow: 0 0 0 3px rgba(141, 110, 99, 0.1);
    background-color: #fff;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: linear-gradient(to right, #6d4c41, #8d6e63);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(to right, #5d4037, #6d4c41);
    transform: scale(1.05);
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #5d4037;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 8px 5px;
    border-radius: 8px;
    min-width: 60px;
}

.user-action-btn:hover {
    color: #8d6e63;
    background-color: #f5f0eb;
}

.user-action-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.action-label {
    font-weight: 500;
}

.login-btn {
    background-color: #f5f0eb;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.login-btn:hover {
    background-color: #e8e1d9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5d4037;
    cursor: pointer;
    padding: 5px;
}

/* Main Navigation */
.main-nav {
    background-color: #5d4037;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: #ffcc80;
}

.nav-link i {
    font-size: 0.9rem;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.category-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.category-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    padding: 25px;
}

.dropdown-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.dropdown-header h3 {
    font-family: 'Playfair Display', serif;
    color: #4e342e;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.dropdown-header p {
    color: #795548;
    font-size: 0.9rem;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f9f7f4;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-card:hover {
    background-color: #fff;
    border-color: #d7ccc8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8d6e63, #a1887f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.category-info h4 {
    color: #5d4037;
    font-size: 1rem;
    margin-bottom: 5px;
}

.category-info p {
    color: #795548;
    font-size: 0.85rem;
    line-height: 1.4;
}

.dropdown-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8d6e63;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: #5d4037;
    gap: 12px;
}

/* Main Content Placeholder */
.main-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0%;
}

.content-placeholder {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-container h2 {
    font-family: 'Playfair Display', serif;
    color: #4e342e;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.placeholder-container p {
    font-size: 1.2rem;
    color: #795548;
    margin-bottom: 30px;
}

.coffee-icon {
    font-size: 5rem;
    color: #8d6e63;
    opacity: 0.7;
}

/* Footer Styles */
.main-footer {
    /*background-color: #3e2723;*/
    background-blend-mode: overlay;
background-image:
  linear-gradient(135deg, #2b1b17, #5d4037),
  repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
    color: #efebe9;
    margin-top: auto;
}

/* Footer Top */
.footer-top {
    padding: 60px 5% 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffcc80;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #d7ccc8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #efebe9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #8d6e63;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-heading {
    font-family: 'Playfair Display', serif;
    color: #ffcc80;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #8d6e63;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d7ccc8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffcc80;
    padding-left: 5px;
}

.footer-link i {
    font-size: 0.8rem;
    color: #a1887f;
}

/* Newsletter */
.footer-newsletter {
    grid-column: span 1;
}

.newsletter-description {
    font-size: 0.9rem;
    color: #d7ccc8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #efebe9;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: #bcaaa4;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background-color: #8d6e63;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #a1887f;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #bcaaa4;
}

.form-note input {
    margin-top: 4px;
}

.contact-info {
    margin-top: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #d7ccc8;
}

.contact-info i {
    color: #a1887f;
    width: 16px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright p {
    color: #bcaaa4;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-link {
    color: #d7ccc8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #ffcc80;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #8d6e63;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: #a1887f;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .dropdown-menu {
        width: 700px;
    }
    
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 15px 3%;
    }
    
    .nav-list {
        padding: 0 3%;
    }
    
    .footer-top {
        padding: 50px 3% 30px;
    }
    
    .footer-bottom {
        padding: 20px 3%;
    }
    
    .search-section {
        flex: 0 1 300px;
    }
    
    .dropdown-menu {
        width: 600px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 15px 3%;
    }
    
    .logo-section {
        order: 1;
        flex: 0 0 100%;
        margin-bottom: 15px;
        justify-content: center;
        display: flex;
    }
    
    .search-section {
        order: 3;
        flex: 1 1 100%;
        margin: 15px 0 0;
    }
    
    .user-actions {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 4;
    }
    
    .action-label {
        display: none;
    }
    
    .user-action-btn {
        min-width: auto;
        padding: 8px;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-container {
        padding: 20px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-subtitle {
        font-size: 0.8rem;
    }
    
    .logo {
        height: 55px;
    }
    
    .top-notification p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
}


/******Hero section Start******/
/* ============================================
   COFFEE HERO SECTION - FULL WIDTH CLEAN DESIGN
   ============================================ */

/* Reset any default margins */
body {
    margin: 0;
    padding: 0;
}

/* Hero Container */
.coffee-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    max-height: 800px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Hero Background */
.coffee-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coffee-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Curved Overlay (for text readability) */
.coffee-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    clip-path: ellipse(100% 100% at 50% 100%);
}

/* Hero Content Container */
.coffee-hero-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
    z-index: 3;
    text-align: center;
}

/* Category Badge */
.coffee-hero-category {
    margin-bottom: 25px;
}

.coffee-category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(93, 64, 55, 0.9);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.coffee-category-link:hover {
    background: rgba(74, 50, 42, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    gap: 12px;
}

.coffee-category-link i {
    font-size: 1rem;
}

/* Main Title */
.coffee-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #2c1810;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Post Meta */
.coffee-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Author Section */
.coffee-meta-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coffee-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.coffee-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coffee-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 3px;
}

.coffee-post-date {
    font-size: 0.9rem;
    color: #5d4037;
}

/* Meta Divider */
.coffee-meta-divider {
    color: #8d6e63;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Stats Section */
.coffee-meta-stats {
    display: flex;
    gap: 25px;
}

.coffee-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5d4037;
    font-size: 1rem;
}

.coffee-stat-item i {
    color: #8d6e63;
    font-size: 1rem;
}

/* CTA Button */
.coffee-hero-cta {
    margin-top: 10px;
}

.coffee-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5d4037;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #5d4037;
}

.coffee-read-btn:hover {
    background: white;
    color: #5d4037;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.2);
    gap: 15px;
}

.coffee-read-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coffee-hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .coffee-hero {
        height: 75vh;
        min-height: 550px;
    }
    
    .coffee-hero-title {
        font-size: 2.8rem;
    }
    
    .coffee-hero-content {
        bottom: 60px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .coffee-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .coffee-hero-title {
        font-size: 2.3rem;
        margin-bottom: 25px;
    }
    
    .coffee-hero-content {
        bottom: 50px;
        padding: 0 20px;
    }
    
    .coffee-hero-meta {
        flex-direction: column;
        gap: 20px;
	margin-bottom: 15px;
    }
    
    .coffee-meta-divider {
        display: none;
    }
    
    .coffee-read-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /*.coffee-hero-curve {
        height: 150px;
    }*/
}

@media (max-width: 576px) {
    .coffee-hero {
        height: 65vh;
        min-height: 450px;
    }

.dropdown-header h3 {
    color: #fff;
}
    
    .coffee-hero-title {
        font-size: 1.9rem;
    }
    
    .coffee-category-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .coffee-hero-content {
        bottom: 40px;
    }
    
    .coffee-meta-stats {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
}

/*********Section 2 *********/
/* ============================================
   TRENDING POSTS SECTION - ADVANCED DESIGN
   ============================================ */

/* Section Container */
.trending-posts {
    padding: 50px 0 0px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f0eb 50%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.trending-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.trending-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(141, 110, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(93, 64, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(141, 110, 99, 0.1);
}

.trending-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trending-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    animation: trending-icon-float 3s ease-in-out infinite;
}

@keyframes trending-icon-float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

.trending-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trending-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1;
}

.trending-title-sub {
    font-size: 1.1rem;
    color: #8d6e63;
    font-weight: 500;
    letter-spacing: 1px;
}

.trending-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trending-prev-btn,
.trending-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #d7ccc8;
    color: #5d4037;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-prev-btn:hover,
.trending-next-btn:hover {
    background: #5d4037;
    color: white;
    border-color: #5d4037;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.2);
}

.trending-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5d4037;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    background: white;
    border: 2px solid #d7ccc8;
    transition: all 0.3s ease;
}

.trending-view-all:hover {
    background: #5d4037;
    color: white;
    border-color: #5d4037;
    gap: 12px;
    padding-right: 20px;
}

/* Category Filter */
.trending-filter {
    margin-bottom: 40px;
}

.trending-filter-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trending-filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #d7ccc8;
    border-radius: 30px;
    color: #5d4037;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trending-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #5d4037, #8d6e63);
    transition: width 0.3s ease;
    z-index: -1;
}

.trending-filter-btn:hover::before,
.trending-filter-btn.active::before {
    width: 100%;
}

.trending-filter-btn:hover,
.trending-filter-btn.active {
    color: white;
    border-color: #5d4037;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.2);
}

/* Posts Grid */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.trending-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(215, 204, 200, 0.3);
}

.trending-post-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
    border-color: rgba(141, 110, 99, 0.3);
}

.trending-post-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Card Rank Badges */
.trending-card-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.trending-rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c1810;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    animation: trending-badge-pulse 2s infinite;
}

@keyframes trending-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trending-rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    box-shadow: 0 4px 15px rgba(160, 160, 160, 0.3);
}

.trending-rank-3 {
    background: linear-gradient(135deg, #cd7f32, #a6692e);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

/* Card Image */
.trending-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trending-post-featured .trending-card-image {
    height: 100%;
}

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

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

.trending-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(44, 24, 16, 0.7) 100%);
}

.trending-card-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #5d4037;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

/* Card Content */
.trending-card-content {
    padding: 25px;
}

.trending-post-featured .trending-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trending-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #8d6e63;
}

.trending-card-date,
.trending-card-stats {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trending-card-stats i {
    color: #8d6e63;
}

.trending-card-title {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: calc(1.7em * 2);
}

.trending-card-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.trending-card-link:hover {
    color: #5d4037;
    text-decoration: underline;
}

.trending-post-featured .trending-card-link {
    font-size: 1.6rem;
}

.trending-card-excerpt {
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Card Footer */
.trending-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 204, 200, 0.5);
}

.trending-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trending-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trending-post-card:hover .trending-author-img {
    transform: scale(1.1);
}

.trending-author-name {
    font-weight: 600;
    color: #2c1810;
    font-size: 0.95rem;
}

.trending-card-actions {
    display: flex;
    gap: 10px;
}

.trending-like-btn,
.trending-save-btn {
    background: #f5f0eb;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #5d4037;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trending-like-btn:hover {
    background: #ffebee;
    color: #ff6b35;
    transform: scale(1.1);
}

.trending-save-btn:hover {
    background: #e8f5e9;
    color: #4caf50;
    transform: scale(1.1);
}

.trending-like-btn.active {
    background: #ff6b35;
    color: white;
}

.trending-save-btn.active {
    background: #4caf50;
    color: white;
}

.trending-like-count {
    margin-left: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Load More Button */
.trending-footer {
    text-align: center;
    margin-top: 30px;
}

.trending-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #5d4037;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #d7ccc8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trending-more-btn:hover {
    background: #5d4037;
    color: white;
    border-color: #5d4037;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(93, 64, 55, 0.2);
    gap: 15px;
}

.trending-more-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trending-post-featured {
        grid-column: span 1;
        display: block;
    }
    
    .trending-title-text {
        font-size: 2.5rem;
    }
    
    .trending-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .trending-controls {
        align-self: flex-end;
    }
    
    .trending-posts {
        padding: 80px 4%;
    }
}

@media (max-width: 768px) {
    .trending-posts {
        padding: 60px 3%;
    }
    
    .trending-title-text {
        font-size: 2rem;
    }
    
    .trending-title-sub {
        font-size: 1rem;
    }
    
    .trending-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trending-filter-list {
        gap: 10px;
    }
    
    .trending-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .trending-card-link {
        font-size: 1.3rem;
    }
    
    .trending-post-featured .trending-card-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trending-posts {
        padding: 50px 2%;
    }
    
    .trending-title-text {
        font-size: 1.8rem;
    }
    
    .trending-title-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .trending-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .trending-view-all {
        align-self: flex-start;
    }
    
    .trending-card-content {
        padding: 20px;
    }
    
    .trending-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .trending-card-actions {
        align-self: flex-end;
    }
}

/* Animation for cards */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trending-post-card {
    animation: cardAppear 0.6s ease-out forwards;
    opacity: 0;
}

.trending-post-card:nth-child(1) { animation-delay: 0.1s; }
.trending-post-card:nth-child(2) { animation-delay: 0.2s; }
.trending-post-card:nth-child(3) { animation-delay: 0.3s; }
.trending-post-card:nth-child(4) { animation-delay: 0.4s; }
.trending-post-card:nth-child(5) { animation-delay: 0.5s; }
.trending-post-card:nth-child(6) { animation-delay: 0.6s; }

/*********Section 3*********/
/* ============================================
   COFFEE ART GALLERY SECTION
   ============================================ */

/* Section Container */
.art-gallery {
    padding: 50px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

.art-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(93, 64, 55, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.art-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Section Header */
.art-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.art-title-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.art-icon-wrapper {
    position: relative;
}

.art-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(255, 179, 71, 0.3);
    animation: art-icon-rotate 10s linear infinite;
}

@keyframes art-icon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.art-icon-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 179, 71, 0.2);
    border-radius: 50%;
    animation: art-wave-pulse 2s ease-out infinite;
}

@keyframes art-wave-pulse {
    0% {
        width: 120px;
        height: 120px;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

.art-title-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.art-category-label {
    font-size: 0.9rem;
    color: #ff8e53;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.art-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1.1;
}

.art-title-highlight {
    color: #ff8e53;
    position: relative;
    display: inline-block;
}

.art-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 142, 83, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.art-subtitle {
    font-size: 1.2rem;
    color: #8d6e63;
    font-weight: 500;
}

.art-header-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.art-view-toggle {
    display: flex;
    gap: 10px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.art-view-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #5d4037;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.art-view-btn.active,
.art-view-btn:hover {
    background: #5d4037;
    color: white;
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.2);
}

.art-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.art-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
    gap: 12px;
}

/* Featured Artist Spotlight */
.artist-spotlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff8f0, #fff0e0);
    padding: 30px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 5px solid #ff8e53;
    box-shadow: 0 10px 30px rgba(255, 142, 83, 0.1);
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.artist-profile {
    position: relative;
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.artist-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffd700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c1810;
    font-size: 1rem;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.artist-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artist-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c1810;
    font-family: 'Playfair Display', serif;
}

.artist-title {
    color: #ff8e53;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.artist-stats {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.artist-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5d4037;
    font-size: 0.9rem;
    font-weight: 500;
}

.artist-stat i {
    color: #ff8e53;
}

.artist-quote {
    max-width: 400px;
    position: relative;
    padding-left: 40px;
}

.artist-quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: #ff8e53;
    font-size: 2rem;
    opacity: 0.3;
}

.artist-quote p {
    font-size: 1.3rem;
    color: #5d4037;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.artist-quote-author {
    color: #8d6e63;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Coffee Art Grid */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.art-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.3);
}

.art-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
    border-color: rgba(255, 142, 83, 0.3);
}

.art-card-featured {
    border: 2px solid #ff8e53;
    box-shadow: 0 15px 35px rgba(255, 142, 83, 0.2);
}

.art-card-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Card Image */
.art-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.art-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(44, 24, 16, 0.8) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.art-difficulty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.art-difficulty-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.art-difficulty-badge.beginner {
    background: #4caf50;
    color: white;
}

.art-difficulty-badge.intermediate {
    background: #ff9800;
    color: white;
}

.art-difficulty-badge.advanced {
    background: #f44336;
    color: white;
}

.art-like-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #f44336;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.art-like-btn:hover {
    background: #f44336;
    color: white;
    transform: scale(1.1);
}

.art-like-count {
    font-size: 0.8rem;
}

/* Card Content */
.art-card-content {
    padding: 25px;
}

.art-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.art-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    line-height: 1.3;
    margin: 0;
}

.art-card-time {
    font-size: 0.85rem;
    color: #8d6e63;
    background: #f5f0eb;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.art-card-description {
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.art-card-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.art-tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f0eb;
    color: #5d4037;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.art-tool-tag i {
    color: #8d6e63;
    font-size: 0.8rem;
}

/* Card Footer */
.art-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 204, 200, 0.5);
}

.art-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.art-author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.art-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.art-author-name {
    font-weight: 600;
    color: #2c1810;
    font-size: 0.95rem;
}

.art-author-role {
    font-size: 0.8rem;
    color: #8d6e63;
}

.art-view-tutorial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8e53;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 142, 83, 0.1);
    transition: all 0.3s ease;
}

.art-view-tutorial:hover {
    background: #ff8e53;
    color: white;
    gap: 12px;
    padding-right: 12px;
}

/* Difficulty Filter */
.art-difficulty-filter {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.3);
}

.art-filter-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c1810;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.art-filter-title i {
    color: #ff8e53;
}

.art-filter-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.art-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f0eb;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: #5d4037;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.art-filter-option.active,
.art-filter-option:hover {
    background: #2c1810;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 24, 16, 0.2);
}

.art-filter-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.art-filter-dot.all {
    background: linear-gradient(135deg, #4caf50, #ff9800, #f44336);
}

.art-filter-dot.beginner {
    background: #4caf50;
}

.art-filter-dot.intermediate {
    background: #ff9800;
}

.art-filter-dot.advanced {
    background: #f44336;
}

/* View More */
.art-footer {
    text-align: center;
}

.art-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2c1810, #5d4037);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.art-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.art-explore-btn:hover::before {
    left: 100%;
}

.art-explore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.3);
    gap: 20px;
}

.art-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.art-explore-btn:hover .art-arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .art-main-title {
        font-size: 3rem;
    }
    
    .artist-spotlight {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .artist-quote {
        padding-left: 0;
        text-align: center;
    }
    
    .artist-quote i.fa-quote-left {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .art-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .art-header-actions {
        align-items: flex-start;
    }
    
    .art-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .art-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .art-icon-wave {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .art-gallery {
        padding: 80px 4%;
    }
    
    .art-main-title {
        font-size: 2.5rem;
    }
    
    .art-title-group {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .art-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .art-card-time {
        align-self: flex-start;
    }
    
    .art-filter-options {
        justify-content: center;
    }
    
    .art-explore-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .art-gallery {
        padding: 60px 3%;
    }
    
    .art-main-title {
        font-size: 2rem;
    }
    
    .art-subtitle {
        font-size: 1rem;
    }
    
    .art-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-spotlight {
        padding: 20px;
    }
    
    .artist-card {
        flex-direction: column;
        text-align: center;
    }
    
    .art-view-toggle {
        flex-direction: column;
    }
    
    .art-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .art-view-tutorial {
        align-self: flex-end;
    }
}

/* Card Animation */
@keyframes artCardAppear {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.art-card {
    animation: artCardAppear 0.6s ease-out forwards;
    opacity: 0;
    transform-origin: center bottom;
}

.art-card:nth-child(1) { animation-delay: 0.1s; }
.art-card:nth-child(2) { animation-delay: 0.2s; }
.art-card:nth-child(3) { animation-delay: 0.3s; }
.art-card:nth-child(4) { animation-delay: 0.4s; }
.art-card:nth-child(5) { animation-delay: 0.5s; }
.art-card:nth-child(6) { animation-delay: 0.6s; }

/*********Section 4*********/
/* ============================================
   SLIDER SPECIFIC STYLES
   ============================================ */

/* Prevent text selection during drag */
.drinks-slider-track {
    user-select: none;
    cursor: grab;
}

.drinks-slide a{
	text-decoration: none;
	color: inherit;
}

.drinks-slider-track:active {
    cursor: grabbing;
}

/* Grid animation */
@keyframes gridAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide entrance animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments for touch */
@media (max-width: 768px) {
    .drinks-slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }
    
    .drinks-slide {
        scroll-snap-align: center;
        flex: 0 0 85%;
    }
    
    .drinks-nav-btn {
        display: none; /* Hide arrows on mobile */
    }
}

/* Hide scrollbar but keep functionality */
.drinks-slider-track::-webkit-scrollbar {
    display: none;
}

.drinks-slider-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* ============================================
   COFFEE DRINKS CAROUSEL SECTION
   ============================================ */

/* Section Container */
.drinks-carousel {
    position: relative;
    padding: 60px 0;
    background: #0f0a06;
    overflow: hidden;
}

/* Animated Background */
.drinks-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.drinks-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 10, 6, 0.95) 0%,
        rgba(44, 24, 16, 0.85) 50%,
        rgba(15, 10, 6, 0.95) 100%);
}

.drinks-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(93, 64, 55, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255, 179, 71, 0.05) 0%, transparent 20%);
    animation: drinks-bg-float 20s ease-in-out infinite;
}

@keyframes drinks-bg-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}

.drinks-bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, 
        rgba(15, 10, 6, 1) 0%,
        rgba(15, 10, 6, 0.8) 30%,
        transparent 100%);
    z-index: 2;
}

/* Container */
.drinks-container {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
}

/* Section Header */
.drinks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.drinks-title-section {
    flex: 1;
}

.drinks-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.drinks-title-badge i {
    font-size: 1.2rem;
}

.drinks-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;
}

.drinks-title-accent {
    color: #ff8e53;
    position: relative;
}

.drinks-title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 142, 83, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.drinks-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.drinks-nav-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.drinks-slider-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.drinks-nav-btn {
    position: relative !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 142, 83, 0.3);
    color: #ff8e53 !important;
    font-size: 1.3rem;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.drinks-nav-btn svg{
	display:none;
}

.drinks-nav-btn:hover i{
    background: none;
    color: white;
    transform: scale(1.1);
    border-color: #ff8e53;
}

.drinks-slider-dots {
    display: flex;
    gap: 12px;
}

.drinks-view-toggle {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drinks-view-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.drinks-view-btn.active,
.drinks-view-btn:hover {
    background: #ff8e53;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 142, 83, 0.3);
}

/* Slider Container */
.drinks-slider-container {
    position: relative;
    margin-bottom: 0px;
    overflow: visible;
}

.drinks-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 10px;
}

/* Slides */
.drinks-slide {
    flex: 0 0 380px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    position: relative;
    transition: all 0.5s ease;
    transform-origin: center bottom;
}

.drinks-slide:hover {
    transform: translateY(-20px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 142, 83, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 142, 83, 0.1);
}

.drinks-slide-featured {
    border: 2px solid #ff8e53;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 142, 83, 0.2),
        inset 0 0 30px rgba(255, 142, 83, 0.1);
}

.drinks-featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    z-index: 10;
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
    animation: drinks-featured-pulse 2s infinite;
}

@keyframes drinks-featured-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.drinks-slide-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Slide Header */
.drinks-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.drinks-slide-badge {
    display: flex;
    gap: 10px;
}

.drinks-origin-badge,
.drinks-strength-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.drinks-origin-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.drinks-strength-badge {
    background: rgba(255, 142, 83, 0.2);
    color: #ff8e53;
    border: 1px solid rgba(255, 142, 83, 0.3);
}

.drinks-slide-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

/* Slide Title */
.drinks-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: calc(1.7em * 2);

}

/* Slide Image */
.drinks-slide-image {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.drinks-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.drinks-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(15, 10, 6, 0.7) 100%);
}

/* Slide Info */
.drinks-slide-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.drinks-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drinks-info-item i {
    color: #ff8e53;
    font-size: 1.2rem;
    width: 24px;
}

.drinks-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drinks-info-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drinks-info-value {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

/* Slide Description */
.drinks-slide-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-height: 1.5em;
    max-height: calc(1.7em * 4);
}

/* Slide Footer */
.drinks-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drinks-recipe-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff8e53, #ff6b35);
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drinks-recipe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 142, 83, 0.4);
    gap: 12px;
}

.drinks-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.drinks-stars {
    display: flex;
    gap: 2px;
    color: #ff8e53;
    font-size: 0.9rem;
}

.drinks-rating-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Drink Categories */
.drinks-categories {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drinks-categories-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.drinks-categories-title i {
    color: #ff8e53;
    font-size: 1.5rem;
}

.drinks-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.drinks-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 25px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drinks-category-btn.active,
.drinks-category-btn:hover {
    background: #ff8e53;
    color: white;
    border-color: #ff8e53;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 142, 83, 0.3);
}

.drinks-category-btn i {
    font-size: 1.1rem;
}

/* View All */
.drinks-footer {
    text-align: center;
}

.drinks-explore-all {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.drinks-explore-all:hover {
    background: #ff8e53;
    border-color: #ff8e53;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 142, 83, 0.4);
    gap: 25px;
    padding-right: 35px;
}

.drinks-explore-text {
    letter-spacing: 1px;
}

.drinks-explore-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drinks-explore-all:hover .drinks-explore-arrow {
    background: white;
    color: #ff8e53;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .drinks-slide {
        flex: 0 0 350px;
    }
    
    .drinks-main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .drinks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .drinks-nav-section {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .drinks-slide {
        flex: 0 0 320px;
    }
}

@media (max-width: 992px) {
    .drinks-carousel {
        padding: 80px 4%;
    }
    
    .drinks-main-title {
        font-size: 3rem;
    }
    
    .drinks-subtitle {
        font-size: 1.1rem;
    }
    
    .drinks-slide {
        flex: 0 0 300px;
        padding: 20px;
    }
    
    .drinks-slide-title {
        font-size: 1.8rem;
    }
    
    .drinks-categories-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .drinks-carousel {
        padding: 60px 3%;
    }
    
    .drinks-main-title {
        font-size: 2.5rem;
    }
    
    .drinks-slider-nav {
        gap: 15px;
    }
    
    .drinks-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .drinks-view-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .drinks-slide {
        flex: 0 0 280px;
    }
    
    .drinks-slide-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .drinks-slide-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .drinks-rating {
        align-items: flex-start;
    }
    
    .drinks-category-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .drinks-main-title {
        font-size: 2rem;
    }
    
    .drinks-subtitle {
        font-size: 1rem;
    }
    
    .drinks-slide {
        flex: 0 0 260px;
    }
    
    .drinks-slide-title {
        font-size: 1.6rem;
    }
    
    .drinks-explore-all {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }
    
    .drinks-explore-all:hover {
        flex-direction: column;
        gap: 20px;
    }
    
    .drinks-category-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* Slide Animation */
@keyframes drinksSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.drinks-slide {
    animation: drinksSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    animation-delay: calc(var(--slide-index) * 0.1s);
}

/*******Section 5******/
/* ============================================
   COFFEE GEAR ARTICLES SECTION
   ============================================ */

/* Section Container */
.gear-articles {
    padding: 70px 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
}

.gear-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(93, 64, 55, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(74, 50, 42, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.gear-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.gear-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.gear-header-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.gear-title-icon {
    position: relative;
}

.gear-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #5d4037, #8d6e63);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(93, 64, 55, 0.2);
    transform: rotate(-5deg);
}

.gear-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 3px solid rgba(93, 64, 55, 0.2);
    border-radius: 30px;
    animation: gear-pulse 2s ease-out infinite;
}

@keyframes gear-pulse {
    0% {
        width: 110px;
        height: 110px;
        opacity: 1;
    }
    100% {
        width: 130px;
        height: 130px;
        opacity: 0;
    }
}

.gear-title-content {
    flex: 1;
}

.gear-section-label {
    display: block;
    font-size: 0.9rem;
    color: #8d6e63;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gear-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1.1;
    margin-bottom: 15px;
}

.gear-title-highlight {
    color: #5d4037;
    position: relative;
}

.gear-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(93, 64, 55, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.gear-subtitle {
    font-size: 1.2rem;
    color: #5d4037;
    line-height: 1.6;
}

.gear-header-right {
    flex-shrink: 0;
}

.gear-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gear-filter-label {
    font-size: 0.9rem;
    color: #8d6e63;
    font-weight: 600;
    letter-spacing: 1px;
}

.gear-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gear-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #d7ccc8;
    color: #5d4037;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gear-filter-btn.active,
.gear-filter-btn:hover {
    background: #5d4037;
    color: white;
    border-color: #5d4037;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.2);
}

/* Stats Bar */
.gear-stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 25px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-stat-item {
    text-align: center;
}

.gear-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.gear-stat-label {
    font-size: 0.9rem;
    color: #8d6e63;
    font-weight: 500;
}

.gear-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #d7ccc8, transparent);
}

/* Content Grid */
.gear-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Featured Review */
.gear-featured-review {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-review-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c1810;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
}

.gear-featured-image {
    position: relative;
    height: 350px;
}

.gear-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gear-featured-review:hover .gear-featured-image img {
    transform: scale(1.05);
}

.gear-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(44, 24, 16, 0.1) 100%);
}

.gear-featured-content {
    padding: 35px;
}

.gear-review-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.gear-review-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f0eb;
    color: #5d4037;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gear-review-date {
    color: #8d6e63;
    font-size: 0.9rem;
}

.gear-review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.gear-stars {
    color: #ffb300;
    font-size: 1.1rem;
}

.gear-rating-text {
    font-weight: 700;
    color: #2c1810;
    font-size: 1.1rem;
}

.gear-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gear-article-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gear-article-link:hover {
    color: #8d6e63;
}

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

.gear-spec-item {
    background: #f9f7f4;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-spec-label {
    display: block;
    font-size: 0.8rem;
    color: #8d6e63;
    margin-bottom: 5px;
    font-weight: 500;
}

.gear-spec-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c1810;
}

.gear-featured-excerpt {
    font-size: 1.1rem;
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gear-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.gear-pros,
.gear-cons {
    background: #f9f7f4;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-pros h4,
.gear-cons h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c1810;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.gear-pros h4 i {
    color: #4caf50;
}

.gear-cons h4 i {
    color: #f44336;
}

.gear-pros ul,
.gear-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gear-pros li,
.gear-cons li {
    padding: 8px 0;
    color: #5d4037;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(215, 204, 200, 0.3);
}

.gear-pros li:last-child,
.gear-cons li:last-child {
    border-bottom: none;
}

.gear-featured-actions {
    display: flex;
    gap: 20px;
}

.gear-read-full,
.gear-buy-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gear-read-full {
    background: #5d4037;
    color: white;
}

.gear-read-full:hover {
    background: #4a332c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.2);
    gap: 12px;
}

.gear-buy-now {
    background: white;
    color: #5d4037;
    border: 2px solid #5d4037;
}

.gear-buy-now:hover {
    background: #5d4037;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.2);
    gap: 12px;
}

/* Sidebar */
.gear-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Comparison Widget */
.gear-comparison {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c1810;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.gear-sidebar-title i {
    color: #8d6e63;
}

.gear-comparison-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.gear-comparison-product {
    text-align: center;
}

.gear-comp-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 10px;
}

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

.gear-comp-info h4 {
    font-size: 1rem;
    color: #2c1810;
    margin-bottom: 5px;
}

.gear-comp-rating {
    color: #ffb300;
    font-size: 0.9rem;
}

.gear-comparison-vs {
    background: #f5f0eb;
    color: #8d6e63;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.gear-compare-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5d4037;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gear-compare-link:hover {
    color: #2c1810;
    gap: 12px;
}

/* Buying Guide */
.gear-buying-guide {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(215, 204, 200, 0.3);
}

.gear-guide-item:last-child {
    border-bottom: none;
}

.guide-icon {
    width: 50px;
    height: 50px;
    background: #f5f0eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5d4037;
    font-size: 1.2rem;
}

.guide-content h4 {
    color: #2c1810;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.guide-content p {
    color: #8d6e63;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Newsletter */
.gear-newsletter {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-newsletter p {
    color: #5d4037;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gear-newsletter-form {
    display: flex;
    gap: 10px;
}

.gear-email-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #d7ccc8;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #2c1810;
    transition: all 0.3s ease;
}

.gear-email-input:focus {
    outline: none;
    border-color: #8d6e63;
    box-shadow: 0 0 0 3px rgba(141, 110, 99, 0.1);
}

.gear-submit-btn {
    width: 50px;
    height: 50px;
    background: #5d4037;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gear-submit-btn:hover {
    background: #4a332c;
    transform: rotate(15deg);
}

/* Articles Grid */
.gear-articles-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.gear-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(215, 204, 200, 0.3);
}

.gear-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.1);
    border-color: rgba(141, 110, 99, 0.3);
}

.gear-article-image {
    position: relative;
    height: 200px;
}

.gear-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gear-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 50%,
        rgba(44, 24, 16, 0.2) 100%);
}

.gear-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gear-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    line-height: 1;
}

.gear-price-label {
    display: block;
    font-size: 0.7rem;
    color: #8d6e63;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.gear-article-content {
    padding: 25px;
}

.gear-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.gear-article-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f0eb;
    color: #5d4037;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gear-article-date {
    color: #8d6e63;
    font-size: 0.85rem;
}

.gear-article-title {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: calc(1.7em * 2);
}

.gear-article-title .gear-article-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    line-height: 1.3;
}

.gear-article-excerpt {
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.gear-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 204, 200, 0.5);
}

.gear-article-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gear-article-stars {
    color: #ffb300;
    font-size: 0.9rem;
}

.gear-article-rating-text {
    font-weight: 700;
    color: #2c1810;
    font-size: 0.9rem;
}

.gear-read-article {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5d4037;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gear-read-article:hover {
    color: #2c1810;
    gap: 12px;
}

/* View All */
.gear-footer {
    text-align: center;
    margin-top: 40px;
}

.gear-view-all {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #5d4037;
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gear-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.gear-view-all:hover::before {
    left: 100%;
}

.gear-view-all:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.3);
    gap: 20px;
}

.gear-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gear-view-all:hover .gear-arrow-circle {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gear-content-grid {
        grid-template-columns: 1fr;
    }
    
    .gear-main-title {
        font-size: 3rem;
    }
    
    .gear-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gear-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .gear-header-right {
        width: 100%;
    }
    
    .gear-filter-buttons {
        justify-content: center;
    }
    
    .gear-stats-bar {
        flex-direction: column;
        gap: 25px;
    }
    
    .gear-stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #d7ccc8, transparent);
    }
    
    .gear-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gear-articles {
        padding: 80px 4%;
    }
    
    .gear-main-title {
        font-size: 2.5rem;
    }
    
    .gear-subtitle {
        font-size: 1.1rem;
    }
    
    .gear-header-left {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .gear-featured-actions {
        flex-direction: column;
    }
    
    .gear-read-full,
    .gear-buy-now {
        width: 100%;
        justify-content: center;
    }
    
    .gear-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gear-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gear-articles {
        padding: 60px 3%;
    }
    
    .gear-main-title {
        font-size: 2rem;
    }
    
    .gear-subtitle {
        font-size: 1rem;
    }
    
    .gear-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .gear-filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gear-filter-btn {
        justify-content: center;
    }
    
    .gear-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .gear-view-all {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animation for cards */
@keyframes gearCardAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gear-article-card {
    animation: gearCardAppear 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}
/******Section 6*****/
/* ============================================
   DESSERTS SECTION WITH SIDEBAR LAYOUT
   ============================================ */

/* Section Container */
.desserts-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

.desserts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(210, 180, 140, 0.1) 0%, transparent 25%);
    pointer-events: none;
}

.desserts-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.desserts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.desserts-header-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.desserts-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.2);
    transform: rotate(-5deg);
    animation: desserts-icon-float 3s ease-in-out infinite;
}

@keyframes desserts-icon-float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

.desserts-title-wrapper {
    flex: 1;
}

.desserts-category-label {
    display: block;
    font-size: 0.9rem;
    color: #cd853f;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.desserts-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #654321;
    line-height: 1.1;
    margin-bottom: 15px;
}

.desserts-title-highlight {
    color: #d2691e;
    position: relative;
}

.desserts-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(210, 105, 30, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.desserts-subtitle {
    font-size: 1.2rem;
    color: #8b4513;
    max-width: 600px;
    line-height: 1.6;
}

.desserts-header-actions {
    margin-bottom: 15px;
}

.desserts-recipes-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.2);
}

.desserts-recipes-btn:hover {
    background: linear-gradient(135deg, #b35917, #b37435);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
    gap: 12px;
}

/* Main Layout */
.desserts-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

/* Main Content (9 columns) */
.desserts-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Featured Article */
.desserts-featured-article {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 180, 140, 0.3);
}

.desserts-featured-image {
    position: relative;
    height: 400px;
}

.desserts-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.desserts-featured-article:hover .desserts-featured-image img {
    transform: scale(1.05);
}

.desserts-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 50%,
        rgba(101, 67, 33, 0.2) 100%);
}

.desserts-featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #654321;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
    animation: desserts-badge-pulse 2s infinite;
}

@keyframes desserts-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.desserts-featured-content {
    padding: 35px;
}

.desserts-article-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.desserts-difficulty,
.desserts-prep-time,
.desserts-serves {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b4513;
    font-weight: 500;
    font-size: 0.9rem;
}

.desserts-difficulty i,
.desserts-prep-time i,
.desserts-serves i {
    color: #cd853f;
}

.desserts-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #654321;
    line-height: 1.2;
    margin-bottom: 25px;
}

.desserts-article-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desserts-article-link:hover {
    color: #d2691e;
}

.desserts-featured-excerpt {
    font-size: 1.1rem;
    color: #8b4513;
    line-height: 1.6;
    margin-bottom: 30px;
}

.desserts-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(210, 180, 140, 0.3);
}

.desserts-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desserts-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.desserts-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.desserts-author-name {
    font-weight: 600;
    color: #654321;
    font-size: 1.1rem;
}

.desserts-author-title {
    font-size: 0.9rem;
    color: #cd853f;
}

.desserts-article-stats {
    display: flex;
    gap: 25px;
}

.desserts-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b4513;
    font-size: 0.9rem;
}

.desserts-stat i {
    color: #cd853f;
}

/* Articles List */
.desserts-articles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.desserts-list-article {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(210, 180, 140, 0.2);
}

.desserts-list-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(210, 105, 30, 0.1);
    border-color: rgba(210, 105, 30, 0.3);
}

.desserts-list-image {
    flex: 0 0 330px;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
}

.desserts-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.desserts-list-article:hover .desserts-list-image img {
    transform: scale(1.1);
}

.desserts-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.desserts-list-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #8b4513;
}

.desserts-list-category {
    background: rgba(210, 105, 30, 0.1);
    color: #d2691e;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.desserts-list-date,
.desserts-list-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desserts-list-time i {
    color: #cd853f;
}

.desserts-list-title {
    margin-bottom: 12px;
}

.desserts-list-title .desserts-article-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #654321;
    line-height: 1.3;
}

.desserts-list-excerpt {
    color: #8b4513;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.desserts-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(210, 180, 140, 0.3);
    font-size: 14px;
}

.desserts-list-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desserts-stars {
    color: #ffb300;
    font-size: 0.9rem;
}

.desserts-rating-text {
    font-weight: 700;
    color: #654321;
    font-size: 0.9rem;
}

.desserts-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.desserts-read-more:hover {
    color: #b35917;
    gap: 12px;
}

/* Load More Button */
.desserts-load-more-container {
    text-align: center;
    margin-top: 20px;
}

.desserts-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #d2691e;
    border: 2px solid #d2691e;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.desserts-load-more-btn:hover {
    background: #d2691e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.2);
    gap: 15px;
}

/* Sidebar (3 columns) */
.desserts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar Widgets */
.desserts-sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(210, 180, 140, 0.2);
}

.desserts-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #654321;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.desserts-widget-title i {
    color: #d2691e;
}

/* Pairing Guide */
.pairing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
}

.pairing-item:last-child {
    border-bottom: none;
}

.pairing-coffee,
.pairing-dessert {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.pairing-coffee i {
    color: #8b4513;
    font-size: 1.2rem;
}

.pairing-dessert i {
    color: #d2691e;
    font-size: 1.2rem;
}

.pairing-arrow {
    color: #cd853f;
    font-weight: 700;
    padding: 0 15px;
}

/* Popular Recipes */
.popular-recipe-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
}

.popular-recipe-item:last-child {
    border-bottom: none;
}

.popular-recipe-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.popular-recipe-content {
    flex: 1;
}

.popular-recipe-content h4 {
    color: #654321;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popular-recipe-meta {
    display: flex;
    gap: 8px;
    color: #8b4513;
    font-size: 0.85rem;
}

/* Difficulty Filter */
.difficulty-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.difficulty-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f7f4;
    border: none;
    padding: 12px 15px;
    border-radius: 12px;
    color: #654321;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.difficulty-option.active,
.difficulty-option:hover {
    background: #d2691e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.2);
}

.difficulty-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.difficulty-dot.easy {
    background: #4caf50;
}

.difficulty-dot.medium {
    background: #ff9800;
}

.difficulty-dot.hard {
    background: #f44336;
}

/* Baking Tools */
.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    color: #654321;
    font-weight: 500;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-item i {
    color: #d2691e;
    width: 24px;
    font-size: 1.1rem;
}

/* Newsletter */
.desserts-newsletter p {
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.desserts-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.desserts-email-input {
    padding: 14px;
    border: 2px solid #d7ccc8;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #654321;
    transition: all 0.3s ease;
}

.desserts-email-input:focus {
    outline: none;
    border-color: #d2691e;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.desserts-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desserts-submit-btn:hover {
    background: linear-gradient(135deg, #b35917, #b37435);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .desserts-layout {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
    
    .desserts-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .desserts-layout {
        grid-template-columns: 1fr;
    }
    
    .desserts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .desserts-header-actions {
        align-self: flex-start;
    }
    
    .desserts-list-article {
        flex-direction: column;
    }
    
    .desserts-list-image {
        flex: 0 0 200px;
        width: 100%;
    }
    
    .desserts-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .desserts-section {
        padding: 80px 4%;
    }
    
    .desserts-main-title {
        font-size: 2.5rem;
    }
    
    .desserts-subtitle {
        font-size: 1.1rem;
    }
    
    .desserts-header-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
.desserts-featured-image {
    position: relative;
    height: 230px;
}
    
    .desserts-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .desserts-featured-title {
        font-size: 2rem;
    }
    
    .desserts-list-title .desserts-article-link {
        font-size: 1.3rem;
    }
    
    .desserts-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .desserts-section {
        padding: 60px 3%;
    }
    
    .desserts-main-title {
        font-size: 2rem;
    }
    
    .desserts-subtitle {
        font-size: 1rem;
    }
    
    .desserts-article-meta,
    .desserts-list-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .desserts-featured-footer,
    .desserts-list-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /*.desserts-list-image {
        flex: 0 0 150px;
    }*/

.trending-post-featured .trending-card-image {
    height: 250px;
}
    
    .desserts-load-more-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Animation for list articles */
@keyframes dessertsListAppear {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.desserts-list-article {
    animation: dessertsListAppear 0.6s ease-out forwards;
    opacity: 0;
}
a.tag-item-home {
    color: #5d4037;
    text-decoration: none;
}
.desserts-list-article:nth-child(1) { animation-delay: 0.1s; }
.desserts-list-article:nth-child(2) { animation-delay: 0.2s; }
.desserts-list-article:nth-child(3) { animation-delay: 0.3s; }
.desserts-list-article:nth-child(4) { animation-delay: 0.4s; }
.desserts-list-article:nth-child(5) { animation-delay: 0.5s; }
.desserts-list-article:nth-child(6) { animation-delay: 0.6s; }



/*********Slider Css*********/



