/* ========================================
   文章详情页样式
   ======================================== */

.single-post-wrapper {
    background: #f5f7fa;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* ========================================
   主内容区
   ======================================== */

.single-post-main {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* 文章头部 */
.single-entry-header {
    margin-bottom: 30px;
}

.entry-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

.single-entry-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.single-entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-author img {
    border-radius: 50%;
    border: 2px solid var(--beauty-primary);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.author-name a:hover {
    color: var(--beauty-primary);
}

.post-date {
    font-size: 13px;
    color: #999;
}

.post-date i {
    margin-right: 4px;
}

.meta-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.stat-item i {
    color: var(--beauty-primary);
}

/* 特色图片 */
.single-entry-thumbnail {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.single-entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章内容 */
.single-entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

.single-entry-content p {
    margin-bottom: 20px;
}

.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4 {
    margin: 30px 0 15px 0;
    color: #333;
    font-weight: bold;
}

.single-entry-content h2 {
    font-size: 26px;
}

.single-entry-content h3 {
    font-size: 22px;
}

.single-entry-content h4 {
    font-size: 18px;
}

.single-entry-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.single-entry-content ul,
.single-entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.single-entry-content li {
    margin-bottom: 10px;
}

.single-entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid var(--beauty-primary);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
}

.single-entry-content code {
    padding: 2px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.single-entry-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.single-entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* 分页链接 */
.page-links {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-links-title {
    font-weight: 600;
    color: #333;
}

.page-links span {
    padding: 6px 12px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
}

.page-links .current {
    background: var(--beauty-primary);
    color: #fff;
}

/* 标签 */
.single-entry-footer {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.entry-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.entry-tags i {
    color: var(--beauty-primary);
    font-size: 16px;
}

.entry-tags a {
    padding: 6px 15px;
    background: #f8f9fa;
    color: #666;
    border-radius: 15px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.entry-tags a:hover {
    background: var(--beauty-primary);
    color: #fff;
}

/* 分享按钮 */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,107,157,0.05) 0%, rgba(255,168,197,0.05) 100%);
    border-radius: 12px;
    margin: 30px 0;
}

.share-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label i {
    color: var(--beauty-primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.link {
    background: #666;
}

/* 相关文章 */
.related-posts-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.related-posts-section .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts-section .section-title i {
    color: var(--beauty-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.related-post-thumb {
    height: 180px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-thumb img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 15px;
}

.related-post-content h4 {
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
}

.related-post-card:hover .related-post-content h4 a {
    color: var(--beauty-primary);
}

.related-post-meta {
    font-size: 12px;
    color: #999;
}

.related-post-meta i {
    margin-right: 4px;
}

/* 文章导航 */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.nav-links {
    display: contents;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #333;
}

.nav-subtitle {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.nav-next {
    text-align: right;
}

/* 侧边栏 */
.single-post-sidebar {
    position: sticky;
    top: 50px;
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 1200px) {
    .single-post-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 992px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }
    
    .single-post-sidebar {
        position: static;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-post-wrapper {
        padding: 20px 0;
    }
    
    .single-post-main {
        padding: 25px 20px;
    }
    
    .single-entry-title {
        font-size: 24px;
    }
    
    .single-entry-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .single-entry-content {
        font-size: 15px;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: space-around;
    }
}

/* ========================================
   侧边栏小工具样式
   ======================================== */

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--beauty-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--beauty-primary);
}

/* 企业目录小工具 */
.business-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.business-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.business-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.business-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.business-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-info {
    flex: 1;
    min-width: 0;
}

.business-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.business-info h4 a {
    color: #333;
    text-decoration: none;
}

.business-info h4 a:hover {
    color: var(--beauty-primary);
}

.business-meta {
    font-size: 12px;
    color: #999;
}

.business-meta i {
    margin-right: 4px;
}

/* 最新文章小工具 */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info h4 a {
    color: #333;
    text-decoration: none;
}

.recent-post-info h4 a:hover {
    color: var(--beauty-primary);
}

.post-date {
    font-size: 12px;
    color: #999;
}

.post-date i {
    margin-right: 4px;
}

/* 合作伙伴广告位小工具 */
.partner-ad-content {
    text-align: center;
}

.ad-placeholder {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255,107,157,0.05) 0%, rgba(255,168,197,0.05) 100%);
    border: 2px dashed var(--beauty-primary);
    border-radius: 8px;
    margin-bottom: 15px;
}

.ad-placeholder i {
    font-size: 48px;
    color: var(--beauty-primary);
    margin-bottom: 15px;
}

.ad-placeholder p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ad-desc {
    font-size: 13px !important;
    color: #999 !important;
    font-weight: normal !important;
    margin-top: 8px !important;
}

.partner-contact-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.partner-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

/* 合作伙伴表单弹窗 */
.partner-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.partner-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000000;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.partner-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 1000001;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-modal-close:hover {
    color: #333;
}

.partner-modal-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-modal-content h3 i {
    color: var(--beauty-primary);
}

.partner-form .form-group {
    margin-bottom: 20px;
}

.partner-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.partner-form input:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: var(--beauty-primary);
    box-shadow: 0 0 0 3px rgba(255,107,157,0.1);
}

.partner-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,157,0.3);
}

.form-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.form-submit-btn.loading {
    background: linear-gradient(135deg, #999 0%, #777 100%);
}

.form-submit-btn i {
    font-size: 16px;
}

/* 表单消息提示 */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message::before {
    font-family: 'FontAwesome';
    font-size: 18px;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-success::before {
    content: '\f058'; /* fa-check-circle */
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-error::before {
    content: '\f06a'; /* fa-exclamation-circle */
}

/* 响应式 - 侧边栏 */
@media (max-width: 768px) {
    .sidebar-widget {
        padding: 20px;
    }
    
    .partner-modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .business-thumb,
    .recent-post-thumb {
        width: 50px;
        height: 50px;
    }
}


/* ========================================
   成功页面样式
   ======================================== */

#successContainer {
    text-align: center;
    padding: 20px;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 成功动画 */
.success-animation {
    margin: 20px 0 30px 0;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4caf50;
}

.icon-line {
    height: 5px;
    background-color: #4caf50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 43px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.2);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #fff;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 43px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* 成功文字 */
.success-title {
    font-size: 28px;
    font-weight: bold;
    color: #4caf50;
    margin: 20px 0 15px 0;
}

.success-message {
    font-size: 16px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.success-submessage {
    font-size: 14px;
    color: #999;
    margin: 0 0 30px 0;
}

.success-submessage strong {
    color: var(--beauty-primary);
    font-weight: 600;
}

/* 成功信息 */
.success-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 0 0 25px 0;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.info-item:first-child {
    padding-top: 0;
}

.info-item:last-child {
    padding-bottom: 0;
}

.info-item i {
    font-size: 18px;
    color: var(--beauty-primary);
    width: 20px;
    text-align: center;
}

/* 成功关闭按钮 */
.success-close-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.success-close-btn i {
    font-size: 16px;
}

/* 响应式 - 成功页面 */
@media (max-width: 768px) {
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-line.line-tip {
        top: 33px;
        left: 10px;
        width: 20px;
    }
    
    .icon-line.line-long {
        top: 29px;
        right: 6px;
        width: 35px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-message {
        font-size: 15px;
    }
}


/* ========================================
   面包屑导航样式
   ======================================== */

.breadcrumb-navigation {
    background: #fff;
    padding: 15px 0;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    padding: 0 20px;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item:hover {
    color: var(--beauty-primary);
}

.breadcrumb-item.current {
    color: #333;
    font-weight: 600;
    cursor: default;
}

.breadcrumb-item i.fa-home {
    font-size: 15px;
}

.breadcrumb-separator {
    color: #ccc;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-separator i {
    font-size: 14px;
}

/* 响应式 - 面包屑 */
@media (max-width: 768px) {
    .breadcrumb-navigation {
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .breadcrumb-container {
        font-size: 13px;
        padding: 0 15px;
        gap: 6px;
    }
    
    .breadcrumb-item.current {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .breadcrumb-container {
        font-size: 12px;
        gap: 5px;
    }
    
    .breadcrumb-item.current {
        max-width: 150px;
    }
}
