/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Custom Container */
.container {
    width: 100%;
    max-width: 1400px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1399.98px) {
    .container {
        max-width: 100%;
    }
}

/* Header Component */
.header {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.contact-info {
    gap: 24px;
}

.contact-info a {
    color: #495057;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #de2526;
}

.contact-info i {
    color: #de2526;
    background-color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.contact-info a:hover i {
    background-color: #de2526;
    color: #ffffff;
    border-color: #de2526;
}

.top-nav {
    gap: 16px;
}

.top-nav a {
    color: #555555;
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    padding: 4px 0;
    position: relative;
    transition: color 0.25s ease;
}

.top-nav a:hover {
    color: #de2526;
    background-color: transparent;
}

.top-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #de2526;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.top-nav a:hover::after {
    width: 100%;
}

/* Main Header */
.main-header {
    padding: 16px 0;
    background-color: #ffffff;
}

.header-logo a {
    display: inline-block;
}

.header-logo img {
    height: 48px;
    width: auto;
    max-width: 250px;
}

/* Search Box - Modern Pill & Eye-catching Interactions */
.search-box form {
    display: flex;
    align-items: center;
    width: 530px;
    height: 48px;
    border: 1px solid #de2526;
    border-radius: 50px;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(222, 37, 38, 0.08);
    transition: all 0.25s ease;
    overflow: hidden;
    position: relative;
}

.search-box form:hover {
    border-color: #de2526;
    background-color: #de2526;
    box-shadow: 0 8px 25px rgba(222, 37, 38, 0.25);
}

.search-box form:focus-within {
    border-color: #de2526;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(222, 37, 38, 0.3);
}

.search-input {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50px 0 0 50px;
}

.search-input i {
    position: absolute;
    left: 20px;
    color: #a0aec0;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-box form:hover .search-input i {
    color: #de2526;
}

.search-box form:focus-within .search-input i {
    color: #de2526;
    transform: scale(1.18) rotate(-5deg);
}

.search-input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #ffffff;
    padding: 0 16px 0 48px;
    font-size: 14px;
    color: #2d3748;
    font-weight: 500;
}

