 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    min-width: 1200px;
    background-color: #f5f5f5;
    font-family: "思源黑体 CN", "Source Han Sans CN", sans-serif;
}

/* Header 样式 */
.header-container {
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
}

.header-wrapper {
    width: 100%;
    max-width: 1920px;
}

.header {
    background-color: rgba(255, 255, 255, 0.5);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 0 0 30px;
    backdrop-filter: blur(5px);
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 15px;
}

.title {
    color: rgb(28, 124, 230);
    font-size: 24px;
    font-weight: bold;
    margin-right: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-right: 25px;
}

.nav-menu a {
    color: #181818;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* 搜索框样式增强 */
.search-box-container {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0 15px;
    margin-right: 20px;
    background: white;
    transition: all 0.3s;
}

.search-box-container:focus-within {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #1C7CE6;
}

.search-box {
    border: none;
    outline: none;
    width: 180px;
    padding: 8px 0;
    background: transparent;
    font-size: 14px;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
}

.search-icon {
    width: 16px;
    height: 16px;
}

.search-highlight {
    background-color: yellow;
    color: black;
}

.current-highlight {
    background-color: orange;
    font-weight: bold;
}

/* 通知样式 */
.search-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
    font-size: 14px;
}


.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-section a {
    color: #181818;
    text-decoration: none;
    font-size: 14px;
}

.right-section a.register-btn {
    background-color: #1C7CE6;
    padding: 0 16px;
    color: white; 
    border-radius: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景图区域样式 */
.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding-bottom:15px;
}

.banner-wrapper {
    width: 100%;
    max-width: 1920px;
    position: relative;
    height: 430px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: url(../images/home/banner_bg.png) no-repeat center center; /* 居中+不重复 */
}

.banner-content {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 280px; /* 与header对齐 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left:60px;
}

.banner-title {
    font-size: 36px;
    color: #181818;
    margin-bottom: 10px;
}

.banner-subtitle {
    font-size: 16px;
    color: #181818;
    margin-bottom: 10px;
}

.banner-app-image {
    height: 120px;
    margin-bottom: 10px;
    padding:5px;
    width: 120px;
}

.banner-download-text {
    font-size: 14px;
    color: #181818;
}


/* 三列特色区域样式 */
.features-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 15px 0;
}

.features-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-link {
    width: 32%;
    text-decoration: none; /* 移除下划线 */
    color: inherit; /* 继承父元素颜色 */
    display: block; /* 使<a>标签成为块级元素 */
}

.feature-item {
    position: relative;
    width: 380px;
    height: 130px;
    overflow: hidden;
    cursor: pointer; 
    border-radius: 8px;
}

.feature-image {
    width: 100%;
    height: 100%;
    background-position: center;
}



.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    transform: translateY(5px);
}

.feature-desc {
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(5px);
}

/* 悬停效果 */
.feature-item:hover {
    transform: translateY(-5px);
}


/* 产品介绍模块样式 */
.products-intro-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 15px 0;
    position: relative;
}

.products-intro-wrapper {
    width: 100%;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    background-color: #F5F9FD;
}

.products-intro-bg {
    width: 100%;
    min-height: 400px;  /* 最小高度，确保内容足够高 */
    background-color: #F5F9FD;  /* 背景色，图片未覆盖部分会显示 */
    background-image: url('../images/home/products_bg.png');
     background-size: auto 400px; /* 固定高度 400px，宽度自动缩放 */
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: local;  /* 背景图片随内容滚动 */
    height:1220px;
}

.products-intro-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 去掉下面这两行就能取消居中 */
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
    box-sizing: border-box;
    padding-top: 70px; /* 如果您想要内容从顶部开始，可以添加这个 */
    
    align-items: center; /* 添加这行使内容水平居中 */
}

