

:root {
    --primary-color: var(--color-rank-3);
    --secondary-color: var(--color-rank-1);
    --accent-color: var(--color-rank-8);
    --text-color: var(--color-rank-9);
    --text-dark: var(--color-rank-6);
    --light-bg: var(--color-rank-7);
    --border-color: var(--color-rank-5);
    --overlay-dark: var(--color-rank-29);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-rank-2);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-rank-2);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 8px;
    color: var(--color-rank-30);
    font-weight: 400;
    letter-spacing: 1.3px;
}

@media (min-width: 1200px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
}

.navbar {
    background: var(--primary-color);
    padding: 12px 0;
    box-shadow: 0 2px 20px var(--color-rank-33);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px var(--color-rank-43);
}

.navbar-brand {
    margin-right: 0;
}

.navbar-right-info {
    color: var(--text-color);
    white-space: nowrap;
}

.navbar-right-info i {
    color: var(--secondary-color);
    font-size: 18px;
}

.navbar-right-info small {
    font-size: 9px;
    opacity: 0.7;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.navbar-right-info strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.8px;
    padding: 10px 12px;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 11px;
        padding: 10px 10px;
        letter-spacing: 0.5px;
    }
    
    .navbar-right-info {
        font-size: 11px;
    }
    
    .navbar-right-info small {
        font-size: 8px;
    }
    
    .navbar-right-info strong {
        font-size: 11px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
    .navbar-nav .nav-link::after {
        left: 15px;
        right: 15px;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--color-rank-2);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-toggle i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 5px 30px var(--color-rank-44);
    border-radius: 6px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 220px;
}

.dropdown-item {
    color: var(--text-color);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--color-rank-34);
    color: var(--color-rank-2);
    padding-left: 25px;
}

.dropdown-item img {
    flex-shrink: 0;
}

.dropdown-item:focus {
    background: var(--color-rank-34);
    color: var(--color-rank-2);
}

.dropdown-divider {
    border-color: var(--color-rank-31);
    margin: 5px 0;
}

.offcanvas {
    background: var(--primary-color);
}

.offcanvas.offcanvas-start {
    width: 320px;
    max-width: 90%;
}

@media (max-width: 575px) {
    .offcanvas.offcanvas-start {
        max-width: 95%;
    }
}

#filterOffcanvas {
    background: var(--color-rank-2);
    max-width: 320px;
}

#filterOffcanvas .offcanvas-header {
    background: var(--primary-color);
    color: var(--color-rank-2);
    border-bottom: none;
    padding: 18px 20px;
}

#filterOffcanvas .offcanvas-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-rank-2);
    font-family: 'Michroma', sans-serif;
}

#filterOffcanvas .offcanvas-title i {
    color: var(--accent-color);
}

#filterOffcanvas .offcanvas-body {
    padding: 15px;
    background: var(--color-rank-16);
    overflow-y: auto;
}

#filterOffcanvas .product-sidebar-widget {
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px var(--color-rank-35);
    padding: 20px 18px;
    background: var(--color-rank-2);
}

#filterOffcanvas .product-sidebar-widget:last-child {
    margin-bottom: 0;
}

#filterOffcanvas .widget-title {
    font-size: 15px;
    margin-bottom: 15px;
}

#filterOffcanvas .category-link,
#filterOffcanvas .sub-category-link {
    font-size: 14px;
}

#filterOffcanvas .filter-checkbox-text {
    font-size: 13px;
}

#filterOffcanvas .btn-filter-apply,
#filterOffcanvas .btn-filter-reset {
    padding: 12px 16px;
    font-size: 13px;
}

#filterOffcanvas .btn-close {
    filter: invert(1);
    opacity: 1;
}

.offcanvas-header {
    border-bottom: 1px solid var(--color-rank-31);
    padding: 20px;
}

.offcanvas-body {
    padding: 20px 0;
}

.offcanvas-body .navbar-nav {
    flex-direction: column;
    gap: 0;
}

.offcanvas-body .nav-item {
    width: 100%;
}

.offcanvas-body .nav-link {
    border-bottom: 1px solid var(--color-rank-36);
    padding: 15px 20px;
    font-size: 14px;
}