.search-input input::placeholder {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.search-box form:hover .search-input input::placeholder {
    color: #718096;
}

.search-box button {
    background: linear-gradient(135deg, #de2526 0%, #b81b1c 100%);
    color: #ffffff;
    border: none;
    outline: none;
    padding: 0 28px;
    height: 100%;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-box button i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.search-box button:hover {
    background: linear-gradient(135deg, #e62e2f 0%, #be1c1d 100%);
    box-shadow: -4px 0 15px rgba(222, 37, 38, 0.3);
}

.search-box button:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Header Phone Box - Prominent & Modern */
.header-phone {
    gap: 14px;
}

.header-phone>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #de2526 0%, #b81b1c 100%);
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(222, 37, 38, 0.25);
    flex-shrink: 0;
}

.header-phone:hover>a {
    background: linear-gradient(135deg, #e62e2f 0%, #be1c1d 100%);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(222, 37, 38, 0.4);
}

.header-phone a {
    text-decoration: none;
    line-height: 1.25;
}

.header-phone span:first-child {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    display: inline-block;
}

.header-phone span:last-child {
    font-size: 18px;
    color: #1a202c;
    font-weight: 800;
    transition: color 0.2s ease;
    display: inline-block;
}

.header-phone a:hover span:last-child {
    color: #de2526;
}

/* Main Navigation - 60px Height & Full-Height Hover */
.main-nav {
    background-color: #de2526;
    width: 100%;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-nav .container {
    height: 100%;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav > .container > ul > li {
    position: relative;
    height: 100%;
}

.main-nav > .container > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    padding: 0 14px;
    height: 100%;
    font-weight: 700;
    font-size: 14.5px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Other Items Hover Effect - Low Opacity Soft Overlay */
.main-nav > .container > ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

/* Dropdown Sub-menu */
.main-nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    width: max-content;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #de2526;
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}

.main-nav ul li:hover > ul {
    display: flex;
}

.main-nav ul li ul li {
    height: auto;
    width: 100%;
}

.main-nav ul li ul li a {
    color: #2d3748;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    height: auto;
    text-decoration: none;
    transition: all 0.2s ease;
}

.main-nav ul li ul li a:hover {
    background-color: #f7fafc;
    color: #de2526;
}

/* Hero Slider Section - Full Width (100%) & 9/3 Ratio */
.hero-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-slider {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.slider-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 3;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.slider-item.has-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 950px;
    padding: 20px;
}

.slider-content h2 {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.slider-content p {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.slider-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #de2526 0%, #b81b1c 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(222, 37, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slider-buttons a:hover {
    background: linear-gradient(135deg, #e62e2f 0%, #be1c1d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(222, 37, 38, 0.55);
    color: #ffffff;
}

.slider-buttons a:nth-child(even) {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.slider-buttons a:nth-child(even):hover {
    background: #ffffff;
    color: #de2526;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .slider-item {
        aspect-ratio: 9 / 4;
    }

    .slider-content h2 {
        font-size: 40px;
    }

    .slider-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slider-content h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .slider-content p {
        font-size: 14px;
    }

    .slider-buttons a {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Slider Custom Arrow Navigation (60px x 60px, bottom 10px right 10px, 1px gap, red background, border-radius 0px) */
.main-slider .owl-nav {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 1px;
    z-index: 10;
    margin: 0;
}

.main-slider .owl-nav button.owl-prev,
.main-slider .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    background-color: #de2526;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 0px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.main-slider .owl-nav button.owl-prev:hover,
.main-slider .owl-nav button.owl-next:hover {
    background-color: #be1c1d;
    color: #ffffff;
}

/* Feature Section - White Background & Gradient Hover Cards */
.feature-section {
    padding: 56px 0;
    background-color: #ffffff;
    border: none;
}

.feature-box {
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, #f9f9f9 40%, #e2e8f0 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 36px 30px;
    border-radius: 6px;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-box:hover {
    background-image: linear-gradient(135deg, #de2526 0%, #a81213 100%), linear-gradient(135deg, #de2526 0%, #a81213 100%);
    border-color: #de2526;
    box-shadow: 0 22px 45px rgba(222, 37, 38, 0.32);
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: rgba(222, 37, 38, 0.06);
    border: 1px solid rgba(222, 37, 38, 0.12);
    color: #de2526;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 22px;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-icon i {
    font-size: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-box:hover .feature-icon {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #de2526;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-box .watermark-icon {
    position: absolute;
    right: -25px;
    bottom: -25px;
    left: auto;
    font-size: 200px;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    line-height: 1;
    transform: translate(15px, 15px);
}

.feature-box:hover .watermark-icon {
    opacity: 0.14;
    transform: translate(0, 0);
}

.feature-box .feature-content,
.feature-box .feature-icon {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.35;
    transition: color 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-box:hover .feature-content h3 {
    color: #ffffff;
}

.feature-content p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    transition: color 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-box:hover .feature-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Product Section & Ultra-Modern Minimalist Section Title */
.product-section {
    padding: 72px 0 60px 0;
    background-color: #ffffff;
}

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

.section-title>span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 16px;
    color: #777777;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.65;
}



/* Product Card (135° Gray Gradient Border & 10px Radius) */
.product-card {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(203, 213, 225, 0.6) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.product-card:hover {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(222, 37, 38, 0.85) 100%) border-box;
    border: 1px solid transparent;
    box-shadow: 0 16px 36px rgba(222, 37, 38, 0.18);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    aspect-ratio: 5 / 5;
    overflow: hidden;
    margin: 0;
    border-radius: 6px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-category {
    padding: 10px 14px 4px 14px;
}

.product-category a {
    text-decoration: none;
    display: inline-block;
}

.product-category span {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: #a3a3a3;
    line-height: 1;
    transition: color 0.3s ease;
}

.product-card:hover .product-category span {
    color: #777777;
}

.product-title {
    padding: 0 14px 14px 14px;
    margin-top: 0;
}

.product-title a {
    text-decoration: none;
    display: block;
}

.product-title h3 {
    display: block;
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s ease;
}

.product-card:hover .product-title h3 {
    color: #de2526;
}

.product-image {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.product-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff2a2b 0%, #de2526 50%, #b31011 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(222, 37, 38, 0.45);
}

.product-price {
    margin-top: auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
    background-color: #fafafa;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.product-price del {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: auto;
}

.product-price span {
    font-size: 19px;
    font-weight: 800;
    color: #de2526;
    line-height: 1;
}

/* Product Overlay Blur & Centered Circular Search Button */
.product-card {
    position: relative;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 10px;
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-overlay a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2a2b 0%, #ea2b2c 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(234, 43, 44, 0.45);
    transform: translateY(12px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-overlay a {
    transform: translateY(0) scale(1);
}

.product-overlay a:hover {
    background: linear-gradient(135deg, #ea2b2c 0%, #be1c1d 100%);
    box-shadow: 0 14px 30px rgba(234, 43, 44, 0.65);
    transform: translateY(-2px) scale(1.08);
}

.product-overlay i {
    font-size: 22px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.product-overlay a:hover i {
    transform: scale(1.1);
}

/* FAQ Section - Compact 100% Width Layout */
.faq-section {
    padding: 70px 0 20px 0;
    background-color: #ffffff;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title>span {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.faq-title p {
    font-size: 16px;
    color: #777777;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.65;
}

.faq-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
    border-color: #de2526;
    box-shadow: 0 8px 24px rgba(222, 37, 38, 0.07);
}

.faq-item.active {
    border-color: #de2526;
    box-shadow: 0 8px 24px rgba(222, 37, 38, 0.07);
}

.faq-header {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(222, 37, 38, 0.035);
}

.faq-item.active .faq-header {
    background-color: rgba(222, 37, 38, 0.045);
}

.faq-header span {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.faq-header:hover span,
.faq-item.active .faq-header span {
    color: #de2526;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f9f9f9;
    border: 1px solid #e2e8f0;
    color: #777777;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-icon i {
    font-size: 12px;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    background-color: #de2526;
    border-color: #de2526;
    color: #ffffff;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    padding: 0 22px;
    background-color: #ffffff;
}

.faq-item.active .faq-body {
    max-height: 250px;
    padding: 0 22px 18px 22px;
}

.faq-body p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #f5f5f5;
    padding-top: 14px;
}

/* CTA Support Section - Dark Anthracite Modern Design */
.cta-section {
    margin-top: 100px;
    padding: 64px 0;
    background: linear-gradient(135deg, #ea2b2c 0%, #be1c1d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(234, 43, 44, 0.5) 50%, transparent 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-text span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-buttons a:first-child {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cta-buttons a:first-child:hover {
    background: linear-gradient(135deg, #34E075 0%, #128C7E 100%);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    transform: translateY(-3px);
}

.cta-buttons a:last-child {
    background-color: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.cta-buttons a:last-child:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta-buttons i {
    font-size: 15px;
}

.cta-buttons span {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 991px) {
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text span,
    .cta-text p {
        white-space: normal;
    }

    .cta-buttons {
        width: 100%;
        flex-wrap: wrap;
        white-space: normal;
    }
}

/* Main Footer - E-Commerce Modern Anthracite Layout */
.main-footer {
    background-color: #000000;
    padding: 72px 0 0 0;
    color: #a3a3a3;
    border-top: 1px solid #1a1a1a;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-column p {
    font-size: 14.5px;
    color: #a3a3a3;
    line-height: 1.65;
    margin-bottom: 24px;
}

.footer-column>span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

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

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

.footer-column ul li a,
.fbox.flist ul li a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px;
}

.footer-column ul li a::before,
.fbox.flist ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #de2526;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(222, 37, 38, 0.2);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover,
.fbox.flist ul li a:hover {
    color: #de2526;
    transform: translateX(4px);
}

.footer-column ul li a:hover::before,
.fbox.flist ul li a:hover::before {
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(222, 37, 38, 0.4);
}

/* Reset for the contact widget */
.footer-column .fbox.filetisim ul li a,
.fbox.filetisim ul li a {
    padding-left: 0;
}
.footer-column .fbox.filetisim ul li a::before,
.fbox.filetisim ul li a::before {
    display: none;
    content: none;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.35s ease;
}

.footer-social a:hover {
    background-color: #de2526;
    border-color: #de2526;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(222, 37, 38, 0.4);
    transform: translateY(-3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #de2526;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 14.5px;
    color: #a3a3a3;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright span {
    font-size: 13.5px;
    color: #737373;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    color: #a3a3a3;
}

.footer-payments i {
    transition: color 0.3s ease;
}

.footer-payments i:hover {
    color: #ffffff;
}

/* Ultra-Modern Clean Breadcrumb List */
.breadcrumb-section {
    padding: 14px 0;
    background: linear-gradient(90deg, #f5f5f5 0%, rgba(245, 245, 245, 0.4) 60%, rgba(245, 245, 245, 0.05) 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: none;
}

.breadcrumb-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-wrapper li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-wrapper li:not(:last-child)::after {
    content: '/';
    font-size: 13.5px;
    font-weight: 700;
    color: #de2526;
    margin-left: 2px;
}

.breadcrumb-wrapper a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.breadcrumb-wrapper a:hover {
    color: #ea2b2c;
}

.breadcrumb-wrapper a i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(234, 43, 44, 0.08);
    color: #ea2b2c;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.breadcrumb-wrapper a:hover i {
    background-color: #ea2b2c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(234, 43, 44, 0.35);
}

.breadcrumb-wrapper li > span {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

/* Category Section Layout & Filter Sidebar */
.category-section {
    padding: 25px 0 80px 0;
    background-color: #ffffff;
}

#productList {
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-item {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.filter-btn {
    background: #de2526;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 10px rgba(222, 37, 38, 0.2);
    height: 50px;
}

.filter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-box {
    background: 
        linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) padding-box,
        linear-gradient(135deg, rgba(222, 37, 38, 0.5) 0%, rgba(222, 37, 38, 0) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.filter-box > span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.filter-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    background-color: #ffffff;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.filter-group select:focus {
    border-color: #de2526;
}

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

.price-inputs input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(222, 37, 38, 0.2);
    background: #fff5f5;
    border-radius: 6px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.25s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.price-inputs input:focus {
    border-color: #de2526;
}

.price-inputs span {
    color: #a3a3a3;
    font-weight: 600;
}

.filter-action {
    margin-top: 14px;
}

.filter-action button {
    width: 100%;
    background-color: #de2526;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-action button:hover {
    background-color: #be1c1d;
    box-shadow: 0 4px 12px rgba(222, 37, 38, 0.3);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555555;
    user-select: none;
    transition: color 0.2s ease;
}

.filter-list label:hover {
    color: #de2526;
}

.filter-list input[type="checkbox"] {
    accent-color: #de2526;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Distinct Category Navigation Sidebar Widget */
.category-widget {
    background: 
        linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) padding-box,
        linear-gradient(135deg, rgba(222, 37, 38, 0.5) 0%, rgba(222, 37, 38, 0) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.category-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #de2526;
}

.category-widget > span {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.category-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 6px;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #f9f9f9;
}

.category-menu li a span {
    transition: color 0.3s ease;
}

.category-menu li a i {
    font-size: 11px;
    color: #a3a3a3;
    transition: all 0.3s ease;
}

.category-menu li a:hover {
    background-color: #de2526;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(222, 37, 38, 0.3);
    transform: translateX(4px);
}

.category-menu li a:hover span {
    color: #ffffff;
}

.category-menu li a:hover i {
    color: #ffffff;
    transform: translateX(2px);
}

/* Ultra-Cool Prominent Sort Widget */
.sort-widget {
    background: 
        linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) padding-box,
        linear-gradient(135deg, rgba(222, 37, 38, 0.5) 0%, rgba(222, 37, 38, 0) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.sort-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
}

.sort-title i {
    color: #de2526;
    font-size: 16px;
}

.sort-title span {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
}

.sort-select-wrapper {
    position: relative;
    width: 100%;
}

.sort-select-wrapper select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid rgba(222, 37, 38, 0.2);
    background: #fff5f5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    background-color: #f9f9f9;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sort-select-wrapper select:hover {
    border-color: #de2526;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(222, 37, 38, 0.08);
}

.sort-select-wrapper select:focus {
    border-color: #de2526;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(222, 37, 38, 0.12);
}

.sort-select-wrapper > i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #777777;
    font-size: 12px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.sort-select-wrapper:hover > i {
    color: #de2526;
}

/* Product Detail Section Layout */
.detail-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.detail-gallery {
    position: relative;
    width: 100%;
}

.main-image {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.detail-zoom-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    background-color: #de2526;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    cursor: pointer;
}

.detail-zoom-icon i {
    font-size: 20px;
}

.detail-zoom-icon:hover {
    background-color: #be1c1d;
    color: #ffffff;
}

.detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
}

.detail-badge span {
    background: linear-gradient(135deg, #ff2a2b 0%, #ea2b2c 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(234, 43, 44, 0.4);
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-main-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.detail-meta {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 18px 0;
}

.detail-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.detail-meta li {
    display: flex;
    align-items: flex-start;
    font-size: 14.5px;
    line-height: 1.4;
}

.detail-meta li > span:first-child {
    font-weight: 700;
    color: #4a4a4a;
    width: 140px;
    flex-shrink: 0;
    padding-top: 1px;
}

.detail-meta li > span:nth-child(2) {
    font-weight: 700;
    color: #666666;
    width: 18px;
    flex-shrink: 0;
    padding-top: 1px;
}

.detail-meta li > span:last-child {
    font-weight: 700;
    color: #1a1a1a;
    padding-top: 1px;
}

.detail-meta li a {
    color: #de2526;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
    padding-top: 1px;
}

.detail-meta li a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Ultra-Modern Cool Detail Price Box */
.detail-price-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #de2526;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    margin: 15px 0 25px 0;
    position: relative;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: flex-start;
}

.price-label {
    display: flex;
    align-items: center;
    padding-top: 6px;
}

.price-label > span:first-child {
    font-weight: 700;
    color: #777777;
    width: 125px;
    font-size: 15px;
    flex-shrink: 0;
}

.price-label > span:last-child {
    font-weight: 700;
    color: #a3a3a3;
    width: 18px;
    font-size: 15px;
    flex-shrink: 0;
}

.price-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-price {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.main-price > span {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.main-price del {
    font-size: 16px;
    font-weight: 600;
    color: #a3a3a3;
    text-decoration: line-through;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    background: linear-gradient(135deg, #ff2a2b 0%, #ea2b2c 100%);
    color: #ffffff;
    padding: 4px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(234, 43, 44, 0.35);
    width: max-content;
    margin-bottom: 2px;
}

.discount-badge i {
    font-size: 11px;
    color: #ffffff;
}

.discount-badge span {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.tl-price {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 245, 245, 0.8);
    padding: 5px 12px;
    border-radius: 6px;
    width: fit-content;
}

.tl-price i {
    font-size: 13px;
    color: #ea2b2c;
}

.tl-price span {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.tl-price del {
    font-size: 14px;
    font-weight: 500;
    color: #a3a3a3;
    margin-left: 4px;
}

.detail-description p {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

.detail-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    height: 60px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-sizing: border-box;
}

.quantity-box button {
    width: 48px;
    height: 60px;
    border: none;
    background-color: #f9f9f9;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-box button:hover {
    background-color: #e2e8f0;
}

.quantity-box input {
    width: 54px;
    height: 60px;
    border: none;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.detail-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    padding: 0 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.detail-actions a:first-of-type {
    background: linear-gradient(135deg, #ea2b2c 0%, #be1c1d 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(234, 43, 44, 0.35);
}

.detail-actions a:first-of-type:hover {
    background: linear-gradient(135deg, #ff2a2b 0%, #ea2b2c 100%);
    box-shadow: 0 12px 28px rgba(234, 43, 44, 0.5);
    transform: translateY(-2px);
}

.detail-actions a:last-of-type {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.detail-actions a:last-of-type:hover {
    background-color: #20bd5a;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .detail-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .detail-actions .quantity-box {
        flex: 0 0 auto;
        width: auto;
    }

    .detail-actions a:first-of-type {
        flex: 1 1 0%;
        padding: 0 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .detail-actions a:last-of-type,
    .detail-actions #whatsappQuoteBtn {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* Product Detail Tabs Mimarisi */
.detail-tabs {
    margin-top: 50px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.tab-header {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.tab-header ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.tab-header li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #777777;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    margin-bottom: -1px;
}

.tab-header li i {
    font-size: 15px;
    color: #a3a3a3;
    transition: color 0.3s ease;
}

.tab-header li:hover {
    color: #de2526;
    background-color: transparent;
}

.tab-header li:hover i {
    color: #de2526;
}

.tab-header li.active {
    color: #de2526;
    background-color: transparent;
    border-bottom-color: #de2526;
}

.tab-header li.active i {
    color: #de2526;
}

.tab-body {
    padding: 30px 0 0 0;
}

.tab-pane {
    display: none;
    animation: tabFadeIn 0.3s ease forwards;
}

.tab-pane.active {
    display: block;
}

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

.tab-pane p {
    font-size: 15.5px;
    color: #333333;
    line-height: 1.75;
    margin-bottom: 16px;
}

.tab-pane p:last-child {
    margin-bottom: 0;
}

.tab-pane p strong {
    color: #0f172a;
    font-weight: 800;
    font-size: 17.5px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-pane ul li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tab-pane ul li:hover {
    color: #0f172a;
}

.tab-pane ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: rgba(222, 37, 38, 0.08);
    color: #de2526;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.tab-pane ol {
    padding-left: 20px;
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-pane ol li {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-weight: 500;
}

.tab-pane ol li::marker {
    color: #de2526;
    font-weight: 800;
}

/* Technical Specs Table Mimarisi (.teknikbilgiler & .tech-table) */
.teknikbilgiler, .tech-table {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    background-color: #ffffff;
    margin-top: 15px;
}

.teknikbilgiler table, .tech-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.teknikbilgiler tr, .tech-table tr {
    transition: background-color 0.2s ease;
}

.teknikbilgiler tr:nth-child(even), .tech-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.teknikbilgiler tr:hover, .tech-table tr:hover {
    background-color: rgba(222, 37, 38, 0.02);
}

.teknikbilgiler th, .tech-table th {
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    white-space: nowrap;
}

.teknikbilgiler td, .tech-table td {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.teknikbilgiler tr:last-child th,
.teknikbilgiler tr:last-child td,
.tech-table tr:last-child th,
.tech-table tr:last-child td {
    border-bottom: none;
}

.teknikbilgiler th:last-child,
.teknikbilgiler td:last-child,
.tech-table th:last-child,
.tech-table td:last-child {
    border-right: none;
}

/* Photo Gallery Grid 5 Columns */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

@media (max-width: 991px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.06);
}

/* Related Products Section */
.related-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
    border: none;
}

.related-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.related-header h2 {
    margin: 0;
}

.related-header h2 span {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.related-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #de2526;
    border-radius: 2px;
}

.related-header p {
    font-size: 15px;
    color: #777777;
    line-height: 1.6;
    margin: 12px 0 0 0;
}

/* Category Filter Nav Style Extensions */
.category-filter-nav {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 3px;
}

.filter-scroll-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 8px;
}

.filter-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}

.filter-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #de2526;
    border-radius: 10px;
}

.filter-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    color: #495057;
}

.filter-tab-btn:hover {
    border-color: #de2526 !important;
    color: #de2526 !important;
    background-color: rgba(222, 37, 38, 0.04) !important;
}

.filter-tab-btn.active {
    border-color: #de2526;
    background-color: #de2526;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(222, 37, 38, 0.15);
}

.filter-tab-btn.active:hover {
    color: #ffffff !important;
    background-color: #c81e1f !important;
    border-color: #c81e1f !important;
}

/* Product Detail Page Image & Gallery Styling */
.detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #de2526;
    color: #ffffff;
    padding: 6px 14px;
    font-weight: 700;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(222, 37, 38, 0.25);
}

.detail-thumbnails-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.detail-thumb-item {
    width: calc((100% - 50px) / 6);
    aspect-ratio: 1 / 1;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.2s;
}

.detail-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-thumb-item:hover, 
.detail-thumb-item.active {
    border-color: #de2526 !important;
    box-shadow: 0 4px 10px rgba(222, 37, 38, 0.15);
}

/* Contact Page Mimarisi (.iletisim, .subeler, .sube) */
.iletisim {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.iletisim .row {
    align-items: stretch;
}

.iletisim .col-md-6 {
    display: flex;
    flex-direction: column;
}

.subeler {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0;
}

.sube {
    background: linear-gradient(45deg, #ffffff 0%, #f9fafb 100%) padding-box,
                linear-gradient(45deg, #ffffff 0%, #f5f5f5 50%, #e2e8f0 100%) border-box;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
}

.sube:hover {
    background: linear-gradient(45deg, #ffffff 0%, #f9fafb 100%) padding-box,
                linear-gradient(45deg, rgba(222, 37, 38, 0.35) 0%, #f5f5f5 50%, #e2e8f0 100%) border-box;
    box-shadow: 0 8px 25px rgba(222, 37, 38, 0.06);
}

.sube h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.sube h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #de2526;
}

.sube-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sube-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sube-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: rgba(222, 37, 38, 0.08);
    color: #de2526;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-top: 2px;
}

.sube-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
}

.sube-text strong {
    color: #0f172a;
    font-weight: 700;
}

.sube-text a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sube-text a:hover {
    color: #de2526;
}

.iletisimformu {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 30px 0 0 0;
    margin-top: 25px;
    border-top: 1px solid #e2e8f0;
    flex: 1;
}

.iletisimformu h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.iletisimformu h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #de2526;
}

/* Klasik İletişim Formu Elemanları */
.iletisimformu .form-wrapper {
    position: relative;
    margin-bottom: 18px;
}

.iletisimformu .form-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #de2526;
    font-size: 16px;
    z-index: 2;
    transition: color 0.2s ease;
}

.iletisimformu .form-wrapper.field-textarea i {
    top: 24px;
    transform: none;
}

/* İkon ile Metin Arasında 20px Dikey Seperatör */
.iletisimformu .form-wrapper::after {
    content: '';
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #cbd5e1;
    z-index: 3;
    pointer-events: none;
    transition: background-color 0.2s ease;
}

.iletisimformu .form-wrapper.field-textarea::after {
    top: 22px;
    transform: none;
}

.iletisimformu .form-wrapper:focus-within::after {
    background-color: #de2526;
}

.iletisimformu .form-wrapper input[type="text"],
.iletisimformu .form-wrapper input[type="tel"],
.iletisimformu .form-wrapper input[type="email"] {
    width: 100%;
    height: 70px;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    padding: 0 18px 0 62px;
    font-size: 15px;
    background-color: #fafafa;
    color: #0f172a;
    font-weight: 500;
    transition: all 0.25s ease;
    outline: none;
}

.iletisimformu .form-wrapper textarea {
    width: 100%;
    min-height: 140px;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    padding: 18px 18px 18px 62px;
    font-size: 15px;
    background-color: #fafafa;
    color: #0f172a;
    font-weight: 500;
    transition: all 0.25s ease;
    outline: none;
    resize: vertical;
}

.iletisimformu .form-wrapper:focus-within i {
    color: #de2526;
}

.iletisimformu .form-wrapper input:focus,
.iletisimformu .form-wrapper textarea:focus {
    border-color: #de2526;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(222, 37, 38, 0.12);
}

.iletisimformu .captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    background-color: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    padding: 10px 18px;
    height: 70px;
}

.iletisimformu .captcha-wrapper label.islem {
    font-weight: 800;
    color: #de2526;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

.iletisimformu .captcha-wrapper input.sonuc {
    flex: 1;
    width: 100%;
    height: 44px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 16px;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.iletisimformu .captcha-wrapper input.sonuc:focus {
    border-color: #de2526;
    box-shadow: 0 0 0 2px rgba(222, 37, 38, 0.1);
}

.iletisimformu .form-actions {
    margin-bottom: 18px;
}

.iletisimformu .form-actions .buton,
.iletisimformu input[type="submit"] {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #ff2a2b 0%, #de2526 100%);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 37, 38, 0.25);
}

.iletisimformu .form-actions .buton:hover,
.iletisimformu input[type="submit"]:hover {
    background: linear-gradient(135deg, #de2526 0%, #be1c1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 37, 38, 0.4);
}

.harita {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    flex: 1;
    min-height: 550px;
}

.harita #map {
    height: 100%;
    min-height: 550px;
}

.yol-tarifi-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #de2526;
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(222, 37, 38, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.yol-tarifi-btn:hover {
    background-color: #be1c1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 37, 38, 0.45);
}

/* World-Class Top-Right Toast Notification */
.custom-toast-notification {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 99999;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15), 0 2px 8px rgba(15, 23, 42, 0.08);
    border-left: 5px solid #10b981;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

.custom-toast-notification.toast-error {
    border-left-color: #de2526;
}

.custom-toast-notification.toast-hide {
    animation: toastSlideOut 0.4s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }
}

.custom-toast-notification .toast-icon {
    font-size: 22px;
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.custom-toast-notification.toast-error .toast-icon {
    color: #de2526;
}

.custom-toast-notification .toast-content {
    flex: 1;
}

.custom-toast-notification .toast-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.custom-toast-notification .toast-content p {
    font-size: 13.5px;
    color: #555555;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.custom-toast-notification .toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #a3a3a3;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.custom-toast-notification .toast-close:hover {
    color: #0f172a;
}

.custom-toast-notification .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #10b981;
    animation: toastProgress 5s linear forwards;
}

.custom-toast-notification.toast-error .toast-progress {
    background-color: #de2526;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* =============================================
   Modern Harita Pin (Leaflet divIcon)
   kurallar.md - Bölüm 7
   ============================================= */
.custom-marker-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 75px !important;
    height: 75px !important;
    position: relative;
}

.modern-pin {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    margin-bottom: 20px;
}

.modern-pin::after {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-marker-wrapper::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
}

/* =============================================
   Arama Sonuçları Sayfası (.arama-section)
   ============================================= */
.arama-section {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
}

.arama-info {
    margin-bottom: 36px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-left: 4px solid #de2526;
    border-radius: 6px;
    font-size: 15px;
    color: #333333;
}

.arama-info p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.arama-info strong {
    color: #0f172a;
    font-weight: 800;
}

.arama-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background-color: #f5f5f5;
    border-radius: 0 0 8px 8px;
    font-size: 13px;
    color: #777777;
    font-weight: 600;
}

.arama-code i {
    color: #de2526;
    font-size: 12px;
}

.arama-empty {
    text-align: center;
    padding: 80px 20px;
    color: #a3a3a3;
}

.arama-empty i {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
    color: #e2e8f0;
}

.arama-empty h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.arama-empty p {
    font-size: 15px;
    color: #777777;
    max-width: 480px;
    margin: 0 auto 28px auto;
    line-height: 1.7;
}

.arama-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff2a2b 0%, #de2526 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 37, 38, 0.25);
}

.arama-back-btn:hover {
    background: linear-gradient(135deg, #de2526 0%, #be1c1d 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 37, 38, 0.4);
}

.arama-section .product-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    background-color: #f9f9f9;
    color: #cbd5e1;
    font-size: 42px;
    text-decoration: none;
}

/* SEO Section */
.seo-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-color: #0a0a0a;
    overflow: hidden;
    z-index: 1;
}

/* Işık Yansımaları (Glow) */
.seo-section::before,
.seo-section::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.15;
    top: 50%;
    transform: translateY(-50%);
}

/* Sol Işık (Gümüş/Beyaz) */
.seo-section::before {
    left: -10vw;
    background-color: #ffffff;
    opacity: 0.18;
}

/* Sağ Işık (Kırmızı) */
.seo-section::after {
    right: -10vw;
    background-color: #de2526;
    opacity: 0.28;
}

/* Ortadaki Zarif Çizgi */
.seo-divider {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.seo-box {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

.seo-box h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-box p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .seo-section {
        padding: 30px 0 20px 0;
    }
    .seo-divider {
        display: none;
    }
    .seo-section::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        height: 80vw;
    }
    .seo-section::after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        height: 80vw;
    }
    .seo-box {
        padding: 10px 15px 25px 15px;
        min-height: auto;
    }
    .seo-box h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .seo-box p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e2e8f0 0%, #ffffff 100%);
}
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}
.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 15px;
}
.blog-header p {
    font-size: 16px;
    color: #777777;
    max-width: 80%;
    margin: 0 auto;
}
.blog-card {
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
}
.blog-card:hover .blog-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.blog-image {
    width: 100%;
    aspect-ratio: 9/5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s ease;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-content {
    padding: 30px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
}
.blog-content h3 a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-content h3 a:hover {
    color: #de2526;
}
.blog-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #de2526;
    text-decoration: none;
    transition: color 0.2s ease;
}
.read-more i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}
.read-more:hover {
    color: #c81e1f;
}
.read-more:hover i {
    transform: translateX(4px);
}

.sayfa {
    padding-top: 75px;
}

/* Sidebar Contact Widget (.wiletisim) */
.wiletisim {
    background: linear-gradient(135deg, #de2526 0%, #b81b1c 100%);
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(222, 37, 38, 0.25);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.wiletisim::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.wiletisim span {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.wiletisim p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.wiletisim ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.5;
}

.wiletisim ul li i {
    color: #de2526;
    background-color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiletisim ul li:hover i {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.wiletisim ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wiletisim ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Sidebar Blog Widget (.blogwidget) */
.blogwidget {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 30px;
}

.blogwidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blogwidget ul li {
    display: block;
}

.blogwidget ul li a {
    color: #555555;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1;
    display: block;
    padding: 17px 14px 17px 30px;
    border-radius: 8px;
    transition: all 0.25s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}

.blogwidget ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 18px;
    color: #de2526;
    font-size: 13px;
    transition: transform 0.25s ease;
}

.blogwidget ul li a:hover {
    color: #de2526;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-color: rgba(222, 37, 38, 0.1);
    box-shadow: 0 6px 18px rgba(222, 37, 38, 0.08);
    transform: translateY(-2px);
}

.blogwidget ul li a:hover::before {
    transform: translateX(3px);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
    .header-phone {
        display: none !important;
    }
    .main-nav {
        display: none !important;
    }
    .main-header .container {
        flex-wrap: wrap;
    }
    .search-box {
        width: 100%;
        margin-top: 15px;
        order: 3;
    }
    .search-box form {
        width: 100%;
    }
    
    /* Hide feature section on mobile */
    .feature-section {
        display: none !important;
    }
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    background: linear-gradient(135deg, #de2526, #b01011);
    border: none;
    color: #ffffff;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 4px 10px rgba(222, 37, 38, 0.3);
}
.mobile-toggle:hover {
    background: linear-gradient(135deg, #b01011, #8f0d0e);
    color: #ffffff;
}

/* Modern Offcanvas Mobile Menu */
.modern-mobile-menu {
    background-color: #0a0a0a;
    color: #ffffff;
    width: 320px !important;
}
.modern-mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
}
.modern-mobile-menu .offcanvas-title {
    margin: 0;
    display: flex;
    align-items: center;
}
.modern-mobile-menu .offcanvas-title img {
    max-height: 42px;
    max-width: 190px;
    object-fit: contain;
    width: auto;
    height: auto;
    border-radius: 4px;
}
.modern-mobile-menu .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}
.modern-mobile-menu .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Nav Links */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.mobile-nav-link i.fa-bars {
    margin-right: 12px;
    color: #de2526;
}
.mobile-nav-link:hover,
.mobile-nav-link[aria-expanded="true"] {
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

/* Submenu Accordion */
.mobile-sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.mobile-sub-nav li a {
    display: block;
    padding: 14px 24px 14px 40px;
    color: #a3a3a3;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.mobile-sub-nav li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.02);
}

/* Rotating Chevron for Submenu */
.mobile-nav-dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
}
.mobile-nav-dropdown .mobile-nav-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Menu Footer (Contact Info) */
.mobile-menu-footer {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: auto;
}
.mobile-menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    background-color: #1a1a1a;
    margin-bottom: 12px;
    transition: background 0.3s;
}
.mobile-menu-contact:hover {
    background-color: #262626;
    color: #ffffff;
}
.mobile-menu-contact.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    margin-bottom: 0;
}
.mobile-menu-contact.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

/* Mobile Fixes for 2-column Product Cards */
@media (max-width: 576px) {
    .product-card {
        padding: 4px;
        border-radius: 8px;
    }
    .product-category {
        padding: 8px 8px 2px 8px;
    }
    .product-category span {
        font-size: 11.5px;
    }
    .product-title {
        padding: 0 8px 6px 8px;
    }
    .product-title h3 {
        font-size: 13px;
    }
    .product-price {
        padding: 6px 8px 10px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .product-price span {
        font-size: 16.5px;
    }
    .product-price del {
        margin-left: 0;
        font-size: 12px;
    }
    .product-badge span {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Footer İletişim (Contact) Widget - Modern Design */
.footer-column .fbox.filetisim {
    margin-top: 15px;
}
.footer-column .fbox.filetisim ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-column .fbox.filetisim ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d4d4d4;
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
.footer-column .fbox.filetisim ul li i {
    color: #de2526;
    font-size: 15px;
    width: 38px;
    height: 38px;
    background: rgba(222, 37, 38, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.footer-column .fbox.filetisim ul li a {
    color: #d4d4d4;
    display: inline;
    transition: color 0.3s ease;
}
.footer-column .fbox.filetisim ul li a:hover {
    color: #ffffff;
}
.footer-column .fbox.filetisim ul li:hover i {
    background: #de2526;
    color: #ffffff;
    transform: scale(1.1);
}
.footer-column .fbox.filetisim ul li:hover, 
.footer-column .fbox.filetisim ul li:hover a {
    color: #ffffff;
}

/* SEO Logo H1 */
.seo-logo {
    width: 234px;
    height: 60px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.seo-logo a {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('/img/logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

