@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

@import "vars.css";

/*===> All Styles
 *
 *  
 *   General   */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-all;
    word-wrap: break-word;
}

*::selection {
    color: var(--WHITE);
    background-color: var(--black-high);
}

/* width */
::-webkit-scrollbar {
    width: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--black-high); 
    /* box-shadow: var(--shadow); */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--brown-mode); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--white); 
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--black-med);
    background-color: var(--body-bg-color);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden;
}

/* About Us Section Styles */
.about-us {
    padding: 80px 0;
    background-color: var(--WHITE);
}

.about-us .title-sec {
    color: var(--black-high);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black-med);
    text-align: left;
}

.promise-section h4 {
    color: var(--menu-blue);
    font-weight: 600;
    font-size: 1.4rem;
}

.promise-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black-med);
    text-align: left;
}

a {
    color: var(--black-high);
    text-decoration: none;
}

a:hover {
    color: var(--blue-mad);
}

a:active {
    color: var(--main-color) !important;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--black-high);
    line-height: 1.3;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.loader {
    opacity: 1;
    z-index: 9999;
    transition: opacity 0.2s ease;
}

.loader.off {
    opacity: 0;
}
/* Enhanced Loading Screen */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-loader.off {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    position: relative;
}

.loading-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 123, 255, 0.2));
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spinRing 2s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: #007bff;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    border-right-color: #28a745;
    animation-delay: -0.5s;
    transform: scale(0.8);
}

.spinner-ring:nth-child(3) {
    border-bottom-color: #ffc107;
    animation-delay: -1s;
    transform: scale(0.6);
}

.loading-text {
    margin-bottom: 2rem;
}

.loading-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
    animation: textGlow 2s ease-in-out infinite;
}

.loading-subtitle {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    border-radius: 2px;
    animation: progressLoad 3s ease-out infinite;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Loading Keyframes */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0 0 30px rgba(0, 123, 255, 0.4);
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }
    50% {
        width: 100%;
        transform: translateX(0%);
    }
    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

/* Responsive loading adjustments */
@media (max-width: 768px) {
    .loading-logo img {
        width: 80px;
    }
    
    .loading-title {
        font-size: 1.5rem;
    }
    
    .loading-subtitle {
        font-size: 0.8rem;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-progress {
        width: 150px;
    }
}
.cmps span > b:nth-of-type(2) {
	animation-delay: .2s;
}
.cmps span > b:nth-of-type(3) {
	animation-delay: .4s;
}

/* Keyframes */
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25%, 50% {
        transform: rotate(180deg);
    }
    75%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderIn {
    0%, 25%, 100% {
        height: 0%;
    }
    50%, 75% {
        height: 100%;
    }
}

@keyframes updown {
    0% {
        transform: translateY(10);
    }
    25%, 50% {
        transform: rotate(180deg);
    }
    75%, 100% {
        transform: rotate(360deg);
    }
}

.container {
    margin: 0 auto !important;
    --bs-gutter-x: 15px !important;
    max-width: 1150px !important;
}

.container-footer {
    width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 30px;
}

.box {
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.btn {
    color: var(--black-high) !important;
    box-shadow: var(--btn-shadow) !important;
}

.btn-normal {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-high);
    background-color: var(--white);
    box-shadow: var(--btn-shadow) !important;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .2s;
}

.btn:active
.btn-normal:active {
    color: var(--black-high) !important;
    box-shadow: var(--shadow-outer) !important;
}

.btn-coll {
    padding: 11px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    cursor: pointer;
    border: var(--btn-coll-border);
    outline: none;
    transition: .2s;
}

.btn-coll:hover {
    color: black;
    background-color: white;
}

.f-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-color) !important;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, 
    rgba(0, 0, 0, 0.09) 0px 4px 2px, 
    rgba(0, 0, 0, 0.09) 0px 8px 4px, 
    rgba(0, 0, 0, 0.09) 0px 16px 8px, 
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
    transition: all .1s ease;
    z-index: 99999;
}

.carousel-inner,
.carousel-item img {
    height: 70vh !important;
    min-height: 328px !important;
    background: no-repeat center center scroll !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: var(--filter) !important;
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: var(--carousel-in);
}

/* Header & Menu ( nav ) */
.header {
    background-color: var(--body-bg-color);
    height: 70px;
    border-bottom: 1px solid var(--border-color1);
    z-index: 9999 !important;
}

.header--main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header--logo {
    height: auto;
}

.nav-logo,
.footer-logo {
    /* display: inline-block; */
    max-width: 100%;
    height: 40px;
}

.header--log,
.darkLight-searchBox,
.mobile-menu,
.header--logo {
    z-index: 9999 !important;
}

/* .header--logo > img {
    display: block;
    max-width: clamp(80%, 90%, 100%);
} 

.header--logo a {
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--black-high);
} 

.header--logo span {
    text-transform: uppercase;
    color: var(--main-color);
}   */

.open-nav,
.open {
    padding: 5px;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.menu-item {
    position: relative;
    display: inline-flex;
    height: 100%;
    margin-left: 40px;
}

.menu-item:nth-of-type(1){
    margin-left: 0 !important;
}

.menu-item > a {
    display: block;
    line-height: 70px;
    padding: 0 20px;
    font-weight: bold;
    color: var(--menu-blue);
    text-transform: capitalize;
    transition: color .3s ease;
}

.menu-item > a:hover {
    color: var(--white);
    background-color: var(--menu-blue);
}

.menu-item > a.active::before {
    content: "";
    position: absolute;
    left: 16%;
    bottom: 20px;
    width: 30%;
    height: 3px;
    /*background-color: var(--menu-blue);*/
    border-radius: 5px;
    opacity: 1;
    transition: background-color .2s ease;
}

.menu-item > a.active:hover::before {
    all: unset;
}

.sub-menu-item > a:hover {
    color: var(--menu-blue);
}

.menu-item > a i {
    font-weight: bolder !important;
    margin-left: 3px;
    pointer-events: none;
}

.menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 222px;
    padding: 10px 0;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}

.sub-menu-item a {
    display: block;
    color: var(--menu-blue);
    background-color: transparent;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color .3s ease;
    text-transform: capitalize;
}

.sub-menu-item a.active {
    color: var(--menu-blue);
}

a.active-n {
    color: var(--blue) !important;
}

a.active-n:hover {
    color: #ffffff !important;
}

.sub-menu-item a.active::after {
    content: "";
    position: relative;
    display: block;
    width: 20%;
    height: 3px;
    background-color: var(--blue-mad);
    border-radius: 5px;
    opacity: 1;
    transition: background-color .2s ease;
}

/* Multi-level menu styles */
.sub-menu-level2 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 200px;
    padding: 10px 0;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: all .3s ease;
}

