        /* 상단 공지 배너 */
        .top-banner {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
        }

        /* 헤더 컨테이너 */
        .header-container {
            background-color: white;
            width: 100%;
        }

        .header-content {
            width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            
        }

        /* 로고 */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #9c88ff, #b49cff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .logo-text h1 {
            font-size: 24px;
            color: #7c6bff;
            font-weight: bold;
        }

        .logo-text p {
            font-size: 12px;
            color: #666;
            margin-top: -2px;
        }

        /* 검색 영역 */
        .search-area {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
			padding-top:20px;
        }

        .search-input {
            width: 300px;
            padding: 10px 40px 10px 15px;
            border: 2px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
        }

        .search-input:focus {
            border-color: #7c6bff;
        }

        .search-btn {
            position: absolute;
            right: 10px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #666;
        }

        /* 우측 메뉴 */
        .top-menu {
            display: flex;
            gap: 15px;
            font-size: 13px;
        }

        .top-menu a {
            text-decoration: none;
            color: #666;
            padding: 5px 8px;
        }

        .top-menu a:hover {
            color: #7c6bff;
        }

        /* 연락처 */
        .contact-info {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: bold;
            color: #333;
        }

        .contact-info .phone-icon {
            padding:0;
        }

        /* 네비게이션 */
        .nav-container {
            background-color: white;
            width: 100%;
            border-top: 1px solid #d3d3d3;
        }

        .nav-content {
            width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        .menu-toggle {
            background-color: #2d3748;
            color: white;
            border: none;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 18px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 15px 25px;
            color: #000000;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .nav-menu a:hover {
            background-color: #f5f5f5;
        }

        .nav-menu a.premium {
            color: #ff6b6b;
        }

        .nav-menu a.funeral {
            color: #9c88ff;
        }

        .nav-menu a.congratulation {
            color: #4ecdc4;
        }

        /* 카테고리 버튼 섹션 */
        .category-container {
            background-color: #a8e6cf;
            width: 100%;
            
        }

        .category-content {
            width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .category-btn {
			padding: 4px 0px 8px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            padding: 0px 25px;
            border-radius: 5px;
            transition: all 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: 500;
        }

        .category-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(0px);
        }

        .category-icon {
            font-size: 38px;
            
            color: #000;
        }

        .category-label {
            font-size: 16px;
            color: #000;
            font-weight: 500;
			padding-bottom: 7px;
        }

/* 메인의 서브 타이틀 */
		.subtitle {
		    font-size:2.9em;
            color: #000;
            font-weight: 200;
			padding-bottom: 7px;
			text-align: center;
			margin : 150px 0 70px 0;
			}
			
			
        /* 추천 상품 섹션
        .recommendation-container {
            background-color: white;
            width: 100%;
            padding: 50px 0;
        }

        .recommendation-content {
            width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .recommendation-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
        }

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

        .product-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: #ddd;
        }

        .product-info {
            padding: 20px 15px;
            text-align: left;
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .product-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-label {
            background-color: #9c88ff;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .price-amount {
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .price-discount {
            color: #ff4444;
            font-size: 14px;
            font-weight: 600;
        } */


/* 추천상품의 상품리스트 css ******************************/
 .product-card {
            background: white;
            overflow: hidden;
            width: 318px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			border: 1px solid #dddddd;
        }

        .product-card:hover {
            transform: translateY(-5px);

        }

        .product-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .flower-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .product-info {
            padding: 20px;
			height: 130px;
        }

        .product-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .product-subtitle {
            font-size: 13px;
            color: #888;
            margin-bottom: 15px;
        }

        .price-section {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .discount-badge {
            background: linear-gradient(45deg, #8b5cf6, #a855f7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
        }

        .price {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .discount-rate {
            font-size: 14px;
            color: #8b5cf6;
            font-weight: bold;
        }

        /* 용도별 인기상품 섹션 *******************************************/
        .popular-container {
            background-color: white;
            width: 100%;
            padding: 50px 0;
        }

        .popular-content {
            width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .popular-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
        }

        .purpose-menu {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 30px;
            background-color: #f0f0f0;
            border-radius: 8px;
            padding: 5px;
        }

        .purpose-btn {
            padding: 15px 25px;
            background: none;
            border: none;
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .purpose-btn:hover {
            background-color: #6c59c3;
            color: white;
        }

        .purpose-btn.active {
            background-color: #6c59c3;
            color: white;
        }

        .purpose-icon {
            font-size: 20px;
            margin-bottom: 2px;
        }

        .popular-product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .popular-product-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .popular-product-card:hover {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .popular-product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #ddd;
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: #6c59c3;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
        }

        .popular-product-info {
            padding: 15px 12px;
            text-align: left;
        }

        .popular-badge-label {
            background-color: #ff6b6b;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 5px;
            display: inline-block;
        }

        .popular-product-name {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .popular-product-price {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .popular-original-price {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
        }

        .popular-sale-price {
            font-size: 16px;
            font-weight: 700;
            color: #ff6b6b;
        }

        .popular-discount-price {
            font-size: 12px;
            color: #666;
        }


/* 보라색 인기상품 섹션 ***************************************************/

.header-section {
            background-color: #8b7ec8;
            width: 100%;
			margin: 80px 0 ;
        }
        
        .container {
            width: 1280px;
            margin: 0 auto;
            text-align: center;
        }
        
        .main-title {
            color: #aca3da;
            font-size: 150px;
            font-weight: bold;

            letter-spacing: 2px;
        }
        
        .sub-title {
            color: #fff;
            font-size: 36px;
            font-weight: normal;
            letter-spacing: -1px;
			margin-bottom: 30px;
        }
		
		 .outer-container {
            width: 100%;
            height: 1175px; 
            background: linear-gradient(to bottom, #8b7ec8 125px, #f3f3f3 125px);
        }
        
        .inner-container {
            width: 1360px;
            height: 100%;
            background-color: #f3f3f3;
            margin: 0 auto;
			padding: 40px;
        }
		
		
/* 카테고리별 섹션으로 상품보기 **********************************************/
  .nav-container {
            width: 1280px;
            margin: 0 auto;
            background-color: white;
            border: 1px solid #f5f5f5;
			margin-bottom: 30px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            background-color: white;
        }

        .nav-item {
            flex: 1;
            text-align: center;
            border-right: 1px solid #e0e0e0;
        }

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

        .nav-item.active {
            background-color: #333;
        }

        .nav-item.active a {
            color: white;
        }

        .nav-link {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-item:hover {
            background-color: #333;
        }

        .nav-item:hover .nav-link {
            color: white;
        }

        .cate-container {
            width: 1280px;
            margin: 0 auto;
            min-height: 500px;
            display: none;
        }

        .cate-container.active {
            display: block;
        }

        .category-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 10px;
        }

        .product-grid {
            display: grid;
            /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
            gap: 20px;
            margin-top: 30px;
        }

        .product-item {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-name {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 18px;
            color: #e74c3c;
            font-weight: bold;
        }

        .default-content {
            text-align: center;
            padding: 100px 0;
            color: #666;
            font-size: 18px;
        }
		
/* 종류별 섹션으로 상품보기 ******************************************************/

 .kind-nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            max-width: 1280px;
            margin: 0 auto;
            /*border-radius: 10px;*/
            overflow: hidden;
            /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
        }

        .kind-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 15px;
            background-color: #ededed;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            min-width: 143px;
            height: 100px;
            transition: all 0.3s ease;
            /*border-right: 1px solid #d0d0d0;*/
        }

       /* .kind-nav-item:last-child {
            border-right: none;
        }*/

        .kind-nav-item.active {
            background-color: #6c59c3;
            color: white;
        }

        .kind-nav-item:hover {
            background-color: #6c59c3;
            color: white;
            transform: translateY(-2px);
        }

        .kind-nav-item img {
            width: 55px;
            height: 55px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .kind-nav-item:hover img,
        .kind-nav-item.active img {
            filter: brightness(0) invert(1);
        }

        .kind-nav-text {
            font-size: 16px;
            text-align: center;
            line-height: 1.2;
        }

        .kind-content-area {
            max-width: 1280px;
            margin: 30px auto;
            /*padding: 40px;
            background-color: white;
            border-radius: 10px;*/
            /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
            text-align: center;
        }

        .kind-content-title {
            font-size: 24px;
            font-weight: bold;
            color: #6c5ce7;
            margin-bottom: 20px;
        }

        .kind-content-description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
		

/* 하단 보라색 섹션(고객센터) 시작 ***********************************************/
          .purple-container {
            background-color: #8b7ec8;
            padding: 40px 60px;
            color: white;
			margin-top: 100px;
        }

        .purple-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1280px;
            margin: 0 auto;
			padding-bottom: 25px;
        }

        .contact-section {
            flex: 1;
        }

        .contact-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
			text-decoration: underline;
			text-underline-offset: 8px;
			text-decoration-color: #cac5e5;
        }

        .phone-number {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hours {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .info-section {
            flex: 1;
            margin-left: 40px;
        }

        .info-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
			text-decoration: underline;
			text-underline-offset: 8px;
			text-decoration-color: #cac5e5;
        }

        .bank-info {
            margin-bottom: 10px;
        }

        .bank-name {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .account-number {
            font-size: 26px;
            font-weight: bold;
            color: #7DD3C0;
            margin-bottom: 5px;
        }

        .account-holder {
            font-size: 14px;
            opacity: 0.8;
        }

        .notice-section {
            flex: 1;
            margin-left: 40px;
        }

        .notice-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
			text-decoration: underline;
			text-underline-offset: 8px;
			text-decoration-color: #cac5e5;
        }

        .notice-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
			color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .notice-text {
            opacity: 0.9;
			color: #fff;
        }

        .notice-date {
            opacity: 0.7;
            font-size: 12px;
        }

        .delivery-section {
            flex: 0 0 auto;
            margin-left: 40px;
        }

        .delivery-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
			text-decoration: underline;
			text-underline-offset: 8px;
			text-decoration-color: #cac5e5;
        }

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

        .icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .icon-circle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .icon-circle svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .icon-label {
            font-size: 12px;
            opacity: 0.9;
            font-weight: 500;
        }

        .bottom-labels {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: center;
        }

        .bottom-label {
            font-size: 11px;
            opacity: 0.8;
        }
		
		/* 하단 보라색 섹션(고객센터) 끝 */
		
		
		/* 하단 검은색 섹션 시작 ************************************************************************/
		
		  /* 푸터 전체 배경 */
        .footer {
            width: 100%;
            background-color: #2c2c2c;
            color: #ccc;
            font-size: 13px;
            line-height: 1.6;
        }

        /* 푸터 내용 컨테이너 */
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 0;
        }

        /* 상단 네비게이션 */
        .footer-nav {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #444;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #4CAF50;
        }

        /* 메시지 도우미 버튼 */
	.message-helper {	
		margin-left: 980px;
	   width: 300px;
		background-color: #a8e6cf;
		color: #000;
		padding: 3px 45px;
		border-radius: 50px;
		font-size: 24px;
		font-weight: 500;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 8px;
		transition: all 0.3s ease;
	}

      .message-helper:hover {
            background-color: #90d4aa;
            transform: translateY(1px);
        }


        /* 회사 정보 */
        .company-info {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 5px;
        }

        .info-item {
            color: #aaa;
        }

        .info-item strong {
            color: #aaa;
            font-weight: 500;
        }
		 .info-item a {
            color: #aaa;
            font-weight: 500;
        }

        /* 연락처 정보 */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 5px;
        }

        .contact-item {
            color: #aaa;
        }

        .contact-item a {
            color: #aaa;
            text-decoration: none;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        /* 저작권 */
        .copyright {
            color: #888;
            font-size: 12px;
            padding-top: 20px;
        }
		
		/* 하단 검은색 섹션 끝 */
		
		