.products-intro-title {
    color: white;
    font-size: 30px;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.products-intro-text {
    color: white;
    font-size: 16px;
    line-height: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .products-intro-content {
        padding: 0 15%;
    }
}

@media (max-width: 768px) {
    .products-intro-bg {
        height: 500px;
    }
    
    .products-intro-content {
        padding: 0 10%;
    }
    
    .products-intro-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .products-intro-text {
        font-size: 14px;
    }
}


/* 区块样式 */
.products-grid {
    display: flex;
    justify-content: center; /* 确保内部元素居中 */
    margin-top: 30px; /* 调整这个值可以控制与上方文本的距离 */
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    position: relative;
    z-index: 1; /* 确保显示在上层 */
}

.product-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    width: 380px;
    box-shadow: 0px 0px 16px 0px rgba(1, 67, 147, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*cursor: pointer; */
}

.product-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-header {
    position: relative;
    margin-bottom: 20px;
}

.product-title-bg {
    width: 100%;
    height: 130px;
    display: block;
}

.product-block-title {
    position: absolute;
    left: 30px;
    bottom: 50px;
    color: #262363;
    font-size: 26px;
    margin: 0;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);*/
}

.product-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列 */
    gap: 20px; /* 列间距 */
    width: 100%;
    padding-bottom:20px;
}

.product-column {
    display: flex;
    flex-direction: column;
}

/* 让 img 和 h4 在同一行 */
.product-column-header {
    display: flex;       /* 使用 flex 布局让 img 和 h4 同行 */
    align-items: center; /* 垂直居中 */
    gap: 5px;          /* 图标和标题之间的间距 */
    margin-bottom: 5px; /* 和下方 p 的间距 */
    padding-left:20px;
}

/* 调整图标大小 */
.product-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* 防止图片被压缩 */
}

/* 调整标题样式 */
.product-subtitle {
    font-size: 16px;
    color: #27256A;
    margin: 0; /* 去除默认 margin */
}

/* 调整描述文字样式 */
.product-desc {
    font-size: 14px;
    color: #A4A4A4;
    line-height: 1.5;
    margin: 0; /* 去除默认 margin */
    text-align:left;
    padding-left:20px;
    margin-bottom:15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .products-grid {
        flex-wrap: wrap;
    }
    
    .product-block {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .products-intro-content {
        padding: 0 10% !important;
    }
}


.products-second-grid{
	display: flex;
    justify-content: center; /* 确保内部元素居中 */
    margin-top: 30px; /* 调整这个值可以控制与上方文本的距离 */
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    position: relative;
}

.product-second-columns{
	display: grid;
    grid-template-columns: repeat(3, 1fr); /* 两列 */
    gap: 20px; /* 列间距 */
    width: 100%;
    padding-bottom:20px;
}

.product-second-block {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    width: 585px;
    box-shadow: 0px 0px 16px 0px rgba(1, 67, 147, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*cursor: pointer; */
}

.product-second-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}



/* 相关产品 */
.related-products-container {
  	width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 15px 0;
    position: relative;
}

.related-products-wrapper {
	width: 100%;
	max-width: 1920px;
	height: 470px;
	background: linear-gradient(180.00deg, rgb(255, 255, 255) 53.694%, rgb(223, 235, 253) 100%);
}

.related-products-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 10px;
	box-sizing: border-box;
}

.related-title {
  	font-size: 30px;
  	text-align: center;
  	margin-bottom: 10px;
  
  	font-family: 微软雅黑;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0px;
}

.related-title-part1 {
	color: #181818;
}

.related-title-part2 {
	color: #0768DE;
}

.related-subtitle {
	color: #BEBEBE;
	font-size: 16px;
	text-align: center;
	margin-bottom: 20px;
	font-family: 微软雅黑;
}


.related-products-grid {
	display: flex;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	flex-wrap: wrap; /* 小屏幕自动换行 */
}



.related-product-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

/* 修改产品卡片容器定位方式 */
.related-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start; /* 修改：从顶部开始排列 */
	height: 325.51px; /* 保持原有高度 */
	width: 278px;
	text-decoration: none; /* 移除链接下划线 */
	border-radius: 8px;
	overflow: hidden;
}

.related-product-card:hover {
	transform: translateY(-5px);
}

/* 文字内容位置调整 */
.related-product-title, 
.related-product-desc {
	position: relative;
	z-index: 2;
	text-align: center;
	margin: 0;
	padding: 0 20px;
	width: 100%; /* 确保宽度满幅 */
}