.sub-menu-item.menu-item-child:hover .sub-menu-level2 {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.sub-menu-item.menu-item-child > a {
    position: relative;
}

.sub-menu-item.menu-item-child > a .uil-angle-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Category Item Styles */
.category-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-item .img-box {
    height: 200px;
    overflow: hidden;
}

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

.category-item:hover .img-box img {
    transform: scale(1.05);
}

.category-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    color: var(--menu-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Product carousel styling */
.category-item .carousel {
    border-radius: 10px;
    overflow: hidden;
}

.category-item .carousel-inner img {
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8f9fa;
    width: 100%;
}

.category-item .img-box img {
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    width: 100%;
}

.products .category-item img {
    height: 250px !important;
    object-fit: contain !important;
    background: #f8f9fa !important;
    width: 100% !important;
}

.category-item .carousel-control-prev,
.category-item .carousel-control-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 45, 131, 0.7);
    border-radius: 50%;
    border: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover .carousel-control-prev,
.category-item:hover .carousel-control-next {
    opacity: 1;
}

.category-item .carousel-control-prev {
    left: 10px;
}

.category-item .carousel-control-next {
    right: 10px;
}

.category-item .carousel-control-prev-icon,
.category-item .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

/* Product page specific styles */
.product-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-gallery .carousel-inner img {
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    background: #f8f9fa;
}

/* Glass Ceramic Product Gallery Specific Styles */
#glassCeramicProductCarousel .carousel-inner img {
    width: 100% !important;
    height: 400px !important;
    object-fit: contain !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

/* Application Cards Styles */
.application-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.application-card .card-icon {
    margin-bottom: 1rem;
}

.application-card .card-icon i {
    font-size: 2.5rem;
}

/* Shade Info Styles */
.shade-info {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.shade-group strong {
    color: var(--menu-blue);
}

.shade-details {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Product Details Image Styles */
.product-details-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

/* PMMA Product Main Image */
.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Feature Cards for PMMA */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card .feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card .feature-icon i {
    font-size: 3rem;
}

.feature-card h4 {
    color: var(--black-high);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.product-info .product-category {
    color: var(--menu-blue);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .product-title {
    color: var(--black-high);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.product-info .product-subtitle {
    color: var(--menu-blue);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.feature-item span {
    font-weight: 500;
    color: var(--black-high);
}

.series-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.series-tag {
    background: var(--menu-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.specification-table {
    font-size: 0.95rem;
}

.specification-table th {
    background: var(--menu-blue) !important;
    color: white;
    font-weight: 600;
    border: none;
}

.specification-table td {
    padding: 15px;
    vertical-align: middle;
}

.shade-column {
    background: #f8f9fa;
}

.shade-info {
    padding: 20px;
}

.shade-group strong {
    color: var(--menu-blue);
    font-size: 1.1rem;
}

.shade-details {
    color: var(--black-med);
    font-size: 0.95rem;
}

.detail-item h4 {
    color: var(--black-high);
    margin-bottom: 15px;
}

.detail-item p {
    color: var(--black-med);
    line-height: 1.6;
}

.breadcrumb {
    background: none;
    padding: 20px 0;
}

.breadcrumb-item a {
    color: var(--menu-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--black-med);
}

.cert-badge {
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.category-desc {
    color: var(--black-med);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.subcategories {
    margin-bottom: 20px;
    flex-grow: 1;
}

.subcategory {
    display: inline-block;
    background: #f8f9fa;
    color: var(--menu-blue);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 2px;
    border: 1px solid rgba(8, 45, 131, 0.2);
}

.btn-category {
    background: var(--menu-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.btn-category:hover {
    background: #0056b3;
    color: var(--white);
    text-decoration: none;
}

.product-desc {
    color: var(--black-med);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 10px;
}

.backdrop,
.header-nav-btn,
.close-btn {
    display: none;
}

.header--main .darkLight-searchBox {
    display: flex;
    align-items: center;
}

:is(.dark-light, .searchToggle, .cart-checkout) {
    width: 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i, 
.searchToggle i,
.cart-checkout i {
    position: relative;
    color: var(--white-icon);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: auto;
    line-height: 45px;
    border-radius: 50%;
    transition: all .3s, all .1s ease;
}

.dark-light i:hover, 
.searchToggle i:hover,
.cart-checkout i:hover {
    color: var(--white);
    background-color: var(--black-high);
}

.dark-light i.sun,
body.dark .dark-light i.moon,
.searchToggle i.cancel,
.searchToggle.active i.search {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.dark-light i.moon,
body.dark .dark-light i.sun,
.searchToggle.active i.cancel {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* body.dark .dark-light i.sun {
    opacity: 1;
    pointer-events: auto;
} */

/* body.dark .dark-light i.moon {
    opacity: 0;
    pointer-events: none;
} */

/* .searchToggle i.cancel {
    opacity: 0;
    pointer-events: none;
} */

/* .searchToggle.active i.cancel {
    opacity: 1;
    pointer-events: auto;
} */

/* .searchToggle.active i.search {
    opacity: 0;
    pointer-events: none;
} */

.searchBox {
    position: relative;
}

.search-field {
    position: absolute;
    right: 5px;
    bottom: -85px;
    display: flex;
    align-items: center;
    width: 300px;
    height: 50px;
    background-color: var(--search-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.searchToggle.active ~ .search-field {
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before {
    content: "";
    position: absolute;
    top: -4px;
    right: 14px;
    width: 12px;
    height: 12px;
    background-color: var(--black-high);
    transform: rotate(-45deg);
    z-index: -1;
}

.search-field input {
    width: 100%;
    height: 100%;
    padding: 0px 45px 0 8px !important;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3rem;
    border: 0;
    outline: none;
    border-radius: 4px;
    color: var(--search-color);
}

.search-field input:focus {
    color: var(--white);
    background-color: var(--black-high);
}

.search-field i {
    position: absolute;
    right: 15px;
    font-size: 22px;
    color: var(--search-color);
}

.mobile-menu {
    display: none;
}

.progress {
    position: fixed;
    top: 70px;
    left: 0;
    height: 4px;
    background: var(--blue-mad);
    box-shadow: var(--shadow);
    z-index: 99999 !important;
}

/* Categories */
.product-box {
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 33px;
    grid-auto-rows: repeat(5, minmax(80px, 100px));
}

.cat-box {
    width: auto;
    height: 70px;
    background-color: var(--gray);
    box-shadow: var(--cat-shadow);
    border-radius: 4px;
    transition: box-shadow .2s ease-in;
}

.cat-box:hover {
    box-shadow: var(--csh-hover);
}

.cat-box img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Products */
.products .pm {
    padding: 60px 0;
}

.product-item {
    position: relative !important;
    display: block;
    color: var(--white);
    text-align: center;
}

.product-item .discount {
    position: absolute;
    top: 3.5%;
    left: 3.5%;
    z-index: 2;
    text-align: center;
    font-size: 1.2rem;
    transform: rotate(-45deg);
}

.product-item.discount::before {
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--sale-bgr);
    clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
    transform: rotate(90deg);
    border-radius: 0px 0px 0px 25px;
}

.product-item-inner {
    position: relative;
    width: 100%;
    min-width: 100%;
    margin: 15px 0;
    padding: 10px 12px;
    border: 1px solid var(--black-high);
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .02);
    transition: .2s ease;
}

.product-item-inner:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .06);
}

.title {
    margin: 40px auto;
}

.title-sec {
    font-size: 1.3rem !important;
    font-size: 20px;
    text-transform: capitalize;
}

.sub-title {
    color: var(--black-high);
    font-size: 2.1rem;
    font-weight: 600;
}

.img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.details {
    text-align: start;
    padding: 10px 5px;
}

.details .cat {
    color: var(--black-high);
    font-size: 18px;
    line-height: 18px;
    transition: color .2s ease-in-out;
}

.details .cat:hover {
    color: var(--main-color);
}

.details .cat i {
    margin-right: 3.3px;
}

.details h5 {
    color: var(--black-high);
    padding-top: 7px;
    margin: 10px auto 15px auto;
    font-size: 20px;
}

.details i {
    font-size: 25px;
    color: rgb(243, 181, 25);
}

.details h4 {
    color: var(--black-high);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
}

.details h4 .old-prc {
    position: relative;
    margin-right: 10px;
    line-height: 15px;
}

.details h4 .old-prc::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2.1px;
    background-color: var(--main-color2);
}

.details h4 .old-prc::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -.85em;
    width: 33%;
    height: 2px;
    transform: rotate(90deg);
    background-color: var(--main-color2);
}

.details a > .cart {
    position: absolute;
    right: 13.5px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
    border-radius: 50px;
    color: var(--main-color);
    background-color: var(--gray);
    font-weight: 500;
    border: 1px solid #cce7d0;
}

.details a > .cart:hover {
    box-shadow: var(--cat-shadow);
}

/* Product Support */
.product-support {
    margin: 100px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40vh;
    text-align: center;
    background: linear-gradient(var(--blue-mad), var(--white)), url("../img/banner/sale-product_support.jpg") no-repeat center center / cover;
    background-blend-mode: saturation;
}

.product-support .row {
    height: 100% !important;

}

.product-support h4 {
    color: #ffffff;
    font-size: 1.2rem;
}

.product-support h2 {
    color: #ffffff;
    font-size: 2rem;
    padding: 10px 0;
}


.product-support h2 span {
    color: red;
}


/* Banner */
.banner {
    display: block;
    width: 100%;
    height: 100%;
    margin: 100px auto;
    padding: 10px 0;
}

.banner .container {
    max-width: auto;
    padding: 0;
}

.banner .circle-img {
    cursor: pointer;
    transition: all .3s ease;
}

.banner .circle-img:focus:hover {
    box-shadow: rgba(0, 0, 0, .4) 5px 5px, 
    rgba(0, 0, 0, .3) 10px 10px, 
    rgba(0, 0, 0, .2) 15px 15px, 
    rgba(0, 0, 0, 0.1) 20px 20px, 
    rgb(75, 75, 72, .05) 25px 25px;
}

.circle-img {
    position: relative;
    margin: auto;
    z-index: 1;
}

.circle-img-inner {
    text-align: center;
    /* border-radius: 0 0 180px 180px; */
    overflow: hidden;
}

.img-circle {
    display: none;
    /* position: absolute;
    left: 8px;
    bottom: 10px;
    width: 100%;
    height: 320px;
    background-color: hsl(0, 0%, 0%, .5); */
}

.circle-img-inner .c-gift {
    width: 100%;
    background: linear-gradient(var(--blue-mad), var(--white)), url("../img/banner/banner-img.jpg") no-repeat center center / cover;
    background-blend-mode: saturation;
    z-index: 1;
}

.banner-text * {
    color: var(--white) !important;
}

.banner-text {
    padding: 33px;
    background-color: var(--bg-gift);
    /* background: var(--black-high);
    background: var(--gradient-gift); */
}

/* Features */
.feature {
    overflow-y: auto;
    overflow-x: auto;
    margin: 50px 13.5px 50px 0px;
}

.feature .container {
    display: grid;
    column-gap: 25px;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    grid-template-rows: auto;
}

.fe-box {
    text-align: center;
    margin: 10px auto;
    padding: 15px 15px 0;
    box-shadow:  var(--cat-shadow);
    border-radius: 4px;
}

.fe-box:hover {
    cursor: pointer;
    box-shadow:  var(--hover);
}

.feature-box img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    margin: 0 auto;
}

.feature-box figcaption {
    display: inline-block;
    margin: 20px 0 0 0;
    padding: 9px 8px;
    line-height: 1;
    border-radius: 4px;
    color: var(--blue);
    background-color: var(--gray);
}

.feature .fe-box:nth-child(2) figcaption {
    color: #ffffff;
    background-color: var(--blue);
}

.feature .fe-box:nth-child(3) figcaption {
    color: #ffffff;
    background-color: var(--brown-mode);
}

.feature .fe-box:nth-child(4) figcaption {
    color: var(--white);
    background-color: var(--black-high);
} 

.feature .fe-box:nth-child(5) figcaption {
    color: #ffffff;
    background-color: var(--main-color2);
}

.feature .fe-box:nth-child(6) figcaption {
    color: #ffffff;
    background-color: var(--main-color);
}

/* Sales */
.sales-count {
    padding: 15px 0;
}

.sales-count h2 {
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}

.sales-count p {
    margin: 0;
    text-transform: uppercase;
}

.sales-count .c-1 {
    color: var(--black-high);
}

.sales-count .c-2 {
    color: var(--green-light);
}

.sales-count .c-3 {
    color: var(--red-light);
}

.sales-count .c-4 {
    color: var(--orange-light);
}

/* Collection */
.collection {
    display: block;
    margin: 0 auto 100px 0 !important;
}

.collection .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto-fill, minmax(40vh, 1fr))!important;
    gap: 10px;
}

.collection .container:nth-child(2) {
    margin-top: 10px !important;
}

.collection .container:nth-child(2) .row {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto-fill, minmax(25vh, 1fr))!important;
}

.collection .c-box-img {
    width: 100%;
    height: 100%;
    padding: 0;
    background: url("../img/banner/shopping.jpg") no-repeat center center / cover;
}

.collection .c-box-img:nth-child(2) {
    background: url("../img/banner/shopping2.jpg") no-repeat center center / cover;
}

.xs-c-oll .c-box-img:nth-child(1) {
    background: url("../img/banner/men-collection.jpg") no-repeat center center / cover;
}

.xs-c-oll .c-box-img:nth-child(2) {
    background: url("../img/banner/women-collection.jpg") no-repeat center center / cover;
}

.xs-c-oll .c-box-img:nth-child(3) {
    background: url("../img/banner/kid-collection.jpg") no-repeat center center / cover;
}

.collection .c-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 30px;
    background-color: hsl(0, 0%, 0%, .5);
}

.collection h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.collection h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.collection span {
    color: #ffffff;
    font-size: 20px;
    padding-bottom: 15px;
}

/* Newsletter */
.newsletter {
    width: 100%;
    height: clamp(auto, 220px, auto);
    background-color: var(--blue-mad);
}

.newsletter * {
    color: #ffffff;
}

.newsletter div[class^="col"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 0px;
    height: clamp(auto, 220px, auto);
}

.newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    background-color: transparent;
}

.newsletter p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 !important;
}

.newstext p > span {
    color: var(--yellow-light);
}

.n-form {
    display: flex;
    width: auto;
}

.n-form input[type="text"] {
    color: #000000;
    width: 100%;
    height: 3.125rem;
    padding: 0 1.25rem;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 4px 0px 0px 4px;
    outline: none;
}

.n-form button {
    color: #ffffff;
    background-color: #4b4b48;
    white-space: nowrap;
}

/* Footer */
.footer {
    margin-top: 0px !important;
    border-top: var(--footer-border);
}

.container-footer {
    margin: 50px auto;
}

.container-footer div[class^="col"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 5px 50px 50px 50px;
    border-right: var(--footer-border);
}

.contact2, .contact3 {
    flex-shrink: 0;
    padding: 0 0px !important;
}

.footer .footer-logo {
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 1.2rem;
    padding-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    margin: 0 0 8px 0;
}

.contact1 p > span {
    display: block;
    text-align: center;
}

.contact1 p:nth-child(4) {
    margin: 15px auto !important;
} 

.contact1 p:nth-child(4) span {
    margin-right: 0px !important;
} 

.footer a {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--black-high);
    font-size: 1rem;
    text-decoration: none;
    word-break: break-all !important;
}

.social-fllw {
    margin-top: 20px;
}

.social-fllw i {
    color: var(--black-med);
    padding-right: 4px;
    font-size: 1.5rem;
    cursor: pointer;
}

.download-on {
    width: 100%;
    height: 100px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.install img {
    margin: 10px;
    display: block;
    height: 50%;
    max-width: 100%;
    background-color: var(--gray);
    border-radius: 8px;
    cursor: pointer;
}

.install img:nth-child(1) {
    border-radius: 7.2px;
}

.install img:hover {
    box-shadow: var(--btn-shadow);
}

.install img:active {
    box-shadow: var(--shadow-outer);
}

.payment i {
    font-size: 1.5rem;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    color: var(--black-high);
    background-color: var(--nav-color) !important;
    box-shadow: 0px -15px 15px 0px rgba(0,0,0,0.1);
}

@supports (backdrop-filter: blur(1rem)) {
    .copyright {
        backdrop-filter: blur(1rem) !important;
    }
}

.footer .copyright p {
    margin-bottom: 0;
}

.copyright * {
    font-size: 1rem !important;
    font-weight: bold;
}

.go-to-link {
    margin: 0 8px 0 33px !important;
}

.by {
    display: inline;
    cursor: text;
}

#author {
    color: var(--black-high);
    margin-left: 8px;
    transition: all .2s ease;
}

#author:hover {
    text-decoration: underline;
}

/* Back to Top */

.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    border-radius: 100%;
    background: var(--blue-mad);
    width: 45px;
    height: 45px;
    padding: 0.5rem;
    border: none;
    cursor: pointer;
    opacity: 100%;
    box-shadow: var(--shadow);
    transition: opacity 0.5s;
}

.back-to-top:hover {
    opacity: 60%;
}

.hidden {
    display: none;
}

.back-to-top i {
    height: 1.5rem;
    color: #ffffff;
}

/* Welcome & Cookie */

.cookie {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 22%;
    left: 0;
    bottom: 0;
    background: var(--black-high);
    text-align: center;
    padding: 25px 25px 30px 25px;
    z-index: 99999;
}

.cookie.hide {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.welcome-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center !important;
    text-align: center;
    color: var(--white);
    background-color: var(--black-high);
    border: 0px;
    border-radius: 0px;
    margin: 0 !important;
    padding: 10px auto !important;
    z-index: inherit;
    transition: all .3s ease;
}

#author {
    margin: 10px auto !important;
    padding: 0 !important;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    margin: auto !important;
    padding: 5px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: var(--white) !important;
}

.cookie img {
    max-width: 90px;
    margin: auto;
}

.cookie .content {
    margin: 0px;
    padding: 0 20px;
}

.content h1 {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
}

.content p {
    color: #FCBA7F;
    margin: 5px 0 20px 0;
    padding: 0px !important;
}

.content a {
    color: #FCBA7F;
    margin: 0px !important;
    padding: 0px !important;
}

.btn-actions {
    display: block;
    align-items: center;
    justify-content: center;
}

.btn-actions .item {
    margin: 0 10px;
}

.btn-actions button {
    padding: 10px 20px;
    background: #FCBA7F;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 5px;
}

/* Products Page */
.hero,
.blog-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    background: url("../img/banner/shopping2.jpg") repeat center center / contain;
}

.blog-hero {
    background: url("../img/banner/shopping.jpg") repeat center center / contain;
}

.hero .container-fluid {
    padding: 100px 0;
    width: 100%;
    height: 100%;
    background-color: hsl(0, 0%, 0%, .8);
}

.hero .row {
    margin: 0;
    padding: 20px 0;
}

.hero h2 {
    font-weight: bold;
}

.hero p {
    font-size: 1rem;
}

.hero h2,
.hero p {
    color: hsl(0, 0%, 100%);
}

.pagination {
    margin: 100px auto;
}

.pagination a {
    margin: 0 5px;
    /* padding: 10px 20px; */
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    background-color: var(--blue-mad);
    transition: background-color .3s ease;
}

.pagination a:hover {
    background-color: var(--blue);
}

.pagination a i {
    font-size: 1.1rem;
    font-weight: 600;
}

/* -> Single Page Product */
.product-details {
    margin: 33px auto;
    padding: 50px;
}

.product-details div[class^="col"] {
    padding: 0 !important;
}

.big-product {
    margin-bottom: 10px;
    background-color: var(--black-high);
}

.pro-img {
    display: block;
    width: 80%;
    margin: 0 auto;
    transition: all .3s ease;
}

.img-gr .img-col {
    flex-basis: 24%;
    cursor: pointer;
    background-color: var(--black-high);
}

.single-details {
    padding-top: 30px;
}

.single-details h4 {
    padding: 40px 0 20px 0;
}

.single-details h2 {
    font-size: 26px;
}

.single-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    outline: none;
}

