/* General styles */
a.quick-item {
  cursor: pointer;
}


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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}
.product-container .product-content {
    flex-direction: row;
}
.city-skyline {
    overflow-x: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.skyline-container img {
    width: 100%;
    height: auto;
}
.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumb styles */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline;
    font-size: 14px;
    color: #333;
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 20px;
    /* Adjust width as needed */
    height: 20px;
    /* Adjust height as needed */
    background-image: url("../img/dh_j.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 5px;
    vertical-align: middle;
}

.breadcrumb a {
    text-decoration: none;
    color: #333;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Product description */
.product-description {
    margin-bottom: 20px;
}

.product-description p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    text-align: justify;
}

.product-description h1,
.product-description h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Product availability */
.product-availability h1,.product-availability h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-availability p {
    font-size: 12px;
    text-align: justify;
	line-height:1.5;
/* 	color:#666; */
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 56px;
    max-width: 100%;
    margin-top: 26px;
}

.product-card {
    padding-bottom: 20px;
    height: auto !important;
    width: 215px;
    height: 317px;
    background: #FFFFFF;
    box-shadow: 0px 0px 13px 0px rgba(5, 44, 113, 0.15);
    border-radius: 13px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
	border-radius: 13px;
}

.product-card h3 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    color: #404040;
    line-height: 16px;
    padding:0px 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  /* 限制显示两行 */
    overflow: hidden;       /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
	height:32px;
}

.product-card .read-more1 {
    margin-top: 28px;
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
    outline: none;
}

.product-card .read-more1::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.product-card .read-more1:hover,
.product-card .read-more1:focus {
/*     background: rgba(0, 123, 255, 0.1); */
/*     color: #007bff !important; */
	  color: #FFFFFF;
    background-color: var(--e-global-color-1aff6ad);
}

.product-card .read-more1:active {
    background: rgba(0, 123, 255, 0.2);
    transform: scale(0.98);
}

.product-card .read-more1::-moz-focus-inner {
    border: 0;
}

/* Quick Access Section */
.quick-access {
    margin-top: 40px;
    margin-bottom: 40px;
    position: sticky;
    top: 114px;
    z-index: 1000;
}

.quick-access .quick-access-title {
    background: url('../img/title_bg.png') no-repeat;
    background-size: 100% 100%;
    color: white;
    padding: 8px 16px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
}
.made-to-order p a:hover{
	text-decoration:underline;
/* 	color:#ccc !important; */
}
.made-to-order iframe,
.pcbn-content iframe{
	width:revert-layer;
}
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px 55px ;
    background: #f6f7f7;
    padding: 20px 15px;
}

.quick-item {
    min-width: 169px !important;
    display: block;
    /* padding: 12px; */
    text-align: center;
    text-decoration: none;
    background: #e9eaea;
    transition: background-color 0.3s;
    font-weight: bold;
    font-size: 16px;
    color: #000000 !important;
    line-height: 36px;
}

.quick-item:hover {
    background: #0f4aa4 !important;
    color: white !important;
}

.quick-item.inquiry {
    background: #0f4aa4 !important;
    color: white !important;
}

.quick-item.inquiry:hover {
    background: #003584 !important;
}

/* Made-to-Order Section */
.made-to-order {
    margin-top: 10px;
    margin-bottom: 40px;
}

.made-to-order h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000;
    border-bottom: none;
    padding-bottom: 0;
}

.made-to-order p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 25px;
/*     color: #666; */
    max-width: 100%;
}

.city-skyline {
    overflow-x: hidden;
}

/* Modal/Popup Styles */
/* .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 0 auto;
    max-width: 1400px;
	 height:100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: modalopen 0.4s;
	margin-top: 40px;
} */

@keyframes modalopen {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}

.close-button {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover {
    color: #333;
}

.modal-title {
    margin-top: 10px;
    margin-bottom: 20px;
    color: #0f4aa4;
    font-size: 24px;
    border-bottom: 2px solid #0f4aa4;
    padding-bottom: 10px;
}

.modal-body {
    padding: 10px 0;
}

.product-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail img {
    max-width: 200px;
    margin-bottom: 20px;
}

.product-detail p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-detail ul {
    align-self: flex-start;
    margin-bottom: 20px;
    padding-left: 20px;
}

.product-detail li {
    margin-bottom: 8px;
}

.inquiry-button, .submit-button, .webshop-button {
    background-color: #0f4aa4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.inquiry-button:hover, .submit-button:hover, .webshop-button:hover {
    background-color: #003584;
}

/* Form Styles */
.inquiry-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

/* Grade Selection Styles */
.grade-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grade-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.grade-item:hover {
    border-color: #0f4aa4;
    box-shadow: 0 0 8px rgba(15, 74, 164, 0.3);
}

.grade-item h3 {
    color: #0f4aa4;
    margin-bottom: 8px;
}

/* Catalogue Styles */
.catalogue-link {
    color: #0f4aa4;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    transition: color 0.3s;
}

.catalogue-link:hover {
    color: #003584;
    text-decoration: underline;
}

/* Webshop Styles */
.webshop-content {
    text-align: center;
    padding: 20px 0;
}

.webshop-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Applications Content */
.applications-content h3 {
    color: #0f4aa4;
    margin: 20px 0 10px;
}

.applications-content ul {
    padding-left: 20px;
}

.applications-content li {
    margin-bottom: 8px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1200px) {
    .product-container {
        padding: 15px;
    }
    
    .product-availability h2 {
        font-size: 30px;
    }
    
    .made-to-order h2 {
        font-size: 30px;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 90%;
    }
}
@media screen and (max-width: 1024px) {
    .quick-access .quick-access-title{
        background-size: auto;
    }
    .product-grid{
        gap: unset;
    }
}
@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 30px;
    }
    
    .product-card {
        width: 100%;
        height: auto;
        min-height: 280px;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .product-availability h2 {
        font-size: 24px;
    }
    
    .made-to-order h2 {
        font-size: 24px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 10px;
    }
    
    .modal-content {
        margin: 2% auto;
    }
    
    .grade-selection {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .quick-access .quick-access-title{
        background-size: auto;
    }
}

@media screen and (max-width: 576px) {
    .breadcrumb li {
        font-size: 12px;
    }
    
    .product-description p {
        font-size: 14px;
    }
    
    .product-availability h2 {
        font-size: 20px;
    }
    
    .made-to-order h2 {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    
    .product-card .read-more {
        padding: 6px 12px;
        font-size: 12px;
        margin-top: 15px;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-item {
        font-size: 14px;
        line-height: 30px;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}
					    	.breadcrumb { 
                                position: relative !important;
                                top: -20px !important;
                            }
						    .breadcrumb a,
						    .breadcrumb li {
						            color: #000000 !important;
                                    font-family: "Roboto", Sans-serif !important;
                                    font-size: 16px !important;
						    }
						     
						    .breadcrumb li:not(:last-child)::after {
                              content: "/" !important;
                              width: 0 !important;
                              height: 0 !important;
                              display: inline !important;
                              background: none !important;
                            }
                            .breadcrumb a:hover {
                                color: #000000 !important;
                                text-decoration: none !important;
                            }