:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ef5350;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --whatsapp: #25d366;
    --telegram: #0088cc;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header_top {
    min-height: 50px;
    display: none;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header_top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.header_top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

/* Location Dropdown */
.location-dropdown {
    position: relative;
}

.location-trigger {
    cursor: pointer;
}

.location-trigger i.fa-caret-down {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.location-dropdown:hover .location-trigger i.fa-caret-down {
    transform: rotate(180deg);
}

.location-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    padding: 8px;
    margin-top: 4px;
}

.location-dropdown:hover .location-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.location-item:hover {
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
    transform: translateX(4px);
}

.location-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.contact-link {
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.contact-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.contact-link:active {
    transform: translateY(0);
}

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

.social-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.08);
    border-width: 2px;
}

.social-link:hover i {
    transform: scale(1.15);
}

.social-link:active {
    transform: translateY(-1px) scale(1.05);
}

/* Specific social media colors on hover */
.social-link.instagram {
    background: rgba(255, 255, 255, 0.15);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.social-link.telegram {
    background: rgba(255, 255, 255, 0.15);
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
}

.social-link.whatsapp {
    background: rgba(255, 255, 255, 0.15);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.social-link.phone-social {
    background: rgba(255, 255, 255, 0.15);
}

.social-link.phone-social:hover {
    background: #34b7f1;
    border-color: #34b7f1;
    box-shadow: 0 8px 24px rgba(52, 183, 241, 0.4);
}

/* header bottom */

.header_bottom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled .header_bottom {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.99);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}


/* Navigation */
.header_bottom nav {
    flex: 1;
    display: none;
}

.navigation_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation_item {
    position: relative;
}

.navigation_link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navigation_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navigation_link i {
    transition: .3s ease-in-out;
}

.navigation_link:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb, 255, 87, 34), 0.08);
}

.navigation_link:hover i {
    transform: rotate(180deg);
}

.navigation_link:hover::before {
    width: 80%;
}

.navigation_item.active .navigation_link {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb, 255, 87, 34), 0.1);
}

.navigation_item.active .navigation_link::before {
    width: 80%;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px;
    margin: 8px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
}

.navigation_item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 80%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.submenu a:hover {
    background: rgba(var(--primary-color-rgb, 255, 87, 34), 0.08);
    color: var(--primary-color);
    padding-left: 24px;
}

.submenu a:hover::before {
    width: 4px;
}

/* Header Bottom Right */
.header_bottom_right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header_bottom_right a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.header_bottom_right a span {
    display: none;
}

.header_bottom_right a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.header_bottom_right button {
    display: block;
    font-size: 30px;
    background: transparent;
    cursor: pointer;
    transition: .3s ease-in-out;
    color: var(--primary-color);
}

.header_bottom_right button:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.telegram-btn {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.header_bottom_right a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.header_bottom_right a:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.telegram-btn:hover {
    background: #0077b5;
    border-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.5);
    animation: telegramPulse 2s ease-in-out infinite;
}

.header_bottom_right a:hover i {
    transform: scale(1.15) rotate(5deg);
}

.header_bottom_right a:active {
    transform: translateY(-1px);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

@keyframes telegramPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(0, 136, 204, 0.5);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 136, 204, 0.7), 0 0 0 8px rgba(0, 136, 204, 0.1);
    }
}

@media screen and (min-width:1024px) {
    .header_top {
        display: block;
    }

    .header_bottom nav {
        display: block;
    }

    .header_bottom_right a {
        padding: 10px 20px;
    }

    .header_bottom_right a span {
        display: block;
    }

    .header_bottom_right button {
        display: none;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar_header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 87, 34, 0.05);
}

.sidebar_logo a img {
    max-width: 150px;
}

.sidebar_close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar_close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar_close i {
    font-size: 20px;
}

/* Sidebar Content */
.sidebar_content {
    padding: 24px;
}

/* Navigation */
.sidebar_nav {
    list-style: none;
    margin-bottom: 30px;
}

.sidebar_nav_item {
    margin-bottom: 8px;
}