.single-details input {
    width: 50px;
    height: 47px;
    margin-right: 10px;
    padding-left: 10px;
    font-size: 22px; 
}

.single-details input[type=number]::-webkit-inner-spin-button {
    cursor: pointer;
} 

.single-details input:focus {
    outline: none;
}

.single-details .btn-normal {
    font-size: 20px !important;
    line-height: 20px !important;
    height: 47px !important;
}

.single-details span {
    line-height: 25px;
}

/* Blog */
.blog {
    margin: 100px auto;
}

.blog-post {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px !important;
}

.blog-post:last-child {
    margin-bottom: 0px;
}

.bog-img {
    width: 30%;
}

.bog-img img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-details {
    width: 70%;
    height: auto;
}

.blog-details a {
    position: relative;
    display: block;
    width: 100%;
    color: var(--black-high);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.blog-details a::after {
    content: "";
    position: absolute;
    display: block;
    top: 11px;
    left: 100px;
    width: 50px;
    height: 1px;
    background-color: var(--black-high);
}

.blog-details a:hover::after {
    background-color: var(--blue-mad);
}

.blog-details a:hover {
    color: var(--blue-mad);
}

.blog-details h1 {
    position: absolute;
    top: -40px;
    left: 5px;
    color: var(--gray);
    font-size: 70px;
    font-weight: 700;
    z-index: -9;
}

/* About */
.about {
    margin: 50px auto;
}

.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    background: url("../img/banner/shopping.jpg") repeat center center / contain;
}

