* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
    background: linear-gradient(90deg, #ff6b00 0%, #6a11cb 100%);
    position: relative;
    overflow: hidden;
}

/* 左侧logo区域 */
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.logo-sub {
    color: white;
    font-size: 12px;
    opacity: 0.8;
}

/* 中间导航菜单 */
.nav-menu {
    display: flex;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 5px;
    display: block;
    position: relative;
}

/* 红色提示点 */
.badge {
    position: absolute;
    top: 5px;
    right: -8px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 下划线动画效果 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 右侧功能区 */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ai-club {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.ai-club::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition width 0.3s ease;
}
:
.ai-club:hover::after {
    width: 100%;
}

/* 按钮样式 */
.btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subscribe-btn {
    background-color: #ff6b00;
}

.contribute-btn {
    background-color: #ff6b00;
}

.message-btn {
    background-color: #6a11cb;
    position: relative;
}

.message-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 搜索框 */
.search-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.search-icon {
    color: white;
    margin-right: 5px;
}

.search-text {
    color: white;
}

/* 头像 */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #6a11cb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* ==================== 幻灯片 + 公告区域 ==================== */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-container {
    width: 100%;
    height: 100%;
}

/* 全屏幻灯片 */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.1) 70%, transparent 100%);
    pointer-events: none;
}

.carousel-content {
    position: absolute;
    bottom: 120px;
    left: 80px;
    max-width: 700px;
    color: white;
    z-index: 2;
}

.carousel-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.carousel-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.carousel-desc {
    font-size: 22px;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    max-width: 600px;
}