.sidebar_nav_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar_nav_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.sidebar_nav_link:hover::before {
    width: 100%;
}

.sidebar_nav_link:hover {
    color: white;
    transform: translateX(5px);
}

.sidebar_nav_link.active {
    background: var(--primary-color);
    color: white;
}

.sidebar_nav_link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Submenu */
.sidebar_submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 20px;
}

.sidebar_submenu.active {
    max-height: 400px;
}

.sidebar_submenu_item {
    margin-bottom: 4px;
}

.sidebar_submenu_link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 32px;
}

.sidebar_submenu_link::before {
    content: '•';
    position: absolute;
    left: 16px;
    color: var(--primary-color);
}

.sidebar_submenu_link:hover {
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-color);
    padding-left: 36px;
}

/* Caret Icon */
.caret_icon {
    transition: transform 0.3s ease;
}

.caret_icon.active {
    transform: rotate(180deg);
}

/* Contact Info */
.sidebar_contact {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar_contact_title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar_contact_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar_contact_link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar_contact_link i {
    width: 20px;
    color: var(--primary-color);
}

/* Social Links */
.sidebar_social {
    margin-top: 30px;
}

.sidebar_social_title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar_social_links {
    display: flex;
    gap: 12px;
}

.social_btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social_btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.social_btn.whatsapp:hover {
    background: #25D366;
}

.social_btn.telegram:hover {
    background: #0088cc;
}

.social_btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 480px) {
    .sidebar {
        max-width: 100%;
    }
}

/* hero slider */

/* Hero Section */
.hero_section {
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

/* Swiper Container */
.heroSwiper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.heroSwiper .swiper-slide-active {
    opacity: 1 !important;
}

/* Hero Slider */
.hero_slider {
    position: relative;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}

.hero_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero_slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(211, 47, 47, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Image */
.hero_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.1);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.heroSwiper .swiper-slide-active .hero_slider img {
    transform: scale(1);
    opacity: 1;
    animation: zoomOut 8s ease-out forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Article Content */
.hero_slider {
    display: flex;
    align-items: center;
    padding: 60px 80px;
}

.hero_slider article {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    position: relative;
    z-index: 4;
}

.hero_slider strong {
    display: block;
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    letter-spacing: -0.5px;
}

.swiper-slide-active .hero_slider strong {
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero_slider p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
    font-weight: 400;
}

.swiper-slide-active .hero_slider p {
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 1s ease-out 0.3s backwards;
}

.hero_slider a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    justify-content: center;
    width: fit-content;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 40px rgba(211, 47, 47, 0.5), 0 0 0 0 rgba(211, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.heroSwiper .swiper-slide-active .hero_slider a {
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 1s ease-out 0.6s backwards;
}

.hero_slider a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero_slider a:hover::before {
    width: 300px;
    height: 300px;
}

.hero_slider a svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero_slider a:hover svg {
    transform: translateX(5px);
}

.hero_slider a:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero_slider a:active {
    transform: translateY(-2px);
}

/* Custom Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: fit-content;
    gap: 50px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.hero-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.hero-nav-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    stroke: var(--primary-color);
}

.hero-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
    border-color: var(--primary-color);
}

.hero-nav-btn:hover svg {
    stroke: white;
    transform: scale(1.1);
}

.hero-nav-btn:active {
    transform: scale(0.95);
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

/* Custom Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex;
    gap: 12px;
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.hero-pagination .swiper-pagination-bullet:hover::before {
    width: 100%;
    height: 100%;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    height: 12px;
    border-radius: 6px;
    background: white;
    border-color: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
    background: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero_section {
        padding-top: 40px;
    }

    .heroSwiper {
        height: 500px;
    }

    .hero_slider article {
        max-width: 550px;
    }

    .hero_slider strong {
        font-size: 42px;
    }

    .hero_slider p {
        font-size: 18px;
    }

    .hero-nav-btn {
        width: 48px;
        height: 48px;
    }

    .hero-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero_slider a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero_section {
        padding-top: 20px;
    }

    .heroSwiper {
        height: 500px;
        border-radius: 15px;
    }

    .hero_slider {
        padding: 30px 20px;
    }

    .hero_slider article {
        max-width: none;
        text-align: center;
    }

    .hero_slider strong {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero_slider p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero_slider a {
        padding: 14px 35px;
        font-size: 15px;
    }

    .hero-nav-btn {
        width: 44px;
        height: 44px;
    }

    .hero-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-pagination {
        bottom: 20px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 30px;
        height: 10px;
    }

}

@media (max-width: 480px) {
    .heroSwiper {
        height: 450px;
        border-radius: 12px;
    }

    .hero_slider {
        padding: 20px 15px;
    }

    .hero_slider article {
        text-align: center;
    }

    .hero_slider strong {
        font-size: 28px;
    }

    .hero_slider p {
        font-size: 15px;
    }

    .hero_slider a {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-pagination {
        bottom: 15px !important;
        gap: 8px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 24px;
        height: 8px;
    }
}

/* why choose */
.choose-section {
    padding: 40px 0;
}

.choose_wrapper {
    display: grid;
    align-items: center;
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

.choose_card {
    display: flex;
    align-items: center;
    height: 100%;
    row-gap: 10px;
    gap: 10px;

    position: relative;
}

.choose_card:hover figure svg {
    color: white;
    animation: 1s ease 0s 1 normal none running shake;
}

.choose_card figure {
    background: rgba(238, 39, 55, 0.1);
    transition: .3s ease-in-out;
    border-radius: 50%;
    width: 50px;
    flex-shrink: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose_card:hover figure {
    background: var(--primary-color);
}

.choose_card svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.choose_card article {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.choose_card strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #222222;
}

.choose_card p {
    font-size: 12px;
    font-weight: 300;
    color: #666;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);

    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);

    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);

    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);

    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);

    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);

    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);

    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);

    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);

    }
}