.offcanvas-body .nav-link::after {
    display: none;
}

.offcanvas-body .dropdown-menu {
    background: var(--color-rank-36);
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
    padding: 0;
}

.offcanvas-body .dropdown-item {
    padding: 12px 20px 12px 40px;
    font-size: 13px;
    border-bottom: 1px solid var(--color-rank-36);
}

.offcanvas-body .dropdown-item:hover {
    padding-left: 45px;
}

.offcanvas-body .dropdown-toggle i.fa-chevron-down {
    font-size: 10px;
    float: right;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.offcanvas-body .dropdown.show .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.btn-close {
    filter: invert(1);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: calc(100vh - 79px);
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-rank-2);
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;

      
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--color-rank-38);
}

.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--color-rank-2);
    padding: 16px 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--color-rank-2);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-rank-32);
}

.swiper-pagination-bullet {
    background: var(--color-rank-2);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-description {
    font-size: 16px;
    color: var(--color-rank-4);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.service-card {
    background: var(--color-rank-2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--color-rank-26);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-27);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 20px;
    border-radius: 4px;
}

.service-card-body {
    padding: 30px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card-text {
    font-size: 15px;
    color: var(--color-rank-4);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-link:hover {
    gap: 15px;
    color: var(--primary-color);
}

.about-section {
    padding: 100px 0;
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--color-rank-27);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about-content {
    padding-left: 50px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text {
    font-size: 16px;
    color: var(--color-rank-4);
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--color-rank-2);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-family: 'Michroma', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--color-rank-37);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.references-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.reference-item {
    background: var(--color-rank-2);
    padding: 10%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    box-shadow: 0 2px 15px var(--color-rank-35);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.reference-item:hover {
    box-shadow: 0 5px 30px var(--color-rank-28);
    transform: translateY(-5px);
}

.reference-item img {
    max-width: 100%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.reference-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.products-section {
    padding: 100px 0;
}

.product-card {
    background: var(--color-rank-2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--color-rank-26);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-27);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card-body {
    padding: 25px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-card-title a {
    color: var(--primary-color);
}

.product-card-title a:hover {
    color: var(--secondary-color);
}

.product-card-text {
    font-size: 14px;
    color: var(--color-rank-4);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.product-price {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    font-family: 'Michroma', sans-serif;
    line-height: 1;
}

.product-price-currency {
    font-size: 16px;
    color: var(--color-rank-4);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.product-price-label {
    font-size: 11px;
    color: var(--color-rank-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-card-actions {
    display: flex;
    gap: 10px;
}

.product-card-actions .btn-view-product {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-card-actions .btn-view-product:hover {
    background: var(--light-bg);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-section .row {
    position: relative;
}

.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.gallery-filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    background: var(--color-rank-2);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--color-rank-26);
    border: 1px solid var(--color-rank-35);
}

.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 30px;
}

.gallery-filter-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.gallery-filter-btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: var(--color-rank-45);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-rank-34);
}

.gallery-filter-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--color-rank-2);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px var(--color-rank-39);
    transform: translateY(-2px);
}

.gallery-filter-btn.active::before {
    transform: scaleX(1);
}

.gallery-filter-btn.active i {
    transform: scale(1.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

.gallery-filter-btn:active {
    transform: scale(0.95);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: block;
    cursor: pointer;
    box-shadow: 0 2px 15px var(--color-rank-28);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 30px var(--color-rank-33);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rank-29), var(--color-rank-46));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--color-rank-2);
    transform: scale(0.5);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-popup {
    text-decoration: none;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.95;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.faq-section {
    padding: 100px 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--color-rank-2);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--color-rank-2);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    padding: 25px;
    font-size: 15px;
    color: var(--color-rank-4);
    line-height: 1.8;
}

.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--color-rank-2);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.cta-section .section-title {
    color: var(--color-rank-2);
}

.cta-section .section-description {
    color: var(--color-rank-38);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-outline-custom {
    background: transparent;
    color: var(--color-rank-2);
    padding: 16px 40px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--color-rank-2);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--color-rank-2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--text-color);
}

.footer-main {
    padding: 80px 0 50px;
}

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

.footer-logo .logo-main,
.footer-logo .logo-sub {
    color: var(--color-rank-2);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-rank-30);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-rank-31);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--color-rank-2);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-rank-2);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-rank-30);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-rank-2);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 20px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--color-rank-31);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--color-rank-40);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--color-rank-40);
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-bottom-links a:hover {
    color: var(--color-rank-2);
}

