/* Tabs strip */
ul li {
font-size: 19px;
color: #000;
text-align: justify;
font-family: MyFontlight;
}

.spec-tabs {
border-bottom: 1px solid #eee;
margin-bottom: 0;
}

.spec-tabs .nav-link {
border: none;
border-radius: 0;
padding: 12px 22px;
font-size: 19px ;
font-weight: 600;
color: #463F3A;
position: relative;
background: transparent;
font-family: 'MyFontbold';
}

.spec-tabs .nav-link i {
font-size: 18px;
color: #463F3A; /* icon color */
}

/* Inactive tab underline (transparent) */
.spec-tabs .nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 100%;
height: 3px;
background: transparent;
transition: background 0.25s ease;
}

/* Active tab */
.spec-tabs .nav-link.active {
color: #000;
font-size: 19px;
}

.spec-tabs .nav-link.active::after {
background: #000; /* orange bar */
}

/* Tab content spacing */
.spec-tab-content {
border: 1px solid #eee;
border-top: none;
padding: 0;
}

/* Table style */
.spec-table {
margin-bottom: 0;
border-color: #eee;
}

.spec-table tr th,
.spec-table tr td {
padding: 12px 20px;
font-size: 14px;
vertical-align: middle;
border-color: #eee;
}

.spec-table tr th {
width: 30%;
font-weight: 600;
color: #333;
background: #fafafa;
}

.spec-table tr td {
color: #555;
}

/* Small screen tweak */
@media (max-width: 576px) {
.spec-tabs .nav-link {
padding: 10px 12px;
font-size: 14px;
}
.spec-table tr th,
.spec-table tr td {
padding: 10px 12px;
}
}


/* Section */

.types-title {
font-size: 40px;
font-weight: 700;
}

.types-card {
position: relative;
min-height: 260px;
border-radius: 10px;
overflow: hidden;
}

.types-card-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
transition: .5s ease;
}

.types-card:hover .types-card-bg {
transform: scale(1.08);
}

.types-card-overlay {
position: absolute;
bottom: 0;
width: 100%;
padding: 20px 25px;
color: #fff;
}

.types-card-title {
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
}

.types-discover-btn {
background: none;
border: none;
color: #fff;
font-size: 14px;
letter-spacing: 1px;
text-transform: uppercase;
}

.types-discover-btn .plus {
color: #ff5b2a;
font-size: 20px;
}

.types-control-circle {
width: 55px;
height: 55px;
background: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 25px rgba(0,0,0,.25);
}

.carousel-control-prev,
.carousel-control-next {
opacity: 1 !important;
width: auto;                 /* prevent stretching */
top: 50%;                    /* vertically centered */
transform: translateY(-50%); /* perfect vertical centering */
}

.carousel-control-prev {
left: -70px;   /* move arrow OUTSIDE the image */
}

.carousel-control-next {
right: -70px;  /* move arrow OUTSIDE the image */
}

/* circle buttons */
.types-control-circle {
width: 55px;
height: 55px;
background: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 25px rgba(0,0,0,.25);
color: #222;
}

.types-control-circle i {
font-size: 16px;
color: inherit;
}


/* Marquee */
.marquee-section {
background: #463F3A;
overflow: hidden;
}

.marquee-container {
width: 100%;
white-space: nowrap;
overflow: hidden;
}

.marquee-track {
display: inline-flex;
animation: marquee-scroll 30s linear infinite; /* SLOW SPEED */
}

.marquee-item {
font-size: 70px;
font-weight: 700;
color: transparent;
-webkit-text-stroke: 1.5px #fff;
display: inline-flex;
align-items: center;
}

.marquee-icon {
width: 22px;
height: 22px;
margin-left: 30px;
margin-right: 30px;
}

/* Animation */
@keyframes marquee-scroll {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}



/* Our Products */
a {
text-decoration: none;
}

/* Wrapper */
.carousel-wrapper {
overflow: hidden;
position: relative;
}

/* Track */
.carousel-track {
display: flex;
gap: 20px;
transition: transform 0.4s ease;
}

/* Make cards fixed width */
.other-card {
min-width: 250px;
max-width: 250px;
background: #fff;
border-radius: 16px;
overflow: hidden;
text-align: center;
transition: .3s;
padding-bottom: 15px;
border: 1px solid #463F3A;
}

.other-card:hover {
transform: translateY(-6px);
box-shadow: 0 14px 34px rgba(0,0,0,0.15);
}

.other-card-img {
width: 100%;
height: 200px;
object-fit: cover;
}

/* Arrows */
.carousel-arrows {
display: flex;
gap: 10px;
}

.arrow-btn {
background: #463F3A;
color: #fff;
border: none;
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 20px;
transition: .3s;
}

.arrow-btn:hover {
background: #000;
}

.carousel-wrapper {
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
}

/* Optional: hide scrollbar visually if you don’t want to see it */
.carousel-wrapper::-webkit-scrollbar {
display: none;
}
.carousel-wrapper {
-ms-overflow-style: none;  /* IE/Edge */
scrollbar-width: none;     /* Firefox */
}
.other-card h5 {
margin: 10px;
color: #463F3A;
font-size: 19px;
font-family: 'MyFontlight';
}

/* Responive  */
@media (min-width: 992px) and (max-width: 1300px) {
.spec-tabs .nav-link, .spec-tabs .nav-link.active {
    font-size: 18px;
}
ul li, .other-card h5 {
	font-size: 16px;
}

}

@media (max-width: 991.98px) {
	.additional * {
    line-height: 25px !important;
}
.spec-tabs .nav-link.active {
font-size: 16px !important;
}
.spec-tabs .nav-link i {
font-size: 16px !important;
}
.spec-tabs .nav-link {
font-size: 16px !important;
}
ul li {
font-size: 16px !important;
text-align: left;
}
.other-card h5 {
font-size: 16px !important;
}
.marquee-item {
font-size: 35px;
-webkit-text-stroke: 1px #fff;
}
.marquee-icon {
width: 30px !important;
height: 30px !important;
margin-left: 20px !important;
margin-right: 20px !important;
margin-bottom: 0 !important;
}
}