@media screen and (min-width:1024px) {
    .choose_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .choose_card {
        padding: 0 20px;
    }

    .choose_card svg {
        width: 32px;
        height: 32px;
    }

    .choose_card:not(:last-child) {
        border-right: 1px dashed rgba(102, 102, 102, 0.2);
    }

    .choose_card figure {
        width: 80px;
        height: 80px;
    }

    .choose_card strong {
        font-size: 18px;
    }

    .choose_card p {
        font-size: 15px;
    }
}

/* product */
.product_section {
    padding-bottom: 40px;
}

.title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Filter Buttons */
.product_filter_area {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 20px;
    position: relative;
    max-width: 1024px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.filter_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
 

.filter_btn svg {
    width: 22px;
    height: 22px;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.filter_btn span {
    position: relative;
    z-index: 1;
}

.filter_btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter_btn:hover svg {
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.filter_btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter_btn.active::before {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.filter_btn.active svg {
    color: white;
    transform: scale(1.1);
}

.filter_btn:active {
    transform: translateY(0);
}

/* Product Grid */
.product_card_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    transition: all 0.3s ease;
}

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

.product_name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product_card:hover .product_name {
    color: var(--primary-color);
}

.product_card.hidden {
    display: none;
}

.product_price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.product_card:hover .product_price {
    transform: scale(1.05);
}

.product_description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.empty_state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    grid-column: span 12;
    display: none;
}

.empty_state.show {
    display: block;
}

.empty_state svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: var(--border-color);
}

@media screen and (min-width:576px) {
    .product_card_wrapper {
        grid-template-columns: repeat(2, 1fr);
        min-height: 400px;
    }
}

@media screen and (min-width:1024px) {
    .product_filter_area {
        max-width: 100%;
        padding-bottom: 0;
        overflow-x: visible;
        margin-bottom: 60px;
        justify-content: center;
    }

    .filter_btn.active {
        transform: translateY(-2px);
    }

    .filter_btn {
        padding: 14px 28px;
    }



    .product_card_wrapper {
        grid-template-columns: repeat(3, 1fr);
        min-height: 400px;
    }

    .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}


/* Grid container */
.products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card */
.product_card {
    display: block;
    text-decoration: none;
    background: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product_card:hover {
    background: #ececec;
}

/* Header Section */
.product_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product_card .product_title {
    font-size: 20px;
    font-weight: 800;
    color: #b91c1c;
    letter-spacing: -0.5px;
}

.product_price_badge {
    font-size: 28px;
    font-weight: 800;
    color: #b91c1c;
}

/* Image Section */
.product_image_wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    height: 250px;
    overflow: hidden;
    background: #e5e7eb;
    margin-bottom: 20px;
    aspect-ratio: 1;
}

.product_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product_card:hover .product_image_wrapper img {
    transform: scale(1.08);
}

.product_card:hover .order_btn {
    transform: scale(.95);
}

/* Info Section */
.product_info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product_info img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.product_details {
    flex: 1;
}

.product_name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.3;
}