.about-head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 90px;
}

.about-head img {
    display: block;
    width: 100%;
    height: 100%;
}

.who-we-are {
    padding: 0 20px;
}

.accordion-button {
    box-shadow: none !important;
}

.accordion-body {
    color: var(--white) !important;
    background-color: var(--black-high) !important;
}

marquee {
    width: 100%;
    padding: 10px 0;
    color: var(--black-high);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

/* .about-us h1 {
    padding: 10px 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
} */

.about-us .about-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Contact */
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    text-align: center;
}

.contact {
    margin: 50px auto;
}

.form-details {
    margin: 50px auto;
}

.form-details .container {
    padding: 40px;
    border: 1px solid var(--gray);
    border-radius: 8px;
}

.details {
    padding: 20px 30px;
}

.details span,
.form form span {
    font-size: 1.3rem;
}

.details h2,
.form form h2 {
    padding: 26px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
}

.details h3 {
    padding-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 35px;
}

.details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

.details li i {
    color: var(--blue);
    font-size: 17px;
    padding-right: 22px;
}

.details li p {
    margin: 0;
    font-size: 17px;
}

.map iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/*      Contact -> Form */
.form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form form input,
.form form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 15px;
    outline: none;
    border: 1px solid var(--gray);
    border-radius: 5px !important;
}