.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.page-banner {
    position: relative;
    padding: 120px 0 80px;
    background: url('https://picsum.photos/1920/600?grayscale') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
}

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

.banner-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-rank-2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.breadcrumb-item {
    font-size: 14px;
}

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

.breadcrumb-item a:hover {
    color: var(--color-rank-2);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-47);
    content: "/";
}

.blog-card {
    background: var(--color-rank-2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--color-rank-26);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-27);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.blog-card-date-day {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-family: 'Michroma', sans-serif;
}

.blog-card-date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--color-rank-4);
}

.blog-card-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-card-title a {
    color: var(--primary-color);
}

.blog-card-title a:hover {
    color: var(--secondary-color);
}

.blog-card-text {
    font-size: 15px;
    color: var(--color-rank-4);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--color-rank-2);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 20px var(--color-rank-26);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.sidebar-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 15px;
    background: var(--secondary-color);
    border: none;
    color: var(--color-rank-2);
    border-radius: 4px;
    cursor: pointer;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sidebar-categories a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.sidebar-categories span {
    color: var(--color-rank-4);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--primary-color);
}

.recent-post-content h6 a:hover {
    color: var(--secondary-color);
}

.recent-post-date {
    font-size: 12px;
    color: var(--color-rank-4);
}

.recent-post-date i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.editor-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-rank-4);
}

.editor-content p {
    margin-bottom: 20px;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.editor-content h1 { font-size: 36px; }
.editor-content h2 { font-size: 32px; }
.editor-content h3 { font-size: 28px; }
.editor-content h4 { font-size: 24px; }
.editor-content h5 { font-size: 20px; }
.editor-content h6 { font-size: 18px; }

.editor-content ul,
.editor-content ol {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.editor-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 26px;
}

.editor-content li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-rank-17); /* Bootstrap text-success */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0px;
    margin-right: 10px;
}

.editor-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--light-bg);
    font-style: italic;
    color: var(--color-rank-4);
}

.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.editor-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

.editor-content a:hover {
    text-decoration: underline;
}

.product-filter-bar {
    background: var(--color-rank-2);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 20px var(--color-rank-26);
    margin-bottom: 40px;
}

.btn-filter-trigger {
    padding: 12px 24px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    color: var(--color-rank-2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--color-rank-48);
}

.btn-filter-trigger:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-32);
}

.btn-filter-trigger i {
    font-size: 14px;
}

.products-info-bar {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-rank-18);
}

.products-count {
    font-size: 14px;
    color: var(--color-rank-4);
}

.products-count strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.floating-filter-btn {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 52px;
    height: 52px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--color-rank-32);
    z-index: 1045;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.floating-filter-btn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.floating-filter-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 25px var(--color-rank-49);
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    min-width: 150px;
}

.sidebar-filter {
    background: var(--color-rank-2);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 20px var(--color-rank-26);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sidebar-column {
    display: block;
}

.product-sidebar-wrapper {
    position: sticky;
    top: 100px;
}

.product-sidebar-widget {
    background: var(--color-rank-2);
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px var(--color-rank-50);
}

.product-sidebar-widget:last-child {
    margin-bottom: 0;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-rank-12);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-rank-19);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-rank-12);
}

.category-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.category-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-rank-6);
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.category-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.category-link:hover::before {
    width: 6px;
}

.sub-category-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    padding-left: 24px;
    border-left: 2px solid var(--color-rank-10);
}

.sub-category-link {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-rank-20);
    padding: 7px 0;
    padding-left: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sub-category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--color-rank-13);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sub-category-link:hover {
    color: var(--secondary-color);
    padding-left: 18px;
}

.sub-category-link:hover::before {
    background: var(--secondary-color);
    width: 7px;
    height: 7px;
    box-shadow: 0 0 8px var(--color-rank-32);
}