.product_description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Footer Section */
.product_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_footer .order_btn {
    padding: 10px;
    background: #ff3c00;
    border-radius: 10px;
    color: #fff;
    transition: .3s ease-in-out;
}

.price_label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 4px;
}

.product_price {
    font-size: 32px;
    font-weight: 800;
    color: #b91c1c;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 20px;
}

/* Hidden state */
.product_card.hidden {
    opacity: 0;
    transform: translateY(30px);
}

/* Fade-in animation */
.product_card.fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays */
.product_card:nth-child(1) {
    animation-delay: 0s;
}

.product_card:nth-child(2) {
    animation-delay: 0.1s;
}

.product_card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive */
/* Responsive dizayn */
@media (max-width: 1200px) {
    .products_grid {
        grid-template-columns: repeat(23, 1fr);
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .product_card {
        padding: 20px;
    }

    .product_card .product_title {
        font-size: 18px;
    }

    .product_price_badge {
        font-size: 22px;
    }

    .products_grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }

    .product_name {
        font-size: 22px;
    }

    .product_description {
        font-size: 14px;
    }

    .product_price_badge {
        font-size: 24px;
    }

    .product_info img {
        width: 70px;
        height: 70px;
    }

    .product_name {
        font-size: 18px;
    }

    .product_price {
        font-size: 28px;
    }
}


/* porsions */
.product_v2_section {
    padding-bottom: 40px;
}

.product_v2_section .title_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product_v2_section .title_area h3 {
    font-size: 24px;
    color: #212121;
    font-weight: bold;
}

.product_v2_section .title_area .button_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_v2_section .title_area .button_wrapper button.nav_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    width: 40px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    height: 40px;
}

.product_v2_section .title_area .button_wrapper button.nav_btn svg {
    width: 20px;
    height: 20px;
}

.product_v2_section .title_area .button_wrapper button.nav_btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.product_v2_card {
    position: relative;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    padding: 18px;
    flex-direction: column;
    transition: .3s ease-in-out;
    row-gap: 10px;
}

.product_v2_card::after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: #212121;
    transition: .3s ease-in-out;
}

.product_v2_card:hover::after {
    width: 100%;
    height: 100%;
}

.product_v2_card .card_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product_v2_card .card_header img {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 3;
    object-fit: cover;
    border-radius: 50%;
}

.product_v2_card .card_header article {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: relative;
    z-index: 3;
}

.product_v2_card:hover .card_header article strong {
    color: #fff;
}

.product_v2_card .card_header article strong {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    transition: .3s ease-in-out;
}

.product_v2_card:hover .card_header article p {
    color: #d9d9d9;
}

.product_v2_card .card_header article p {
    font-size: 12px;
    color: #666;
}

.product_v2_card .card_footer {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: start;
    z-index: 3;
    row-gap: 5px;
}

.product_v2_card:hover .card_footer span {
    color: #fff;
}

.product_v2_card:hover .card_footer strong {
    color: white;
}

.product_v2_card .card_footer strong {
    color: var(--primary-color);
    font-size: 20px;
    transition: .3s ease-in-out;
}