.related-product-title {
	color: #000000;
	font-size: 22px;
	margin-bottom: 15px;
	margin-top:180px;
}

.related-product-desc {
	color: #95A5AD;
	font-size: 16px;
	line-height: 1.5;
}


/* 目的 */
.target-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 15px 0;
    position: relative;
}

.target-wrapper {
    width: 100%;
    max-width: 1920px;
    background: white;
}

.target-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    height: 380px;
    box-sizing: border-box;
}

.target-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    
    
}

.target-bg {
    width: 1200px;
    height: 270px;
    background-size: cover;
    background-position: center;
    position: absolute;
    overflow: hidden;
	border-radius: 10px;
	
	/* 效果样式1 */
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
}

.target-grid:hover {
	transform: translateY(-5px);
}

.target-text-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
}

.target-content1 {
    color: #27256A;
    font-size: 18px;
    margin-top:48px;
    margin-left:110px;
}

.target-content2 {
    color: #2A2C2F;
    font-size: 18px;
    line-height: 1.2;
    margin-top:100px;
    margin-left:465px;
}


/* 成功案例 */
.success-stories-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 15px 0 0 0;
    position: relative;
}

.success-stories-wrapper {
    width: 100%;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    background-color: #F5F9FD;
}



.success-stories-bg {
    width: 100%;
    min-height: 400px;  
    background-color: #F5F9FD;  
    background-image: url('../images/home/success-stories_bg.png');
    background-size: auto 400px; 
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: local;  /* 背景图片随内容滚动 */
    height:520px;
}

.success-stories-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 去掉下面这两行就能取消居中 */
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
    box-sizing: border-box;
    padding-top: 30px; 
    
    align-items: center; 
}

/* Tab控件容器 */
.success-tabs {
    width: 1200px;
    margin: 10px auto 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

/* Tab标题栏 */
.tab-header {
    display: flex;
    background: #F3F8FF;
    height: 60px;
}

/* Tab项 */
.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    background: #F3F8FF;
    transition: all 0.3s ease;
    border-right: 1px solid rgb(225, 236, 255);
}



/* 选中状态的Tab */
.tab-item.active {
    background: #DCE7FC;
    border-bottom: 1px solid #076BF2; 
}

.tab-item.active .tab-title {
    color: #076BF2;
}



/* Tab图标和文字 */
.tab-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.tab-title {
    font-size: 16px;
    color: #111111;
    font-weight: 500;
    white-space: nowrap;
}

/* Tab内容区 */
.tab-content {
    background: white;
    padding: 15px;
    border-radius: 0 0 8px 8px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}


.case-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.case-item {
    width: 208px;
    height: 76px;
    border-radius: 3px;
}

.case-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-image: url('../images/home/success_stories_item_bg.png');
    border-radius: 3px;
}

.case-bg span {
    color: #262363;
    font-size: 16px;
    line-height: 1.4;
}


/* 关于我们 */
.about-us-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    position: relative;
}

.about-us-wrapper {
    width: 100%;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    background-color: #FAFCFF;
}

.about-us-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top:30px;
}


.about-us-content-sub {
    position: relative; /* 关键：建立定位上下文 */
    width: 1200px;
    max-width: 100%;
}

.about-us-content-sub-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* 文字内容定位 */
.aboutus-content {
    position: absolute;
    top: 60px;
    left: 520px;
    width: 580px;
    text-align: left;
}

.aboutus-content-title {
    color: rgb(24, 24, 24);
	font-family: 微软雅黑;
	font-size: 24px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0px;
	
}

.aboutus-content-desc {
    color: rgb(24, 24, 24);
	font-family: 微软雅黑;
	font-size: 14px;
	font-weight: 290;
	line-height: 34px;
	letter-spacing: 0px;
	text-align: left;
	text-indent: 2em; /* 新增：首行缩进2个字符 */
	padding-top:25px;
}

/* 底部 */
.footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
    position: relative;
}

.footer-wrapper {
    width: 100%;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    background-color: #FAFCFF;
}