.product-sidebar-widget .sidebar-search {
    position: relative;
}

.product-sidebar-widget .sidebar-search input {
    width: 100%;
    padding: 15px 55px 15px 20px;
    border: 2px solid var(--color-rank-10);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--color-rank-14);
}

.product-sidebar-widget .sidebar-search input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--color-rank-2);
    box-shadow: 0 0 0 4px var(--color-rank-41);
}

.product-sidebar-widget .sidebar-search input::placeholder {
    color: var(--color-rank-11);
    font-size: 13px;
}

.product-sidebar-widget .sidebar-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: calc(100% - 12px);
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    color: var(--color-rank-2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-sidebar-widget .sidebar-search button:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
}

.product-sidebar-widget .sidebar-search button i {
    font-size: 15px;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.price-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 10px 10px;
    border: 2px solid var(--color-rank-10);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--color-rank-14);
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input[type=number] {
    -moz-appearance: textfield;
}

.price-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--color-rank-2);
    box-shadow: 0 0 0 3px var(--color-rank-41);
}

.price-input::placeholder {
    color: var(--color-rank-11);
    font-size: 11px;
}

.price-separator {
    color: var(--color-rank-11);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1;
}

.price-currency {
    text-align: right;
    font-size: 13px;
    color: var(--color-rank-4);
    font-weight: 500;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-rank-21);
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 10px;
    border-radius: 6px;
    margin: 0;
}

.filter-checkbox-label:hover {
    background: var(--color-rank-15);
}

.filter-checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    margin: 0;
    border-radius: 4px;
}

/* .filter-checkbox-input:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
} */

.filter-checkbox-text {
    margin-left: 12px;
    font-size: 14px;
    color: var(--color-rank-22);
    transition: color 0.3s ease;
    user-select: none;
}

.filter-checkbox-label:hover .filter-checkbox-text {
    color: var(--secondary-color);
}

.filter-checkbox-input:checked + .filter-checkbox-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-filter-apply,
.btn-filter-reset {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.btn-filter-apply i,
.btn-filter-reset i {
    margin-right: 8px;
}

.btn-filter-apply {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--color-rank-2);
    box-shadow: 0 4px 15px var(--color-rank-42);
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-rank-39);
}

.btn-filter-apply:active {
    transform: translateY(0);
}

.btn-filter-reset {
    background: var(--color-rank-2);
    color: var(--color-rank-4);
    border: 2px solid var(--color-rank-10);
}

.btn-filter-reset:hover {
    background: var(--color-rank-15);
    border-color: var(--color-rank-13);
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 20px;
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-inputs input {
    width: 50%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.filter-checkbox {
    margin-bottom: 10px;
}

.filter-checkbox label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.contact-info-card {
    background: var(--color-rank-2);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px var(--color-rank-26);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--color-rank-27);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-info-text {
    font-size: 15px;
    color: var(--color-rank-4);
    line-height: 1.7;
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem var(--color-rank-42);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--color-rank-26);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.product-detail-gallery {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden; /* Taşmayı engelle */
}

.product-main-slider {
    width: 100%;
    overflow: hidden; /* Taşmayı engelle */
}

.product-main-slider .swiper-slide a {
    display: block;
    line-height: 0;
}

.product-main-slider .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-main-slider .swiper-button-next,
.product-main-slider .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--color-rank-37);
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--color-rank-28);
    transition: all 0.3s ease;
}

.product-main-slider .swiper-button-next:hover,
.product-main-slider .swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--color-rank-2);
}

.product-main-slider .swiper-button-next::after,
.product-main-slider .swiper-button-prev::after {
    font-size: 16px;
}

.product-thumbnail-slider {
    margin-top: 15px;
}

.product-thumbnail-slider .swiper-slide {
    width: 25%; /* 4 thumbnails per view */
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.product-thumbnail-slider .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-thumbnail-slider .swiper-slide-thumb-active img,
.product-thumbnail-slider .swiper-slide:hover img {
    border-color: var(--secondary-color);
}


.product-info {
    padding-left: 40px;
}

.product-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

.product-detail-price {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    font-family: 'Michroma', sans-serif;
    line-height: 1;
}

.product-detail-price-currency {
    font-size: 24px;
    color: var(--color-rank-4);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-meta-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
}

.product-meta-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
}