.product_v2_card .card_footer span {
    color: #212121;
    font-size: 14px;
}

.product_v2_card .cursor {
    width: 40px;
    height: 40px;
    border-top-left-radius: 10px;
    background-color: var(--primary-color);
    color: white;
    justify-content: center;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    font-size: 18px;
    align-items: center;
}

.product_v2_card .cursor i {
    transition: .3s ease-in-out;
}

.product_v2_card:hover .cursor {
    background: #fff;
    color: var(--primary-color);
}

.product_v2_card:hover .cursor i {
    transform: rotate(45deg);
}


.product_v3_card {
    display: flex;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
    row-gap: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.product_v3_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7043 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.product_v3_card:hover::before {
    opacity: 0.03;
}

/* Article - Top Section with Text */
.product_v3_card article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 12px;
}

.product_v3_card article h4 {
    font-size: 17px;
    color: #222222;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
    line-height: 1.3;
}

.product_v3_card:hover article h4 {
    color: var(--primary-color);
    transform: translateX(3px);
}

.product_v3_card article strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.product_v3_card article strong::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product_v3_card:hover article strong::after {
    width: 100%;
}

.product_v3_card:hover article strong {
    transform: scale(1.08);
}

/* Figure - Image Section */
.product_v3_card figure {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    width: 100%;
    z-index: 1;
}

/* Dark Overlay on Hover */
.product_v3_card figure::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.product_v3_card:hover figure::after {
    opacity: 1;
    transform: scale(1);
}

/* Shine Effect */
.product_v3_card figure::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
}

.product_v3_card:hover figure::before {
    opacity: 1;
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.product_v3_card figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product_v3_card:hover figure img {
    transform: scale(1.12) rotate(2deg);
}

/* Add to Cart Button */
.add_to_cart_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.add_to_cart_btn svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product_v3_card:hover .add_to_cart_btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.add_to_cart_btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.12) rotate(90deg);
}

.add_to_cart_btn:hover svg {
    color: white;
}

.add_to_cart_btn:active {
    transform: translate(-50%, -50%) scale(0.95) rotate(90deg);
}

/* Badge */
.product_badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 5;
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.product_v3_card:hover .product_badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.product_v3_card:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 0;
}

@media screen and (min-width:1024px) {
    .product_v2_section .title_area h3 {
        font-size: 40px;
    }

    .product_v2_section .title_area .button_wrapper button.nav_btn {
        width: 50px;
        height: 50px;
    }
}

/* footer */

/* Footer */
footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.1), transparent 50%);
    pointer-events: none;
}

/* Footer Top - Logo & Social */
.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo {
    display: block;
    transition: all 0.3s ease;
}

.footer_logo:hover {
    transform: scale(1.05);
}

.footer_logo img {
    height: 50px;
    width: auto;
}

/* Social Links */
.social_links {
    display: flex;
    gap: 12px;
}

.social_link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social_link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.3);
}

.social_link svg {
    width: 20px;
    height: 20px;
}

/* Footer Center - Main Content */
.footer_center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer_section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_links li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer_links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer_links li a:hover::before {
    width: 20px;
}

/* Contact Section */
.contact_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact_icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact_item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact_item a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.site_credit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.site_credit a {
    display: block;
    transition: all 0.3s ease;
}

.site_credit a:hover {
    transform: scale(1.05);
}

.site_credit img {
    height: 30px;
    width: auto;
}