.footer-bg {
    width: 100%;
    min-height: 175px; 
    background-color: #FAFCFF;  
    background-image: url('../images/home/footer_bg.png');
    background-size: auto 175px; 
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: local;  
}

.footer-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 14px;
}

/* 左侧样式 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 8px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.link-divider, .copyright-divider {
    margin: 0 5px;
    color: rgba(255,255,255,0.5);
}

.footer-copyright {
    display: flex;
    align-items: center;
}

/* 右侧样式 */
.footer-right {
    display: flex;
    gap: 60px;
    align-items: center;
}

.footer-app {
    text-align: center;
}

.footer-app img {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
}

.footer-contact p {
    margin: 8px 0;
    line-height: 1.5;
}

.sider {
    width: 84px;
    height: 182px;
    position: fixed;
    top: 60%;
    right: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    border-radius: 12px;
    background-color: #317EF6;
}
.sider-phone {
    width: 84px;
    height: 91px;
    border-bottom: 1px solid #2A5BCC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer; 
}
.sider-phone .phone-pic {
    width: 27px;
    height: 27px;
    background: url(../images/home/phone.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 8px;
}
.sider-phone .phone-text {
    width: 66px;
    height: 23px;
    font-size: 16px;
    color: #FFFFFF;
    font-family: PingFang SC-Regular;
}
.sider-phone .phone-hover-container {
    width: 185px;
    height: 57px;
    border-radius: 3px;
    background: url(../images/home/phone_bg.png) no-repeat;
    background-size: cover;
    position: fixed;
    top: 62%;
    right: 100px;
    z-index: 1005;
    display: none;
}
.phone-hover-container .phone-hover {
    width: 20px;
    height: 20px;
    background: url(../images/home/phonehover.png) no-repeat;
    background-size: cover;
    margin-right: 10px;
    margin-top: 15px;
    margin-left: 10px;
}
.phone-hover-container .phone-number {
    width: 130px;
    height: 24px;
    color: #317EF6;
    font-size: 18px;
    font-weight: bold;
	padding-top: 15px;
}
.sider-phone: hover{
	display: flex;
}

.sider-weixin {
    width: 84px;
    height: 91px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer; 
}
.sider-weixin .weixin-pic {
    width: 34px;
    height: 28px;
    background: url(../images/home/weixinpic.png) no-repeat;
    background-size: cover;
    margin-bottom: 8px;
}
.sider-weixin .weixin-text {
    width: 66px;
    height: 23px;
    font-size: 16px;
    color: #FFFFFF;
    font-family: PingFang SC-Regular;
}
.sider-weixin .weixin-hover-container {
    width: 184px;
    height: 184px;
    border-radius: 3px;
    background: url(../images/home/weixin_bg.png) no-repeat;
    background-size: cover;
    position: fixed;
    top: calc(60% + 90px);
    right: 100px;
    z-index: 1005;
    display: none;
}
.weixin-hover-container .weixin-hover {
    width: 154px;
    height: 150px;
    background: url(../images/home/weixincode.png) no-repeat;
    background-size: cover;
	margin: auto;
}

#back-to-top {
    display: none;
    position: fixed;
    right: 0.7%;
    bottom: 100px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    z-index: 999;
}
#back-to-top a {
    display: block;
    width: 50px;
    height: 50px;
    background: transparent url(../images/home/back-to-top.png) no-repeat;
    background-size: 100%;
}


.feature-link[href=""] {
    position: relative;
    cursor: pointer;
}

.feature-link[href=""] .feature-item {
    opacity: 0.95;
}

.feature-link[href=""]::after {
    content: '功能开发中，敬请期待';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-link[href=""]:hover::after {
    opacity: 1;
}


.related-product-card[href=""] {
    position: relative;
    cursor: pointer;
}

.related-product-card[href=""]::after {
    content: '功能开发中，敬请期待';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-card[href=""]:hover::after {
    opacity: 1;
}

.coming-soon {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
    z-index: 1000;
}

.toast-notification.show {
    bottom: 30px;
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .toast-notification {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}