.product-meta-value {
    color: var(--color-rank-4);
}

.product-detail-description {
    font-size: 16px;
    color: var(--color-rank-4);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions .btn-primary-custom,
.product-actions .btn-outline-custom {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.share-buttons span {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

.share-buttons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--light-bg);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: var(--secondary-color);
    color: var(--color-rank-2);
    transform: translateY(-3px);
}

.product-features {
    margin-top: 60px;
}

.feature-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 40px;
}

.feature-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px 0px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.feature-tabs .nav-link.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.job-form-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.vision-mission-section {
    padding: 80px 0;
}

.vision-mission-card {
    background: var(--color-rank-2);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px var(--color-rank-26);
    height: 100%;
}

.vision-mission-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--color-rank-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.vision-mission-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vision-mission-text {
    font-size: 16px;
    color: var(--color-rank-4);
    line-height: 1.8;
}

.pagination {
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--color-rank-2);
}

.page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

@media (max-width: 575px) {
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .pagination {
        gap: 4px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .product-filter-bar {
        padding: 10px;
    }
    
    .btn-filter-trigger {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .filter-select {
        min-width: 55px;
        font-size: 11px;
        padding: 7px 5px;
    }
}

.make-sticky {
    position: sticky;
    top: 100px;
}

@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }
    
    .navbar-collapse {
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .gallery-filter-buttons {
        padding: 12px;
        border-radius: 40px;
    }
    
    .gallery-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .gallery-filter-btn i {
        font-size: 14px;
    }
    
    .product-sidebar-widget {
        padding: 22px 18px;
        margin-bottom: 30px;
    }

    html, body {
        overflow-x: hidden;
    }

    .navbar.scrolled {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1030;
        /* Yumuşak bir giriş için hafifçe yukarıdan kaydırabilirsiniz */
        animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .product-detail-title {
        font-size: 28px;
    }
    
    .product-detail-price {
        font-size: 36px;
    }
    
    .product-detail-price-currency {
        font-size: 20px;
    }
    
    .product-price {
        font-size: 24px;
    }
    
    .product-price-currency {
        font-size: 14px;
    }
    
    .product-card-actions .btn-view-product {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .product-actions .btn-primary-custom,
    .product-actions .btn-outline-custom {
        min-width: 100%;
        flex: 1 1 100%;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-overlay i {
        font-size: 36px;
    }
    
    .gallery-filter-wrapper {
        margin-bottom: 40px;
    }
    
    .product-sidebar-widget {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .price-input {
        padding: 9px 8px;
        font-size: 12px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .category-link {
        font-size: 14px;
    }
    
    .sub-category-link {
        font-size: 13px;
    }
    
    .price-range-inputs {
        flex-direction: row;
        gap: 6px;
    }
    
    .price-input {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .price-separator {
        font-size: 12px;
    }
    
    .filter-checkbox-text {
        font-size: 13px;
    }
    
    .btn-filter-apply,
    .btn-filter-reset {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    #filterOffcanvas .product-sidebar-widget {
        padding: 22px 20px;
    }
    
    #filterOffcanvas .widget-title {
        font-size: 17px;
    }
    
    .product-filter-bar {
        padding: 15px 20px;
    }
    
    .btn-filter-trigger {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .filter-right {
        gap: 8px;
    }
    
    .filter-select {
        min-width: 100px;
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .floating-filter-btn {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 17px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
    
    .gallery-filter-buttons {
        width: 100%;
        padding: 10px;
        border-radius: 20px;
        gap: 8px;
    }
    
    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .gallery-filter-btn i {
        font-size: 13px;
    }
    
    .gallery-filter-btn span {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .gallery-filter-buttons {
        gap: 6px;
    }
    
    .gallery-filter-btn span {
        display: none;
    }
    
    .gallery-filter-btn {
        padding: 0;
        width: 48px;
        height: 48px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .gallery-filter-btn::before {
        border-radius: 50%;
    }
    
    .gallery-filter-btn i {
        font-size: 18px;
        margin: 0;
    }
    
    .gallery-filter-btn.active {
        width: 50px;
        height: 50px;
    }
    
    .price-range-inputs {
        flex-direction: column;
        gap: 8px;
    }
    
    .price-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .price-separator {
        display: none;
    }
    
    .filter-section-title {
        font-size: 13px;
    }
    
    .filter-checkbox-label {
        padding: 6px 8px;
    }
    
    .filter-checkbox-text {
        font-size: 12px;
    }
    
    .product-filter-bar {
        padding: 12px;
        overflow: hidden;
    }
    
    .product-filter-bar .row {
        margin: 0 -6px;
        gap: 10px;
    }
    
    .product-filter-bar .row > div {
        padding: 0 6px;
    }
    
    .btn-filter-trigger {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-filter-trigger span {
        white-space: nowrap;
    }
    
    .products-info-bar {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .products-count {
        font-size: 13px;
    }
    
    .filter-right {
        justify-content: flex-end;
        gap: 6px;
    }
    
    .filter-select {
        min-width: 65px;
        font-size: 12px;
        padding: 8px 6px;
    }
    
    .floating-filter-btn {
        bottom: 75px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 15px;
    }
    
    #filterOffcanvas .product-sidebar-widget {
        padding: 20px 18px;
    }
    
    #filterOffcanvas .widget-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    #filterOffcanvas .category-link {
        font-size: 14px;
    }
    
    #filterOffcanvas .sub-category-link {
        font-size: 13px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .gallery-item:active .gallery-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .gallery-item:active .gallery-overlay i {
        transform: scale(1);
    }
}



/* ===== AOS Fallback Styles ===== */
/* Fallback for browsers without IntersectionObserver support */
.no-js [data-aos],
.no-intersectionobserver [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    [data-aos][data-aos][data-aos-duration] {
        transition-duration: 0s !important;
    }
}

/* Ensure AOS elements are visible if JS fails */
.aos-init {
    transition-property: opacity, transform;
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-33);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-23);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-28);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--color-rank-2);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-24);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--primary-color);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar-brand img, .footer-logo img, .offcanvas-title img {
    width: 125px;
    height: auto;
    object-fit: contain;
    object-position: left;
}

.navbar-right-info a {
    color: var(--text-color);
}

.navbar-right-info a:hover {
    color: var(--secondary-color);
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border-color);
}

.sidebar-categories a.active {
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}


.sub-category-link.active {
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.category-link.active {
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}



#filterOffcanvas .filter-btn-area.make-float {
    position: sticky;
    bottom: 30px;
    right: 0;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #e3e3e3cc;
    box-shadow: var(--color-rank-51) 0px 7px 29px 0px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}


.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    pointer-events: auto;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--color-rank-37);
    border-radius: 50%;
    box-shadow: 0 2px 10px var(--color-rank-28);
    transition: all 0.3s ease;
    top: 45%;
    transform: translateY(-45%);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--color-rank-2);
}

input[readonly] {
    background: var(--color-rank-25);
    cursor: not-allowed;
}

.contact-info-text a {
    color: var(--color-rank-4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}



/* Seçili özellikler için stil - product-meta-item ile aynı görünüm */
.product-info .product-vendor.product-meta {
    display: flex;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 0;
}

.product-info .product-vendor.product-meta .label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
    flex-shrink: 0;
}

.product-info .product-vendor.product-meta {
    color: var(--color-rank-4);
    flex: 1;
}

/* Özellikler arası boşluk */
.product-info .product-vendor.product-meta + .product-vendor.product-meta {
    margin-top: 12px;
}

/* Son özellikten sonra boşluk - daha güvenilir yöntem */
.product-info .product-vendor.product-meta:not(.product-vendor.product-meta + .product-vendor.product-meta) {
    margin-top: 0;
}

/* Son özellik için border - product-actions'tan önceki son özellik */
.product-info .product-vendor.product-meta:last-child,
.product-info .product-vendor.product-meta:has(+ .product-actions),
.product-info .product-vendor.product-meta:has(+ .share-buttons) {
    margin-bottom: 30px;
    padding-bottom: 30px;
}