/* ===== STYLE.CSS ===== */
body {
    margin: 0;
    font-family: Arial, Ubuntu, sans-serif;
    background-color: #000;
    color: #fff;
    background-color: #f0f0f0;
}

header {
    background: #bdbebf;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    height: 70px;
    transition: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.search-form {
    margin-left: 25px;
    position: relative;
}

.search-form input[type="text"] {
    padding: 6px 40px 6px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-form input[type="text"]:focus {
    border: 1px solid #666;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.search-form button:hover {
    color: #000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

nav {
    margin-left: 320px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: flex;
    align-items: center;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a.active {
    border-bottom: 2px solid #000;
}

nav ul li.search-item {
    margin-left: 500px;
}

.auth-box {
    background: #333;
    padding: 10px 25px;
    margin-top: 15px;
    display: inline-block;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

.auth-box i {
    margin-right: 10px;
    color: limegreen;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-right: 50px;
}

.nav-menu li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu li a.active {
    border-bottom: 2px solid #000;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons i {
    color: #000;
    font-size: 20px;
    cursor: pointer;
}

.language-selector {
    margin-left: 15px;
}

.hero {
    position: relative;
    margin-bottom: 20px;
}

.carousel-item {
    height: 580px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1080px 630px;
    background-color: #08090f;
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h2 {
    font-size: 4rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.25rem;
    color: #fcb434;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 80% 80%;
    width: 100%;
    height: 100%;
    filter: invert(100%);
}

.btn-transparent-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #474747;
    font-weight: 500;
}

.btn-transparent-white:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.category-section {
    width: 100%;
    max-width: 1325px;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category-heading {
    font-family: Ubuntu;
    font-weight: 600;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #333;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.category-item {
    position: relative;
    width: calc(25% - 15px);
    height: 200px;
    color: white;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease-in-out;
}

.category-item:hover img {
    filter: brightness(0.9);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

.category-name {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
}

.category-icon {
    font-size: 1.5em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .category-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .category-item {
        width: 100%;
    }
}

.carousel-sm-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.section-heading {
    font-family: Ubuntu;
    font-weight: 600;
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #333;
    text-align: center;
}

.carousel-sm-container {
    position: relative;
    overflow: hidden;
    padding: 0 55px;
    color: #333;
}

.carousel-sm-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    color: #333;
    gap: 1px;
}

.carousel-sm-item {
    width:100%;
    height:100%;
    padding: 1px;
    box-sizing: border-box;
    background-color: #333;
}

.carousel-sm-item img {
    object-fit: contain;
    display: block;
}

.carousel-sm-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-sm-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 60px;
}

.next-btn {
    right: 30px;
}

.product-gallery {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: 'Ubuntu','Orbitron', 'Tahoma', sans-serif;
    font-weight: 600;
    color: #333;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

@keyframes aimRightMirror {
    0% {
        transform: scaleX(-1) rotate(0deg) translateX(0);
    }
    50% {
        transform: scaleX(-1) rotate(4deg) translateX(8px);
    }
    100% {
        transform: scaleX(-1) rotate(2deg) translateX(4px);
    }
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover img {
    animation: aimRight 0.4s ease forwards;
}

.product-card h3 {
    font-size: 1rem;
    margin-top: 15px;
    font-weight: bold;
    color: #000;
}

.product-card p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
}

.contact-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #444;
}

.top-social-bar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 30px;
    font-size: 18px;
    z-index: 1001;
}

.top-social-bar .social-icons i {
    color: white;
    margin-right: 15px;
    cursor: pointer;
    font-size: 20px;
}

.top-social-bar .language-selector select {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
}

.fixed-top-social {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.about-section {
    padding: 40px;
    background: #f5f5f5;
}

.about-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.about-text {
    font-size: 18px;
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text .title {
    margin-top: 0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}

.footer {
    background-color: #000;
    color: white;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 10px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ccc;
}

#backToTopBtn {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #555;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}

#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#backToTopBtn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.whatsapp-btn img {
    width: 50px;
    height: 50px;
}

/* ===== STYLE-PRODUCTS.CSS ===== */
body.products-page {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 30px;
}

.navbar .logo {
    font-weight: 700;
    font-size: 20px;
}

.navbar .logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .social-icons a {
    color: #fff;
    margin-right: 8px;
    font-size: 18px;
}

.lang-select {
    padding: 5px;
    border-radius: 4px;
}

.search-box {
    display: flex;
}

.search-box input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-box button {
    background: #000;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.product-detail {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.product-images {
    flex: 1;
}

.product-info {
    flex: 2;
}

.product-info h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-info p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.products-page .contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
}

.products-page .contact-btn:hover {
    background: #333;
}

.share {
    margin-top: 10px;
}

.share span {
    margin-right: 10px;
    font-weight: 500;
}

.share a {
    margin-right: 10px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}

.categories {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.products-page .category-section {
    width: 100%;
    max-width: 1325px;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.main-image:hover {
    transform: scale(1.1);
}

.thumbs img {
    cursor: pointer;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transition: transform .15s ease, box-shadow .15s ease;
}

.thumbs img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.thumbs img.active {
    outline: 2px solid #111;
}

.zoom-area {
    position: relative;
    width: 510px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.zoom-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.zoom-area .main-image {
    width: 100%;
    display: block;
    cursor: crosshair;
    transition: transform 0.15s ease;
    transform-origin: center center;
}

.thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.product-page {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info {
    padding-left: 20px;
}

.product-specs {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.product-specs.full-width {
    grid-column: 1 / -1;
}

.tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.tab-btn.active {
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
}

.tab-content {
    padding: 15px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 8px 10px;
    vertical-align: top;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 225px;
}