.form form textarea {
    resize: none;
}

.form form button {
    color: var(--black-high);
}

.people {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.people div {
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.people div img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.people div p {
    margin: 0;
    font-size: 18px;
    line-height: 25px;
}

.people div p span {
    color: var(--black-high);
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Cart */
.cart {
    margin: 50px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cart::-webkit-scrollbar,
.cart::-webkit-scrollbar-track,
.cart::-webkit-scrollbar-thumb,
.cart::-webkit-scrollbar-thumb:hover { 
    opacity: 0;
    visibility: hidden;
}

.cart table {
    width: 100% !important;
    border-collapse: collapse !important;
    /* table-layout: auto !important; */
    white-space: nowrap !important;
}

.cart table > *,
.cart table td {
    color: var(--black-high) !important;
}

.cart table > tbody{
    line-height: 70px;
}

.cart table img {
    display: block;
    width: 70px;
    height: 70px;
    line-height: auto;
    margin: 0px auto;
}

.cart table tr td input {
    width: 50px;
    height: 47px;
    line-height: 47px;
    margin-right: 10px;
    padding-left: 10px;
    font-size: 22px; 
}

.cart table tr td input[type=number]::-webkit-inner-spin-button {
    cursor: pointer;
} 

.cart table tr td input:focus {
    outline: none;
}

.cart table td:nth-child(1) {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

.cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

.cart table td:nth-child(4)
.cart table td:nth-child(5)
.cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

.cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px 5px 10px 15px;
}

/* cart p-2 */
.cart-add {
    margin: 50px auto;
}

.cupon h3 {
    padding-bottom: 15px;
}

.cupon input {
    width: 60%;
    margin-right: 10px;
    padding: 10px 20px;
    outline: none;
    border: 1px solid var(--gray);
}

.cupon button,
.subtotal button {
    padding: 12px 20px;
    color: var(--white);
    background-color: var(--black-high);
}

.subtotal {
    padding: 30px;
    border: 1px solid var(--black-high);
    border-radius: 5px;
}

.subtotal table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.subtotal table > *,
.subtotal table td {
    color: var(--black-high) !important;
}

/* Media Queries */
@media screen and (max-width: 1050px) {
    .menu-item {
        margin-left: 10px;
    }

    .container-footer div[class^="col"] {
        border-bottom: 1px solid var(--border-color1);
    }

    .container-footer div[class^="col"]:nth-child(3) {
        padding-top: 50px;
    }
    .container-footer div[class^="col"]:nth-child(3),
    .container-footer div[class^="col"]:nth-child(4) {
        border-bottom: 0px;
    }
    
    .collection .row {
        flex-wrap: wrap !important;
    }

    .blog-post {
        flex-direction: column;
        padding: 0 20px;
    }

    .blog-details h1 {
        left: 20px;
    }
}

@media screen and (max-width: 917px) {
    .menu-item > a {
        padding: 0 10px;
    }

    .copyright * {
        font-size: 1.3rem !important;
    }

    .newsletter {
        padding: 0 0 0 33px;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }

    .cookie {
        width: 300px;
        height: auto;
        margin: 10px;
        padding: 10px;
        flex-direction: column;
        justify-content: space-around;
        border-radius: 5px;
    }

    .cookie img {
        max-width: 40px;
    }

    .cookie p,
    .cookie a,
    .cookie button,
    .content h1 {
        font-size: 18px !important;
    }

    .content a {
        padding-top: 0px !important;
    }

    .btn-actions button {
        padding: 10px;
        font-size: 15px !important;
    }
}

@media screen and (min-width: 819.50px) {
    .menu-item:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        z-index: 99999;
    }
    
    /* Hide mobile menu on desktop */
    .mobile-menu {
        display: none !important;
    }
}

@media screen and (max-width: 819.50px) {
    .container {
        max-width: auto !important;
    }

    /* Show mobile menu on small screens */
    .mobile-menu {
        display: flex !important;
    }
    
    /* Hide desktop menu on small screens */
    .header--main > nav.menu {
        display: none !important;
    }

    .col-md-6 {
        margin: 0 auto;
    }

    .f-nav {
        z-index: 2;
        background-color: var(--body-bg-color) !important;
        backdrop-filter: unset !important;
    }

    .header--main {
        justify-content: space-around;
    }


    /* Hamburger Menu */
    .mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Hide desktop menu on mobile */
    .header--main > .menu {
        display: none;
    }

    #menu__toggle {
        opacity: 0;
    }
    
    #menu__toggle:checked ~ .menu__btn > span {
        transform: rotate(45deg);
    }
    #menu__toggle:checked ~ .menu__btn > span::before {
        top: 0;
        transform: rotate(0);
    }
    #menu__toggle:checked ~ .menu__btn > span::after {
        top: 0;
        transform: rotate(90deg);
    }
    #menu__toggle:checked ~ .menu__box {
        visibility: visible !important;
        left: 0 !important;
        background-color: #f8f9fa !important;
    }
    
    .menu__box {
        display: block !important;
        position: fixed !important;
        visibility: hidden;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        margin: 0;
        padding: 80px 20px 20px 20px !important;
        list-style: none;
        background-color: #ffffff !important;
        box-shadow: 2px 0px 10px rgba(0, 0, 0, .3) !important;
        transition: all .3s ease !important;
        z-index: 9999 !important;
        overflow-y: auto;
    }
    
    .menu__box .menu {
        width: 100%;
        height: 100%;
    }
    
    .menu__box .ul-menu {
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .menu__box .menu-item {
        display: block !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #ddd !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .menu__box .menu-item a {
        font-family: 'Inter', 'Roboto', Arial, sans-serif !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #333 !important;
        text-decoration: none !important;
        transition-duration: .25s;
        display: block !important;
        width: 100% !important;
        line-height: 1.4 !important;
        padding: 5px 0 !important;
    }
    
    .menu__box .menu-item a:hover {
        color: var(--brown-mode);
    }

    .menu__box .menu-item-child > a .uil {
        float: right;
        margin-top: 2px;
    }

    .menu__box .sub-menu {
        display: none;
        background-color: #f8f9fa;
        padding-left: 20px;
        margin: 10px 0;
    }

    .menu__box .sub-menu.active {
        display: block;
    }

    .menu__box .sub-menu .sub-menu-item {
        padding: 8px 0;
        border-bottom: 1px solid #ddd;
    }

    .menu__box .sub-menu .sub-menu-item a {
        font-size: 16px;
        font-weight: 400;
        color: #666;
    }

    .menu__box .sub-menu-level2 {
        display: none;
        background-color: #f0f1f2;
        padding-left: 15px;
        margin: 5px 0;
    }

    .menu__box .sub-menu-level2.active {
        display: block;
    }

    .menu__box .sub-menu-level2 .sub-menu-item a {
        font-size: 14px;
        color: #777;
    }
    
    .menu__btn {
        display: flex;
        justify-content: baseline;
        align-items: center;
        position: absolute;
        width: 26px;
        height: 26px;
        line-height: 26px;
        cursor: pointer;
        z-index: 1;
    }
    
    .menu__btn > span,
    .menu__btn > span::before,
    .menu__btn > span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--black-high);
        transition-duration: .25s;
    }
    .menu__btn > span::before {
        content: '';
        top: -8px;
    }
    .menu__btn > span::after {
        content: '';
        top: 8px;
    }

    .menu-item .sub-menu {
        transition: none;
    }

    .menu-item > .sub-menu.active {
        position: relative;
        display: block;
        margin: 0;
        padding: 20px 0;
        width: 70%;
        box-shadow: none;
        color: var(--white);
        background-color: var(--nav-drop);
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        z-index: 0;
    }

    .sub-menu.active > li {
        padding: 10px 0;
    }

    a.active-n:hover {
        color: unset !important;
    }
    
    .js-sub_menu {
        font-size: 2rem;
    }

    .js-sub_menu i {
        display: inline-block;
        transition: all .1s ease-in-out;
    }

    .js-sub_menu i.opened {
        transform: rotate(180deg) !important;
    }

    /* Other */

    .carousel-inner,
    .carousel-item img {
        height: 100% !important;
        min-height: 270px !important;
        background: no-repeat center center scroll !important;
        -webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

    .circle-img-inner img {
        margin-top: 30px;
    }

    /* Categories */
    .product-box {
        height: 328px;
        padding: 0;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: repeat(5, minmax(100px, 120px));
        overflow-y: auto;
    }

    .product-box::-webkit-scrollbar,
    .product-box::-webkit-scrollbar-track,
    .product-box::-webkit-scrollbar-thumb,
    .product-box::-webkit-scrollbar-thumb:hover { 
        opacity: 0;
        visibility: hidden;
    }

    /* Products */
    .product-item-inner {
        width: auto;
        min-width: auto;
    }

    .discount {
        top: 2%;
    }

    /* Features */
    .feature {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .feature::-webkit-scrollbar,
    .feature::-webkit-scrollbar-track,
    .feature::-webkit-scrollbar-thumb,
    .feature::-webkit-scrollbar-thumb:hover { 
        opacity: 0;
        visibility: hidden;
    }

    /* Collection */
    .collection .row {
        grid-template-columns: repeat(1, 1fr);
    }

    .collection .container:nth-child(2) .row {
        margin-top: 10px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 25vh);
    }   
    
    /* Newsletter */
    .n-form input[type="text"] {
        width: 55%;
    }

    /* Footer */
    .footer {
        margin-top: 0px !important;
    }

    .container-footer div[class^="col"] {
        margin-top: 20px;
        padding: 0 auto;
    }

    .container-footer div[class^="col"] {
        padding: 0 20px !important;
    }

    .container-footer div[class^="col"]:nth-child(3) {
        margin-top: 0px;
        padding-top: 50px;
    }

    .footer h4 {
        font-size: 1.5rem;
    }
    
    .footer p,
    .footer a {
        font-size: 1.2rem;
    }

    .social-fllw i {
        padding-right: 0px;
    }

    /* Contact */
    .contact div[class^="col"] {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .form {
        position: relative;
        width: 100%;
        padding-bottom: 50px;
    }

    .details ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .details h3 {
        text-align: center;
    }
    
    .map iframe {
        height: 328px !important;
    }

    /*      Contact -> Form */

    .form-details .container {
        width: 98%;
        border: none;
    }

    .form {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .form h3 {
        font-size: 20px;
    }

    .people {
        width: 100%;
        margin: 100px auto 50px auto;
    }

    /* Cart */
    .single-details input,
    .cart table tr td input {
        margin: auto !important;
        padding: 0px !important;
        font-size: auto !important;
        line-height: 47px !important;
    }  

    /* Blog */
    .blog-post {
        margin-bottom: 50px !important;
    }
}

@media screen and (max-width: 768px) {
    .products .row div[class^="col"] {
        width: 50% !important;
    }

    .container-footer div[class^="col"] {
        border: 0px;
    }

    .container-footer div[class^="col"]:nth-child(3) {
        padding-top: 0px;
    }

    .footer h4 {
        font-size: 1.8rem;
    }
    
    .footer p {
        font-size: 1.2rem;
    }
    
    .container-footer div[class^="col"] a, p {
        margin-bottom: 2rem;
        font-weight: 600;
    }

    .go-to-link {
        margin-bottom: 0px;
    }

    .newsletter div[class^="col"] {
        margin: 0px auto;
        justify-content: center;
    }

    /* Cart */
    .cart-add {
        width: 98%;
    }

    .cupon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cupon div {
        display: flex;
    }

    .subtotal {
        margin: 50px auto;
    }
}

@media screen and (max-width: 600px) {
    .products .row div[class^="col"] {
        width: 80% !important;
    }
}

@media only screen and (max-device-width: 558px), screen and (max-width: 530px) {
    .header--logo {
        margin-left: 10px;
    }

    /* Categories */
    .product-box {
        height: auto !important;
        grid-template-columns: repeat(2, minmax(80px, 1fr)) !important;
        grid-template-rows: repeat(auto-fill, minmax(auto, 1fr)) !important;
        justify-content: center;
        justify-items: space-around;
        gap: 10px;
    }

    .cat-box {
        height: 50px;
    }

    .footer .copyright {
        display: block;
    }

    .by {
        margin: 0;
        display: inline-block;
    }

    /* Products */    
    .discount {
        top: 3%;
    }
}

@media screen and (max-width: 375px) {
    .header--logo {
        margin-left: 0px;
    }
}

@media screen and (max-width: 374px) {
    body {
        min-width: 375px;
    }
}

/* Category title styling */
.category-title {
    color: var(--menu-blue) !important;
    border-bottom: 2px solid var(--menu-blue);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* Category item styling */
.category-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--menu-blue);
}

.category-item-inner {
    position: relative;
    padding: 0;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--menu-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.category-item .img-box {
    margin: 0;
    overflow: hidden;
    height: 200px;
}

.category-item .img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .img-box img {
    transform: scale(1.05);
}

.category-details {
    padding: 20px;
    text-align: center;
}

.category-details .cat {
    color: var(--menu-blue);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.category-details .title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.category-item:hover .category-details .title {
    color: var(--menu-blue);
}

.category-details .description {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}

.subcategories {
    margin-top: 15px;
}

.sub-tag {
    display: inline-block;
    background: #f8f9fa;
    color: var(--menu-blue);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sub-tag:hover {
    background: var(--menu-blue);
    color: white;
}

/* Sample image background gradients */
.category-item .img-box img[alt*="Zirconia"] {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.category-item .img-box img[alt*="Glass Ceramic"] {
    background: linear-gradient(45deg, #e8f4fd, #d1e9f6);
}

.category-item .img-box img[alt*="PMMA"] {
    background: linear-gradient(45deg, #fff5e6, #ffe6cc);
}

.category-item .img-box img[alt*="WAX"] {
    background: linear-gradient(45deg, #f9f1e6, #f0e6d2);
}

.category-item .img-box img[alt*="Scanner"] {
    background: linear-gradient(45deg, #e6f3ff, #cce6ff);
}

.category-item .img-box img[alt*="Milling"] {
    background: linear-gradient(45deg, #f0f8ff, #e0f0ff);
}

.category-item .img-box img[alt*="Furnace"] {
    background: linear-gradient(45deg, #fff0e6, #ffe6cc);
}

.category-item .img-box img[alt*="3D Printer"] {
    background: linear-gradient(45deg, #f5f0ff, #ede0ff);
}

.category-item .img-box img[alt*="Resin"] {
    background: linear-gradient(45deg, #fff5f5, #ffe6e6);
}

.category-item .img-box img[alt*="Curing"] {
    background: linear-gradient(45deg, #f0fff0, #e0ffe0);
}

.category-item .img-box img[alt*="Microscope"] {
    background: linear-gradient(45deg, #f8f8ff, #e8e8ff);
}

.category-item .img-box img[alt*="Apex"] {
    background: linear-gradient(45deg, #fffacd, #fff8dc);
}

/* WAX Page Styles */
.advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-card .card-icon {
    margin-bottom: 1.5rem;
}

.advantage-card .card-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.efficiency-comparison {
    margin-top: 1rem;
}

.comparison-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
}

.comparison-item.modern {
    background: #e8f5e8;
    color: #2d5a2d;
}

.comparison-item.traditional {
    background: #fff3cd;
    color: #856404;
}

.vs-divider {
    font-weight: bold;
    color: #666;
    margin: 0.5rem 0;
}

.time-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.time-badge.success {
    background: #28a745;
    color: white;
}

.time-badge.warning {
    background: #ffc107;
    color: #212529;
}

.precision-metric {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.metric-label {
    font-weight: 600;
    color: #666;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
    margin-left: 0.5rem;
}

.standardization-feature {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #d4edda;
    border-radius: 8px;
    color: #155724;
}

.standardization-feature i {
    margin-right: 0.5rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.application-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.features-grid .feature-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.features-grid .feature-item:nth-child(1) {
    border-left-color: #ffc107;
}

.features-grid .feature-item:nth-child(2) {
    border-left-color: #dc3545;
}

.features-grid .feature-item:nth-child(3) {
    border-left-color: #28a745;
}

.features-grid .feature-item:nth-child(4) {
    border-left-color: #17a2b8;
}

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

/* Scanner Page Styles */
.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.type-tag {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.application-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.application-card .card-icon {
    margin-bottom: 1.5rem;
}

.application-card .card-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.application-card h5 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.application-card p {
    color: #666;
    line-height: 1.6;
}

.specification-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specification-table thead {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.specification-table thead th {
    color: white !important;
    font-weight: 600;
    border: none !important;
    padding: 1rem;
}

.specification-table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

.specification-table tbody tr:hover {
    background-color: #f8f9fa;
}

.features-content .feature-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.features-content .feature-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.features-content .feature-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
    width: 100%;
}

.features-content .feature-item h4 i {
    margin-right: 0.5rem;
}

.features-content .feature-item p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
    display: block;
    width: 100%;
}

/* Milling Machine Page Styles */
.product-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-hero-content {
    padding-right: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.product-features-list {
    margin-top: 2rem;
}

.product-features-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-features-list .feature-item i {
    color: #27ae60;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technical-features {
    background: #fff;
}

.feature-item-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-text h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-grid-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-grid-item:hover {
    transform: translateY(-5px);
}

.feature-grid-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-grid-item h6 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-grid-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.advanced-capabilities {
    background: #f8f9fa;
}

.capability-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.capability-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.capability-header i {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-right: 1rem;
}

.capability-header h4 {
    color: #2c3e50;
    margin-bottom: 0;
    font-weight: 600;
}

.capability-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.applications {
    background: white;
}

.application-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.application-card:hover {
    background: white;
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.application-card:hover .application-icon {
    transform: scale(1.1);
}

.application-icon i {
    font-size: 2rem;
    color: white;
}

.application-card h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.application-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-section {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Curing Light Specific Styles */
.power-settings {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.power-level {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.75rem;
    text-align: center;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.power-level:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.power-settings h5 {
    color: #495057;
    font-weight: 600;
}

.specification-table {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.specification-table th {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    border: none;
}

.specification-table td {
    vertical-align: middle;
    padding: 1rem;
}

.specification-table tbody tr:hover {
    background-color: rgba(0,123,255,0.05);
}

@media (max-width: 768px) {
    .power-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .power-level {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .power-settings {
        padding: 1rem;
    }
}

/* Dental Microscope Specific Styles */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.feature-icon-large {
    margin-bottom: 1.5rem;
}

.feature-icon-large i {
    font-size: 3rem !important;
}

.product-main-image {
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image-container {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    border: 1px solid #e9ecef;
}

.product-advantages {
    background-color: #f8f9fa !important;
}

.detail-item h4 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-item h4 i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-icon-large i {
        font-size: 2.5rem !important;
    }
    
    .product-image-container {
        padding: 0.75rem;
    }
}

/* Root Apex Locator Specific Styles */
.advantage-item {
    display: flex;
    align-items-flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.advantage-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 2.5rem;
    padding: 1rem;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-content h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.product-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .advantage-icon i {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }
}

/* Products Page Styles */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb .active {
    color: #6c757d;
}

/* Hero Section Styles */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 20px;
}

.section-title i {
    margin-right: 15px;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #007bff, #28a745);
    border-radius: 2px;
}

.product-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-inner {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 123, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

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

.product-details {
    padding: 30px 25px;
    height: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #007bff;
}

.product-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-section .btn-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-section .btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.cta-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    margin: 2rem 0;
}

.cta-features {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.certifications {
    margin: 15px 0;
}

.cert-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

/* Section Background Alternation */
.products-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.products-section:nth-child(odd) {
    background: #ffffff;
}

/* Category-specific styling */
.materials-title::after {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
}

.equipment-title::after {
    background: linear-gradient(45deg, #28a745, #1e7e34) !important;
}

.accessory-title::after {
    background: linear-gradient(45deg, #ffc107, #e0a800) !important;
}

/* Category-specific product cards */
.products-section:nth-child(3) .product-category {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.products-section:nth-child(4) .product-category {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.products-section:nth-child(5) .product-category {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.products-section:nth-child(3) .tag {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.products-section:nth-child(4) .tag {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.products-section:nth-child(5) .tag {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

/* Enhanced hover effects for different categories */
.products-section:nth-child(3) .product-card::before {
    background: linear-gradient(90deg, #007bff, #0056b3, #004085);
}

.products-section:nth-child(4) .product-card::before {
    background: linear-gradient(90deg, #28a745, #1e7e34, #155724);
}

.products-section:nth-child(5) .product-card::before {
    background: linear-gradient(90deg, #ffc107, #e0a800, #d39e00);
}

/* Mobile Responsive Styles for Products Page */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-title i {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-details {
        padding: 25px 20px;
        height: calc(100% - 220px);
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .breadcrumb-section {
        padding: 15px 0;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-card {
        margin-bottom: 2rem;
    }
    
    .hero .display-4 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Apply animations */
.product-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.stat-item {
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.cta-section .btn-light {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.product-image img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-image img.loaded {
    opacity: 1;
}

/* ------------ Service Page Styles ---------------- */
.service-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.feature-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.service-features {
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.section-title i {
    font-size: 3rem;
    margin-right: 1rem;
    vertical-align: middle;
}

.service-content {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-highlights {
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.highlight-item i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* World Map Visual */
.world-map {
    position: relative;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    overflow: hidden;
}

.world-map > i {
    font-size: 8rem;
    color: #0ea5e9;
    opacity: 0.3;
    margin-bottom: 2rem;
}

.support-zones {
    position: relative;
}

.zone {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zone-1 { top: 20%; left: 10%; }
.zone-2 { top: 30%; right: 20%; }
.zone-3 { bottom: 30%; right: 15%; }
.zone-4 { bottom: 20%; left: 25%; }

.pulse {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Service Process */
.service-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-content h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: bold;
}

/* Customization Chart */
.customization-chart {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.chart-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chart-bar {
    flex: 1;
    position: relative;
    background: #e2e8f0;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.chart-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 20px;
    transition: width 2s ease;
    width: 0%;
}

.chart-label {
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: #1e293b;
}

/* Delivery Stats */
.delivery-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 15px;
    flex: 1;
    min-width: 120px;
    border: 2px solid #0ea5e9;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.certifications-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    background: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #92400e;
    border: 2px solid #f59e0b;
}

.cert-item i {
    margin-right: 0.5rem;
    color: #f59e0b;
}

/* Delivery Network */
.delivery-network {
    background: linear-gradient(135deg, #fef7ff, #f3e8ff);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    min-height: 300px;
}

.warehouse-map {
    position: relative;
    height: 100%;
}

.warehouse {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    min-width: 100px;
}

.warehouse:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.warehouse-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    font-size: 1.25rem;
}

.warehouse-1 { top: 10%; left: 5%; }
.warehouse-2 { top: 15%; right: 10%; }
.warehouse-3 { bottom: 20%; right: 5%; }
.warehouse-4 { bottom: 10%; left: 15%; }
.warehouse-5 { top: 50%; left: 50%; transform: translateX(-50%); }

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 150px 150px;
    animation: floatPattern 25s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
    }
    
    .feature-badge {
        justify-content: center;
    }
    
    .service-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .delivery-stats {
        flex-direction: column;
    }
    
    .certifications-row {
        justify-content: center;
    }
    
    .warehouse {
        position: static;
        margin: 0.5rem;
        display: inline-block;
    }
    
    .zone {
        position: static;
        margin: 0.5rem;
        display: inline-block;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ------------ Contact Page Styles ---------------- */
.contact-hero {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%); */
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 120px 120px;
    /* animation: floatPattern 30s linear infinite; */
    background: url("../img/contact/bg.jpg") repeat center center / contain;
}

.hero-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.contact-info {
    background: #f8fafc;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-detail a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #1d4ed8;
}

.contact-info-extra {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.contact-info-extra strong {
    color: #1e293b;
}

/* Additional Contact Methods */
.additional-contact {
    background: #f8fafc;
}

.contact-method {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-icon.wechat {
    background: linear-gradient(135deg, #07c160, #00c851);
}

.method-icon.skype {
    background: linear-gradient(135deg, #00aff0, #0078d4);
}

.method-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.contact-method h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    background: white;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

.contact-map {
    border: 0;
    border-radius: 15px;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,35 85,35 65,55 75,80 50,65 25,80 35,55 15,35 40,35" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 80px 80px;
    animation: floatPattern 40s linear infinite reverse;
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency-icon {
    font-size: 3.5rem;
    opacity: 0.9;
}

.emergency-contacts .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-contacts .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* WeChat Modal */
.wechat-info {
    padding: 1rem;
}

.qr-placeholder {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
    border: 2px dashed #d1d5db;
}

.qr-icon {
    font-size: 4rem;
    color: #00c851;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .emergency-contacts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .emergency-contacts .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .contact-method {
        margin-bottom: 1.5rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .emergency-icon {
        font-size: 3rem;
    }
}

.carousel-caption {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    border-radius: 15px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: slideUp 0.6s ease-out forwards;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 1rem 1.5rem;
        border-radius: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

body, p, div, span, li, td, th, h1, h2, h3, h4, h5, h6, 
.product-subtitle, .product-description, .feature-item p, 
.advantage-card p, .application-card p, .carousel-caption p,
.description-content, .lead,  .header a{
    word-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* 特别针对长单词的处理 */
.text-break-word {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

/* 保持代码和技术术语的完整性 */
code, pre, .technical-term, .product-code {
    word-break: keep-all;
    white-space: nowrap;
}

/* 响应式处理 */
@media (max-width: 768px) {
    body, p, div, span, li {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* 子菜单悬浮效果 */
.sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-item-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 二级子菜单悬浮效果 */
.sub-menu-level2 {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-menu-item.menu-item-child:hover .sub-menu-level2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 子菜单项悬浮效果 */
.sub-menu-item a {
    position: relative;
    transition: all 0.3s ease;
    padding: 12px 20px;
    display: block;
    border-radius: 6px;
    margin: 2px 0;
}

.sub-menu-item a:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* 子菜单项图标动画 */
.sub-menu-item a i {
    transition: transform 0.3s ease;
    display: none
}

.sub-menu-item.menu-item-child a:hover i {
    transform: rotate(90deg);
    display: none
}

/* 主菜单项悬浮效果 */
.menu-item a {
    position: relative;
    transition: all 0.3s ease;
    /* padding: 10px 15px; */
    border-radius: 6px;
}

.menu-item a:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateY(-2px);
}

/* 移动端菜单悬浮效果优化 */
@media (max-width: 768px) {
    .menu__box .sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        position: static;
        box-shadow: none;
        background: rgba(0, 123, 255, 0.05);
        margin-left: 15px;
        border-left: 2px solid #007bff;
    }
    
    .menu__box .sub-menu-level2 {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        position: static;
        box-shadow: none;
        background: rgba(0, 123, 255, 0.03);
        margin-left: 15px;
        border-left: 2px solid #28a745;
    }
    
    .menu__box .sub-menu-item a:hover {
        transform: translateX(0);
        background: rgba(0, 123, 255, 0.2);
    }
}

/* 菜单展开动画 */
.menu-item-child > a::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #666 transparent transparent transparent;
    transition: transform 0.3s ease;
}

.menu-item-child:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* 悬浮状态下的背景渐变 */
.sub-menu::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #28a745, #ffc107, #dc3545);
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.menu-item-child:hover .sub-menu::before {
    opacity: 0.1;
}

.menu-item > a::after {
    display:none
}
