/* Category Page Styles */

.giftsy-category-page {
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    min-height: calc(100vh - 400px); /* Fallback to fill space if content is short */
    display: flex;
    flex-direction: column;
}

/* Category Nav Outer (Full Width) */
.giftsy-category-nav-outer {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Category Nav / Pills */
.giftsy-category-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
}

.giftsy-category-pills {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .giftsy-category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .giftsy-category-pills::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .giftsy-pill {
        white-space: nowrap;
    }
}

.giftsy-pill {
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    text-transform: uppercase;
    line-height: 1.4;
}

.giftsy-pill:hover {
    border-color: var(--giftsy-primary);
    color: var(--giftsy-primary);
}

.giftsy-pill.is-active {
    background: var(--giftsy-primary);
    border-color: var(--giftsy-primary);
    color: #fff;
}

/* Sort Dropdown */
.giftsy-sort-dropdown {
    position: relative;
}

.giftsy-sort-button {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11px;
    line-height: 1.4;
}

.giftsy-sort-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 8px 0 0;
    min-width: 150px;
    z-index: 100;
    display: none;
}

.giftsy-sort-dropdown.is-active .giftsy-sort-options {
    display: block;
}

.giftsy-sort-options li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.giftsy-sort-options li a:hover,
.giftsy-sort-options li a.is-active {
    background: #f8f9fa;
    color: var(--giftsy-primary);
}

/* Hero Section */
.giftsy-category-hero {
    margin-bottom: 40px;
}

.giftsy-category-breadcrumb {
    margin-bottom: 16px;
    font-size: 14px;
    color: #888;
}

.giftsy-category-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.giftsy-category-breadcrumb .breadcrumb-sep {
    margin: 0 8px;
}

.giftsy-category-hero .giftsy-section-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

.giftsy-category-hero .text-primary {
    color: #6c5ce7;
}

/* Blog Grid */
.giftsy-blog-grid {
    margin-bottom: 60px;
}

/* Load More */
.giftsy-load-more-container {
    text-align: center;
    margin-bottom: 80px;
}

.giftsy-load-more-btn {
    background: var(--giftsy-primary);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-width: 250px;
    position: relative;
}

.giftsy-load-more-btn:hover {
    filter: brightness(0.9);
}

.giftsy-load-more-btn.is-loading span {
    visibility: hidden;
}

.giftsy-load-more-btn.is-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.giftsy-loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.giftsy-loading-spinner::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--giftsy-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Sections Divider */
.giftsy-section-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 60px 0;
}

/* Featured Sections */
.giftsy-category-sections {
    background-color: #ffffff;
}

.giftsy-section-title-medium {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* SEO Block */
.giftsy-seo-text {
}

.giftsy-seo-text .seo-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
}

.giftsy-category-seo-block .seo-content p {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .giftsy-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .giftsy-category-page {
        padding-top: 0;
    }

    .giftsy-category-nav-outer {
        padding-top: 6px;
    }
    
    .giftsy-category-nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        overflow: hidden; /* Prevent horizontal scroll on wrapper */
    }
    
    .giftsy-category-hero .giftsy-section-title {
        font-size: 32px;
    }
    
    .giftsy-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .giftsy-load-more-btn {
        width: 100%;
    }
}