.heart {
    color: var(--primary-color);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

/* Responsive - Location Dropdown */
@media (max-width: 768px) {
    .location-dropdown-menu {
        left: auto;
        right: 0;
    }

    .location-dropdown-menu::before {
        left: auto;
        right: 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer_center {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer_section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer_center {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
        gap: 40px;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer_section h3 {
        font-size: 18px;
    }
}

/* CTA Section */
.cta_section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.cta_box {
    background: transparent;
    padding: 60px 0;
    background: #2a2a2a;
    position: relative;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.cta_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.1), transparent 50%);
    pointer-events: none;
}

/* Content */
.cta_content {
    max-width: 600px;
}

.cta_title {
    font-size: 36px;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

.cta_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.cta_description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.cta_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.cta_btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta_btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta_btn span {
    position: relative;
    z-index: 1;
}

.cta_btn_whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.cta_btn_whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta_btn_whatsapp:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.cta_btn_telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 2px solid rgba(0, 136, 204, 0.3);
}

.cta_btn_telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.cta_btn_telegram:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .cta_section {
        padding: 60px 0;
    }

    .cta_box {
        padding: 50px 0;
        gap: 35px;
    }

    .cta_title {
        font-size: 32px;
    }

    .cta_description {
        font-size: 17px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .cta_section {
        padding: 50px 0;
    }

    .cta_box {
        padding: 40px 20px;
        gap: 30px;
    }

    .cta_title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta_title::after {
        width: 50px;
    }

    .cta_description {
        font-size: 16px;
    }

    .cta_buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta_btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
        min-width: auto;
    }
}

/* contact */
.contact-section {
    padding: 40px 0;
}

.custom_navigation_bar {
    background-image: linear-gradient(54.47deg, #130000, #330808 40.6%, #b42828);
    background-repeat: no-repeat;
    background-size: 150% 100%;
    height: auto;
    min-height: 300px;
    left: 0;
    overflow: visible;
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.custom_navigation_bar article {
    display: flex;
    flex-direction: column;
    color: white;
    row-gap: 20px;
}

.custom_navigation_bar article h1 {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.contact-form-wrapper {
    gap: 20px;
    column-gap: 30px;
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 40px;
}

.contact-form-wrapper .information_area .information_box ul li,
.custom_navigation_bar article .my-speedbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom_navigation_bar article a,
.custom_navigation_bar article span {
    color: white;
}

.contact-box {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 20px;
    background: #f2f2f2;
}

.contact-icon_area {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2em;
    background: var(--primary-dark);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: .5s;
    margin-bottom: 20px;
}

@keyframes icon-animat {

    0%,
    100% {
        border-radius: 67% 33% 29% 71%/39% 46% 54% 61%
    }

    25% {
        border-radius: 69% 31% 19% 81%/43% 37% 63% 57%
    }

    50% {
        border-radius: 67% 33% 16% 84%/57% 37% 63% 43%
    }

    75% {
        border-radius: 77% 23% 61% 39%/36% 61% 39% 64%
    }
}

.contact-box-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
}

.contact-box-content a,
.contact-box-content span {
    color: #55565a;
    line-height: 1.3;
}

.contact_boxs_wrapper {
    display: grid;
    row-gap: 30px;
    column-gap: 25px;
    align-items: stretch;
    margin-bottom: 40px;
}

.contact-form-wrapper .form_area {
    border-radius: 10px;
    padding: 20px;
    background: #f2f2f2;
}

.contact-form-wrapper .form_area h6 {
    color: black;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-wrapper .form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-wrapper .form_area .input_fields input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    height: 50px;
    border-radius: 10px;
}

.contact-form-wrapper .form_area .input_fields input,
.contact-form-wrapper .form_area .input_fields textarea {
    background-color: #fff;
    border: none;
    width: 100%;
    padding: .375rem .75rem;
    width: 100%;
    border-radius: 10px;
    resize: none;
    outline: 0 !important;
    color: black;
    display: block;
}

.contact-form-wrapper .form_area .input_fields textarea {
    min-height: 150px;
}

.contact-form-wrapper .form_area .input_fields button {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    transition: .3s ease-in-out;
    line-height: 1.5;
    color: white;
    height: 50px;
    border: none;
    outline: 0 !important;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 10px;
}

.contact-form-wrapper .social_area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form-wrapper .social_area a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    width: 60px;
    height: 60px;
    transition: .3s ease-in-out;
    color: black;
    background: #f2f2f2;
    border-radius: 50%;
}

.contact-form-wrapper .social_area a:hover {
    background: var(--primary-color);
    color: white;
}

.contact-form-wrapper .information_area {
    background: #f2f2f2;
    border-radius: 10px;
    padding: 1rem;
    display: grid;
    gap: 20px;
}

.contact-form-wrapper .information_area,
.contact-section .map-area,
.contact_boxs_wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-form-wrapper .information_area .information_box {
    background: white;
    border-radius: 10px;
    padding: 1rem;
}

.contact-form-wrapper .information_area .information_box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-form-wrapper .information_area .information_box ul li:not(:last-child) {
    margin-bottom: 10px;
}

.contact-form-wrapper .information_area .information_box ul li,
.custom_navigation_bar article .my-speedbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper .information_area .information_box ul li b {
    font-weight: 700;
}

.contact-form-wrapper .information_area .information_box ul li i,
.footer-bottom a:hover,
.footer-center ul li a:hover,
.products_card:hover figure svg {
    color: var(--crimsonBlaze);
}

.contact-form-wrapper .information_area .information_box ul li a,
.contact-form-wrapper .information_area .information_box ul li span {
    color: var(--charcoalGray);
    font-size: .875rem;
}

.contact-section .map-area {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.contact-form-wrapper .information_area,
.contact-section .map-area,
.contact_boxs_wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-section .map-area a.map-link {
    font-size: 1.5rem;
    display: block;
    color: var(--midnightBlue);
    margin-bottom: 20px;
    text-align: center;
}

.contact-section .map-area .factory,
.contact-section .map-area .showroom {
    height: 250px;
}



@media screen and (min-width: 640px) {
    .contact_boxs_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .contact_boxs_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-form-wrapper .social_area {
        flex-direction: column;
        justify-content: unset;
    }

    .contact-section .map-area .factory,
    .contact-section .map-area .showroom {
        height: 400px;
    }

    .contact-section .map-area {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form-wrapper {
        grid-template-columns: 2fr 0.2fr 2fr;
    }

    .contact-form-wrapper .information_area {
        padding: 2.5rem;
    }


}

/* about */

.about-section {
    padding-top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content h1 {
    font-size: 24px;
    line-height: 1.2;
    color: #c83e3e;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.3;
    text-align: justify;
}

/* Stats Section */
.stats-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.stat-card i {
    font-size: 48px;
    color: #c83e3e;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #c83e3e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Values Section */
.values-section {
    margin: 40px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: #c83e3e;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #c83e3e;
    box-shadow: 0 5px 20px rgba(200, 62, 62, 0.1);
}

.value-card i {
    font-size: 36px;
    color: #c83e3e;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.3;
}

/* Team Section */
.team-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    font-size: 36px;
    color: #c83e3e;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
}

.team-info p {
    color: #c83e3e;
    font-weight: 500;
}

@media screen and (min-width:640px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:1024px) {
    .about-content {
        margin-top: 20px;
    }

    .about-content h2 {
        font-size: 36px;
        line-height: 1.3;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image img {
        max-height: 450px;
        border-radius: 15px;
    }

    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-card {
        padding: 40px 30px;
    }

    .value-card h3 {
        font-size: 22px;
    }

    .value-card p {
        font-size: 16px;
    }

    .value-card i {
        font-size: 48px;
    }
}

/* card v4 */
.product_v4_card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.product_v4_card .products_orders {
    padding: 10px;
    position: absolute;
    background: #fff;
    bottom: 0;
    left: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    transform: translateY(200%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.product_v4_card:hover .products_orders {
    transform: translateY(0);
}

.product_v4_card .products_orders .order_btn {
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #000;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.product_v4_card .products_orders .order_btn:hover {
    background: #e74c3c;
    transform: scale(1.02);
}

.product_v4_card:hover .card_header img {
    transform: scale(0.95) rotate(-5deg);
}

.product_v4_card:hover .pizza_image {
    transform: scale(1.15) rotate(2deg);
}

.card_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card_header img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card_header article {
    flex: 1;
}

.card_header strong {
    display: block;
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 4px;
    font-weight: 600;
}

.card_header p {
    font-size: 13px;
    color: #636e72;
    line-height: 1.4;
}

.pizza_image_container {
    position: relative;
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
}

.pizza_image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new_badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
    }
}
  
.card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.card_footer span {
    font-size: 13px;
    color: #636e72;
    font-weight: 500;
}

.card_footer strong {
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product_v4_card:hover .card_footer strong {
    transform: scale(1.1);
    color: #b11e0d;
}

.title_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.title_section h2 {
    font-size: 24px;
    color: #b11e0d;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product_v4_card:hover .title_section h2 {
    color: #e74c3c;
    transform: translateX(5px);
}

.title_section .price {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product_v4_card:hover .title_section .price {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .product_v4_card {
        padding: 20px;
    }

    .pizza_image {
        height: 220px;
    }

    .title_section h2 {
        font-size: 20px;
    }

    .title_section .price {
        font-size: 24px;
    }
}

/* Card V6 - Soft Design */ 
/* Card V6 - Soft Design */
.product_v6_card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.product_v6_card:hover {
    border-color: #ffd4d4;
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.08);
}

/* Header Section */
.card_header_v6 {
    padding: 24px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_header_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.category_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff5f5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #e74c3c;
    transition: background 0.4s ease, color 0.4s ease;
}

.product_v6_card:hover .category_tag {
    background: #ffe8e8;
    color: #c0392b;
}

.category_tag i {
    font-size: 10px;
}

.product_title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.product_v6_card:hover .product_title {
    color: #e74c3c;
}

.product_subtitle {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Image Section */
.image_section_v6 {
    position: relative;
    padding: 0 24px;
    margin-bottom: 20px;
}

.image_wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 240px;
}

.product_image_v6 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.product_v6_card:hover .product_image_v6 {
    opacity: 0.95;
    filter: brightness(1.05);
}

.badge_new {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sifariş et button */
.quick_actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product_v6_card:hover .quick_actions {
    opacity: 1;
    transform: translateY(0);
}

.action_btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.action_btn:hover {
    background: #e74c3c;
    color: white;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transform: scale(1.05);
}

/* Footer Section */
.card_footer_v6 {
    padding: 20px 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    transition: border-color 0.4s ease;
}

.product_v6_card:hover .card_footer_v6 {
    border-color: #ffd4d4;
}

.price_section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price_label {
    font-size: 11px;
    color: #95a5a6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price_amount {
    font-size: 26px;
    font-weight: 800;
    color: #2c3e50;
    transition: color 0.4s ease;
}

.product_v6_card:hover .price_amount {
    color: #e74c3c;
}

.price_currency {
    font-size: 18px;
    font-weight: 700;
    margin-left: 2px;
}

.add_to_cart_btn {
    padding: 14px 28px;
    background: #e74c3c;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.add_to_cart_btn:hover {
    background: #c0392b;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.add_to_cart_btn i {
    font-size: 16px;
}

@media screen and (max-width: 480px) {
    .product_v6_card {
        max-width: 100%;
    }

    .image_wrapper {
        height: 220px;
    }

    .product_title {
        font-size: 20px;
    }

    .add_to_cart_btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .action_btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}


/* About Section */
/* ============================================
   HAQQIMIZDA BÖLMƏSİ - VARIANT 1 (Grid Layout)
============================================ */
.about_section_v1 {
    padding: 100px 0;
    background: white;
}

.about_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Şəkil bölməsi */
.about_image_wrapper {
    position: relative;
}

.image_container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image_container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about_content_grid:hover .image_container img {
    transform: scale(1.05);
}

.image_decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 24px;
    top: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.15;
}
 
/* Mətn bölməsi */
.about_text_content {
    padding: 20px 0;
}

.section_tag {
    display: inline-block;
    padding: 8px 20px;
    background: #fff5f5;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section_title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section_description {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about_features {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.about_feature_item i {
    color: #e74c3c;
    font-size: 20px;
    margin-top: 2px;
}

.about_feature_item span {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
}

.cta_button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta_button:hover {
    background: #c0392b;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.cta_button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta_button:hover i {
    transform: translateX(5px);
}