/* 指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b00;
    width: 50px;
    border-radius: 7px;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b00;
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

/* 右侧悬浮公告面板 */
.notice-panel {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 400px;
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.notice-card {
    flex: 1;
    overflow: hidden;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.notice-title {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-title i {
    color: #ff6b00;
    font-size: 18px;
}

.notice-more {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.notice-more:hover {
    color: #ff6b00;
    transform: translateX(4px);
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
}

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

.notice-item:hover {
    padding-left: 8px;
    background: rgba(255, 107, 0, 0.03);
    border-radius: 6px;
}

.notice-item.hot .notice-text {
    color: #ff6b00;
    font-weight: 600;
}

.notice-item.hot .notice-text::after {
    content: 'HOT';
    display: inline-block;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
}

.notice-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
    flex-shrink: 0;
}

.notice-tag.activity {
    background: #fff3e0;
    color: #ff6b00;
}

.notice-tag.notice {
    background: #e3f2fd;
    color: #1976d2;
}

.notice-tag.welfare {
    background: #fce4ec;
    color: #c2185b;
}

.notice-tag.course {
    background: #e8f5e9;
    color: #388e3c;
}

.notice-tag.job {
    background: #f3e5f5;
    color: #7b1fa2;
}

.notice-text {
    flex: 1;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-weight: 500;
}

.notice-text:hover {
    color: #ff6b00;
}

.notice-date {
    font-size: 12px;
    color: #aaa;
    flex-shrink: 0;
}

/* 快捷入口 */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.quick-link {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    transform: translateY(-4px);
    background: white;
    border-color: #ff6b00;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link i {
    font-size: 22px;
    color: #ff6b00;
    margin-bottom: 6px;
    display: block;
    transition: transform 0.3s ease;
}

.quick-link span {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

/* 底部五大块快捷导航 */
.main-nav {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow: hidden;
    width: 1500px;
}

.main-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    text-decoration: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    white-space: nowrap;
}

.main-nav-item:last-child {
    border-right: none;
}

.main-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav-item:hover {
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
}

.main-nav-item:hover::before {
    transform: scaleX(1);
}

.main-nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe4d1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.main-nav-item:hover .main-nav-icon {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    transform: scale(1.1);
}

.main-nav-icon i {
    font-size: 22px;
    color: #ff6b00;
    transition: color 0.3s ease;
}

.main-nav-item:hover .main-nav-icon i {
    color: white;
}

.main-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 4px;
    white-space: nowrap;
    display: block;
}

.main-nav-desc {
    font-size: 12px;
    color: #999 !important;
    white-space: nowrap;
    display: block;
}

.main-nav-arrow {
    font-size: 14px;
    color: #ccc;
    transition: all 0.3s ease;
}

.main-nav-item:hover .main-nav-arrow {
    color: #ff6b00;
    transform: translateX(4px);
}

/* 标签板块 */
.tag-section {
    width: 100%;
    background: #f8f9fa;
    padding: 40px 20px;
    margin-top: 80px;
}

.tag-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
}



.tag-item {
    padding: 10px 24px;
    background: white;
    border-radius: 25px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-item:hover {
    color: #ff6b00;
    border-color: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.15);
}

.tag-item.active {
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.tag-item.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* 产品列表区域 */
.product-section {
    width: 100%;
    background: #f5f7fa;
    padding: 60px 20px;
}

.product-container {
    max-width: 1500px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c42 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 44px;
}

.product-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.price-symbol {
    font-size: 14px;
    color: #ff6b00;
    font-weight: 600;
}

.price-value {
    font-size: 24px;
    color: #ff6b00;
    font-weight: 700;
}

.product-seller {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.seller-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.seller-name {
    font-size: 14px;
    color: #666;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1600px) {
    .carousel-title {
        font-size: 48px;
    }

    .carousel-content {
        left: 60px;
        bottom: 100px;
    }

    .carousel-indicators {
        left: 60px;
        bottom: 40px;
    }

    .notice-panel {
        width: 380px;
        right: 50px;
        padding: 30px;
    }

    .main-nav {
        bottom: -45px;
        width: 1400px;
    }

    .main-nav-item {
        padding: 18px 28px;
        min-width: auto;
    }

    .tag-section {
        padding: 35px 20px;
        margin-top: 70px;
    }

    .product-section {
        padding: 50px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .tag-list {
        max-width: 800px;
    }

    .tag-item {
        padding: 9px 20px;
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
    .carousel-title {
        font-size: 40px;
    }

    .carousel-desc {
        font-size: 18px;
    }

    .notice-panel {
        width: 360px;
        right: 40px;
        padding: 28px;
    }

    .main-nav {
        bottom: -40px;
        width: 1200px;
    }

    .main-nav-item {
        padding: 16px 24px;
        min-width: auto;
    }

    .tag-section {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .product-section {
        padding: 40px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tag-list {
        max-width: 700px;
        gap: 10px;
    }

    .tag-item {
        padding: 8px 18px;
        font-size: 13px;
    }

    .main-nav-icon {
        width: 44px;
        height: 44px;
    }

    .main-nav-title {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .carousel-title {
        font-size: 34px;
    }

    .carousel-content {
        left: 50px;
        max-width: 550px;
    }

    .carousel-indicators {
        left: 50px;
    }

    .notice-panel {
        width: 340px;
        right: 30px;
        padding: 25px;
    }

    .main-nav {
        bottom: -35px;
        width: 1000px;
    }

    .main-nav-item {
        padding: 14px 20px;
        gap: 10px;
        min-width: auto;
    }

    .tag-section {
        padding: 25px 20px;
        margin-top: 50px;
    }

    .product-section {
        padding: 35px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 180px;
    }

    .tag-list {
        max-width: 600px;
        gap: 8px;
    }

    .tag-item {
        padding: 7px 16px;
        font-size: 12px;
    }

    .main-nav-icon {
        width: 40px;
        height: 40px;
    }

    .main-nav-icon i {
        font-size: 18px;
    }

    .main-nav-title {
        font-size: 14px;
    }

    .main-nav-desc {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .carousel-title {
        font-size: 28px;
    }

    .carousel-desc {
        font-size: 16px;
    }

    .carousel-content {
        left: 40px;
        bottom: 80px;
        max-width: 450px;
    }

    .carousel-indicators {
        left: 40px;
        bottom: 35px;
    }

    .notice-panel {
        width: 300px;
        right: 25px;
        padding: 22px;
    }

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

    .notice-list {
        gap: 10px;
    }

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

    .main-nav {
        bottom: -30px;
        width: 900px;
    }

    .main-nav-item {
        padding: 12px 14px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
        min-width: auto;
    }

    .tag-section {
        padding: 20px 15px;
        margin-top: 45px;
    }

    .product-section {
        padding: 30px 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 160px;
    }

    .tag-list {
        max-width: 500px;
        gap: 8px;
    }

    .tag-item {
        padding: 6px 14px;
        font-size: 12px;
    }

    .main-nav-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .main-nav-icon i {
        font-size: 14px;
    }

    .main-nav-content {
        display: block;
        margin-top: 4px;
    }

    .main-nav-title {
        font-size: 12px;
    }

    .main-nav-desc {
        display: none;
    }

    .main-nav-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 10px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .ai-club {
        font-size: 14px;
    }

    .avatar {
        width: 32px;
        height: 32px;
    }

    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    .carousel {
        height: 50vh;
        min-height: 350px;
        border-radius: 16px;
    }

    .carousel-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    }

    .carousel-content {
        left: 25px;
        right: 25px;
        bottom: 60px;
        max-width: none;
    }

    .carousel-title {
        font-size: 26px;
    }

    .carousel-desc {
        font-size: 14px;
    }

    .carousel-indicators {
        left: 25px;
        bottom: 25px;
    }

    .carousel-arrow {
        display: none;
    }

    /* 移动端公告面板改为底部 */
    .notice-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-height: none;
        background: white;
        backdrop-filter: none;
        padding: 22px;
        margin-top: 15px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .notice-card {
        padding: 0;
    }

    .notice-title {
        font-size: 17px;
    }

    .notice-list {
        gap: 10px;
    }

    .quick-links {
        padding-top: 15px;
        grid-template-columns: repeat(4, 1fr);
    }

    .quick-link {
        padding: 14px 6px;
    }

    .quick-link i {
        font-size: 20px;
    }

    .quick-link span {
        font-size: 11px;
    }

    /* 移动端五大块导航 */
    .main-nav {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 20px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        width: 100% !important;
        max-width: 100%;
    }

    /* 移动端标签板块 */
    .tag-section {
        padding: 20px 10px;
        margin-top: 30px;
    }

    .tag-list {
        max-width: 100%;
        gap: 10px;
    }

    .product-section {
        padding: 25px 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 14px;
        min-height: 40px;
    }

    .price-value {
        font-size: 20px;
    }

    .seller-avatar {
        width: 28px;
        height: 28px;
    }

    .seller-name {
        font-size: 12px;
    }

    .main-nav-item {
        padding: 15px 6px;
        flex-direction: column;
        gap: 6px;
        background: white;
        min-width: auto;
    }

    .main-nav-icon {
        width: 36px;
        height: 36px;
    }

    .main-nav-icon i {
        font-size: 16px;
    }

    .main-nav-content {
        display: block;
    }

    .main-nav-title {
        font-size: 11px;
    }

    .main-nav-desc {
        display: none;
    }

    .main-nav-arrow {
        display: none;
    }



    .tag-list {
        max-width: 100%;
        gap: 10px;
    }

    .tag-item {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 加载更多按钮样式 */
.product-loadmore {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.loadmore-btn {
    padding: 14px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.loadmore-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.loadmore-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-nomore {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    color: #999;
    font-size: 14px;
}

