/* VIPAD Professional Header */
.vipad-header {
    position: relative;
    z-index: 99;
    background: #ffffff;
}

.vipad-header .header-lower {
    padding: 18px 0;
    background: #ffffff;
}

.vipad-header-inner {
    min-height: 76px;
    padding: 0 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}
.product-tabs{
    display:none
}
.vipad-header .logo img {
    width: 138px;
    height: auto;
    display: block;
}

.vipad-header .nav-outer {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vipad-header .main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.vipad-header .main-menu .navigation > li {
    position: relative;
    padding: 0;
    margin: 0;
}

.vipad-header .main-menu .navigation > li > a {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.vipad-header .main-menu .navigation > li > a:hover {
    color: #6a973c;
    background: rgba(106, 151, 60, .08);
}

.vipad-header .main-menu .navigation > li.dropdown > a::after {
    content: "▾";
    font-size: 10px;
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.vipad-header .main-menu .navigation > li > ul {
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
}

.vipad-header .main-menu .navigation > li > ul > li > a {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.vipad-header .outer-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vipad-header-phone {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6a973c, #415f2b);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(233, 39, 39, 0.28);
    transition: all 0.3s ease;
}

.vipad-header-phone:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(233, 39, 39, 0.36);
}

.vipad-header-phone .phone-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vipad-header .mobile-nav-toggler {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #111827;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .page-title .auto-container{
        flex-direction: column !important;
    }
    body .vipad-product-detail .vipad-products-grid{
            grid-template-columns: repeat(1, 1fr) !important;
    }
    .vipad-header-inner {
        padding: 0 18px;
        min-height: 70px;
    }

    .vipad-header .nav-outer {
        display: none;
    }

    .vipad-header .mobile-nav-toggler {
        display: flex;
    }

    .vipad-header-phone {
        display: none;
    }

    .vipad-header .logo img {
        width: 125px;
    }
}
.about-img {
    width: 100%;
height: 742px;
object-fit: cover;
}
/* HERO */

.vipad-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
    margin: 0 25px;
}

.vipad-hero-bg {
    position: absolute;
    inset: 0;
}

.vipad-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vipad-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,12,30,.85) 0%,
            rgba(5,12,30,.70) 35%,
            rgba(5,12,30,.20) 100%
        );
}

.vipad-hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    color: #fff;
}

.vipad-badge {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.vipad-hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.vipad-hero-content h1 span {
    display: block;
    color: #6a973c;
}

.vipad-hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
}

.vipad-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.vipad-btn-primary {
    background: #6a973c;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
}

.vipad-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
}

.vipad-btn-secondary {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.vipad-btn-secondary:hover {
    color: #fff;
}

.vipad-hero-stats {
    display: flex;
    gap: 20px;
}

.hero-stat {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    padding: 25px;
    min-width: 170px;
    border-radius: 20px;
}

.hero-stat strong {
    display: block;
    font-size: 34px;
    color: #fff;
}

.hero-stat span {
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

@media(max-width:991px){

    .vipad-hero {
        min-height: auto;
        margin: 0;
        border-radius: 0;
    }

    .vipad-hero-content {
        padding: 120px 0 80px;
    }

    .vipad-hero-content h1 {
        font-size: 42px;
    }

    .vipad-hero-buttons {
        flex-direction: column;
    }

    .vipad-hero-stats {
        flex-direction: column;
    }
}


/* ==========================
   VIPAD ABOUT SECTION
========================== */

.vipad-about-section {
    padding: 120px 0;
    background: #f7f8fa;
}

.vipad-about-image-wrapper {
    position: relative;
}

.vipad-about-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,.10);
}

.vipad-exp-box {
    position: absolute;
    bottom: 30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 25px;
    background: #6a973c;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(229,35,35,.35);
}

.vipad-exp-box strong {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
}

.vipad-exp-box span {
    font-size: 16px;
    text-align: center;
}

.vipad-section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(106, 151, 60, .08);
    color: #6a973c;
    font-weight: 700;
    margin-bottom: 20px;
}

.vipad-about-content h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
}

.vipad-about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 35px;
}

.vipad-feature-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.vipad-feature-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.vipad-feature-item i {
    color: #6a973c;
    margin-right: 10px;
}

.vipad-about-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.vipad-about-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .4s;
}

.vipad-about-card:hover {
    transform: translateY(-8px);
}

.vipad-about-card .number {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: #6a973c;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vipad-about-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111827;
}

.vipad-about-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

.vipad-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 35px;
    border-radius: 50px;
    background: #6a973c;
    color: #fff;
    font-weight: 700;
    transition: .4s;
}

.vipad-about-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

@media(max-width:991px){

    .vipad-about-section {
        padding: 80px 0;
    }

    .vipad-about-content {
        margin-top: 50px;
    }

    .vipad-about-content h2 {
        font-size: 36px;
    }

    .vipad-feature-list {
        grid-template-columns: 1fr;
    }

    .vipad-about-cards {
        flex-direction: column;
    }

    .vipad-exp-box {
        width: 130px;
        height: 130px;
        right: 15px;
        bottom: 15px;
    }

    .vipad-exp-box strong {
        font-size: 40px;
    }
}

/* ==================================================
   VIPAD PRODUCTS
================================================== */

.vipad-products-section{
    padding:120px 0;
    background:#ffffff;
}

.vipad-section-title{
    max-width:800px;
    margin:0 auto 60px;
}

.vipad-subtitle{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(229,35,35,.08);
    color:#6a973c;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
}

.vipad-section-title h2{
    font-size:54px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.vipad-section-title p{
    font-size:18px;
    color:#6b7280;
    line-height:1.9;
}

.vipad-product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.vipad-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.vipad-product-image{
    height:320px;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.vipad-product-image img{
    width:80%;
    transition:.6s;
}

.vipad-product-card:hover img{
    transform:scale(1.08);
}

.vipad-product-content{
    padding:35px;
}

.vipad-category{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:#ffe8e8;
    color:#6a973c;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.vipad-product-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.vipad-product-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.vipad-product-content a{
    color:#6a973c;
    font-weight:700;
    transition:.3s;
}

.vipad-product-content a:after{
    content:" →";
}

.vipad-product-content a:hover{
    color:#111827;
}

.vipad-pagination{
    margin-top:40px;
    position:relative;
}

.vipad-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    opacity:1;
    background:#d9d9d9;
}

.vipad-pagination .swiper-pagination-bullet-active{
    background:#6a973c;
}

@media(max-width:991px){

    .vipad-products-section{
        padding:80px 0;
    }

    .vipad-section-title h2{
        font-size:36px;
    }

    .vipad-product-image{
        height:240px;
    }

}
/* ===================================================
   VIPAD PRODUCTS SECTION
=================================================== */

.vipad-products-section {
    padding: 120px 0;
    background: #ffffff;
}

.vipad-products-title {
    text-align: center;
    max-width:100%;
    margin: 0 auto 60px;
}

.vipad-products-title span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(106, 151, 60, .08);
    color: #6a973c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.vipad-products-title h2 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.vipad-products-title p {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

.vipad-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vipad-grid-product {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf0f4;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.vipad-grid-product::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #6a973c;
    transition: .35s;
}

.vipad-grid-product:hover::before {
    width: 100%;
}

.vipad-grid-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.product-img {
    height: 260px;
    background: #fff !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contain-img{
      width: 100% !important;
          object-fit: cover !important; 

}
.cover-img{
      width: 100% !important;
    object-fit: contain !important; 
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s;
}

.vipad-grid-product:hover .product-img img {
    transform: scale(1.08);
}

.product-content {
    padding: 28px;
}

.product-content span {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(106, 151, 60, .08);
    color: #6a973c;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-content h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.product-content p {
    color: #6b7280;
    line-height: 1.8;
    min-height: 75px;
    margin-bottom: 20px;
}

.product-content strong {
    color: #6a973c;
    font-size: 14px;
    font-weight: 800;
}

@media(max-width:991px){

    .vipad-products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vipad-products-title h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .vipad-products-grid{
        grid-template-columns:1fr;
    }

    .vipad-products-section{
        padding:80px 0;
    }

}

/* ===================================
   VIPAD CTA
=================================== */

.vipad-cta-section{
    padding:120px 0 120px;
    background:#fff;
}

.vipad-cta-box{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:70px;
    background:url('/content/images/banner-1.jpg') center center;
    background-size:cover;
}

.vipad-cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(9,16,36,.95) 0%,
        rgba(9,16,36,.85) 50%,
        rgba(9,16,36,.70) 100%
    );
}

.vipad-cta-content,
.vipad-cta-buttons{
    position:relative;
    z-index:2;
}

.vipad-cta-content span{
    display:inline-block;
    color:#6a973c;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.vipad-cta-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
}

.vipad-cta-content p{
    color:rgba(255,255,255,.75);
    font-size:17px;
    line-height:1.9;
    max-width:700px;
}

.vipad-cta-buttons{
    display:flex;
    justify-content:flex-end;
    gap:15px;
}

.vipad-btn-primary{
    height:58px;
    padding:0 35px;
    border-radius:50px;
    background:#6a973c;
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.vipad-btn-primary:hover{
    color:#fff;
    transform:translateY(-3px);
}

.vipad-btn-outline{
    height:58px;
    padding:0 35px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(10px);
}

.vipad-btn-outline:hover{
    color:#fff;
    background:rgba(255,255,255,.08);
}

@media(max-width:991px){

    .vipad-cta-box{
        padding:50px 35px;
    }

    .vipad-cta-content h2{
        font-size:36px;
    }

    .vipad-cta-buttons{
        margin-top:30px;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

}


/* ===============================
   VIPAD WHY SECTION
================================ */

.vipad-why-section {
    padding: 120px 0;
    background: #f7f8fa;
}

.vipad-why-title {
    max-width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

.vipad-why-title span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(106, 151, 60, .08);
    color: #6a973c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.vipad-why-title h2 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.vipad-why-title p {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

.vipad-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vipad-why-card {
    position: relative;
    background: #ffffff;
    padding: 38px 30px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 35px rgba(15, 23, 42, .05);
    transition: all .35s ease;
    overflow: hidden;
}

.vipad-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #6a973c;
    transition: all .35s ease;
}

.vipad-why-card:hover::before {
    width: 100%;
}

.vipad-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 24px;
}

.vipad-why-card h4 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.vipad-why-card p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

@media(max-width: 1199px) {
    .vipad-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .vipad-why-section {
        padding: 80px 0;
    }

    .vipad-why-title h2 {
        font-size: 34px;
    }

    .vipad-why-grid {
        grid-template-columns: 1fr;
    }
}


.vipad-gallery-section{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.vipad-gallery-title{
    text-align:center;
    margin-bottom:60px;
}

.vipad-gallery-title h2{
    font-size:50px;
    font-weight:800;
}

.gallery-track{
    display:flex;
    gap:25px;
    width:max-content;
    margin-bottom:25px;
}

.gallery-track-left{
    animation:galleryLeft 45s linear infinite;
}

.gallery-track-right{
    animation:galleryRight 45s linear infinite;
}

.gallery-item{
    width:420px;
    height:280px;
    border-radius:24px;
    overflow:hidden;
    flex-shrink:0;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@keyframes galleryLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes galleryRight{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

.gallery-item{
    width:450px !important;
    height:300px !important;

    background:#f4f6f9 !important;
    border-radius:24px !important;

    padding:25px !important;

    overflow:hidden !important;

    border:1px solid #e7ebf0 !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06) !important;
}

.gallery-item img{
    width:100% !important;
    height:100% !important;

    object-fit:contain !important;

    background:#ffffff !important;

    border-radius:18px !important;

    padding:15px !important;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08) !important;

    transition:.4s ease !important;
}

.gallery-item:hover img{
    transform:scale(1.05) !important;
}

.gallery-item:hover{
    box-shadow:
        0 25px 60px rgba(0,0,0,.12) !important;
}
 
.vipad-footer {
    position: relative;
    overflow: hidden;
    padding: 100px 0 24px;
    background-color: var(--color-two);
    color: #ffffff;
}

.vipad-footer .auto-container {
    position: relative;
    z-index: 2;
}

/* Arka plan deseni */

.vipad-footer-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 72%;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
    background-image: url("/content/images/footer-1.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Ana sütun yapısı */

.vipad-footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(180px, 0.85fr));
    gap: 70px;
    align-items: start;
    padding: 0 30px 74px;
}

.vipad-footer-column {
    position: relative;
    min-width: 0;
}

/* Logo ve açıklama */

.vipad-footer-logo {
    width: 150px;
    height: 58px;
    margin-bottom: 30px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 7px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .vipad-footer-logo:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    }

    .vipad-footer-logo img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 35px;
        object-fit: contain;
    }

.vipad-footer-description {
    max-width: 335px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* Başlıklar */

.vipad-footer-title,
.vipad-footer-newsletter-title {
    position: relative;
    margin: 0 0 31px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

    .vipad-footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: var(--main-color, #68a52f);
        border-radius: 10px;
    }

.vipad-footer-newsletter-title {
    margin-top: 30px;
    margin-bottom: 18px;
    padding-bottom: 0;
}

/* Bülten */

.vipad-footer-newsletter {
    width: 100%;
    max-width: 360px;
}

.vipad-footer-newsletter-inner {
    position: relative;
    height: 60px;
    padding: 5px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.vipad-footer-newsletter input {
    width: 100%;
    height: 100%;
    padding: 0 75px 0 20px;
    background: transparent;
    border: 0;
    outline: 0;
    color: #172033;
    font-size: 15px;
}

    .vipad-footer-newsletter input::placeholder {
        color: #777d89;
    }

.vipad-footer-newsletter button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 55px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20283f;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .vipad-footer-newsletter button:hover {
        background: var(--main-color, #68a52f);
    }

    .vipad-footer-newsletter button:active {
        transform: scale(0.95);
    }

/* Footer linkleri */

.vipad-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .vipad-footer-links li {
        margin-bottom: 18px;
    }

        .vipad-footer-links li:last-child {
            margin-bottom: 0;
        }

    .vipad-footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        text-decoration: none;
        transition: color 0.25s ease, transform 0.25s ease;
    }

        .vipad-footer-links a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: var(--main-color, #68a52f);
            transition: width 0.25s ease;
        }

        .vipad-footer-links a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

            .vipad-footer-links a:hover::before {
                width: 100%;
            }

.vipad-footer-all-products {
    margin-top: 4px;
}

    .vipad-footer-all-products a {
        gap: 9px;
        color: #ffffff;
        font-weight: 700;
    }

        .vipad-footer-all-products a i {
            color: var(--main-color, #68a52f);
            font-size: 11px;
            transition: transform 0.25s ease;
        }

        .vipad-footer-all-products a:hover i {
            transform: translateX(4px);
        }

/* İletişim */

.vipad-footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .vipad-footer-contact li {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .vipad-footer-contact li:last-child {
            margin-bottom: 0;
        }

.vipad-footer-contact-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(104, 165, 47, 0.8);
    border-radius: 50%;
    color: var(--main-color, #68a52f);
    font-size: 14px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vipad-footer-contact li:hover .vipad-footer-contact-icon {
    background: var(--main-color, #68a52f);
    color: #ffffff;
    transform: translateY(-2px);
}

.vipad-footer-contact-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .vipad-footer-contact-content > span {
        color: rgba(255, 255, 255, 0.45);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .vipad-footer-contact-content a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        text-decoration: none;
        overflow-wrap: anywhere;
        transition: color 0.25s ease;
    }

        .vipad-footer-contact-content a:hover {
            color: var(--main-color, #68a52f);
        }

/* Alt footer */

.vipad-footer-bottom {
    min-height: 72px;
    padding: 14px 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    background: #232c46;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 11px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.vipad-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Sosyal medya */

.vipad-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .vipad-footer-socials a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.17);
        border-radius: 50%;
        color: #ffffff;
        font-size: 13px;
        text-decoration: none;
        transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
    }

        .vipad-footer-socials a:hover {
            background: var(--main-color, #68a52f);
            border-color: var(--main-color, #68a52f);
            transform: translateY(-3px);
        }

/* Neturk alanı */

.vipad-footer-credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.vipad-footer-design-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .vipad-footer-design-link:hover {
        color: #ffffff;
    }

.vipad-footer-credit-line {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.18);
}

.vipad-footer-credit img {
    display: block;
    width: 85px;
    height: auto;
    object-fit: contain;
}

/* Tablet */

@media (max-width: 1199px) {
    .vipad-footer-grid {
        grid-template-columns: 1.3fr 0.8fr 0.8fr;
        gap: 55px 40px;
    }

    .vipad-footer-contact-column {
        grid-column: 2 / 4;
    }

    .vipad-footer-contact {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

        .vipad-footer-contact li {
            margin-bottom: 0;
        }

    .vipad-footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .vipad-footer-socials {
        order: 3;
        grid-column: 1 / -1;
    }
}

/* Mobil tablet */

@media (max-width: 991px) {
    .vipad-footer {
        padding-top: 75px;
    }

    .vipad-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 55px 45px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .vipad-footer-about {
        grid-column: 1 / -1;
    }

    .vipad-footer-description {
        max-width: 600px;
    }

    .vipad-footer-contact-column {
        grid-column: 1 / -1;
    }

    .vipad-footer-bottom {
        margin: 0 15px;
    }
}

/* Mobil */

@media (max-width: 767px) {
    .vipad-footer {
        padding: 65px 0 20px;
    }

    .vipad-footer-pattern {
        width: 100%;
        height: 45%;
        opacity: 0.3;
    }

    .vipad-footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 55px;
    }

    .vipad-footer-about,
    .vipad-footer-contact-column {
        grid-column: auto;
    }

    .vipad-footer-description,
    .vipad-footer-newsletter {
        max-width: 100%;
    }

    .vipad-footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

        .vipad-footer-contact li {
            width: 100%;
            margin-bottom: 20px;
        }

    .vipad-footer-bottom {
        min-height: auto;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }

    .vipad-footer-copyright {
        order: 2;
    }

    .vipad-footer-socials {
        order: 1;
    }

    .vipad-footer-credit {
        order: 3;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .vipad-footer-grid {
        padding-right: 5px;
        padding-left: 5px;
    }

    .vipad-footer-bottom {
        margin-right: 5px;
        margin-left: 5px;
    }

    .vipad-footer-credit {
        flex-wrap: wrap;
    }

    .vipad-footer-credit-line {
        display: none;
    }
}
















 
:root {
    --vipad-primary: #6a973c;
    --vipad-primary-dark: #4f742b;
    --vipad-primary-light: #7eac4d;
    --vipad-gold: #88ad58;
    --vipad-gold-light: #a2c477;
    --vipad-text: #142326;
    --vipad-muted: #697679;
    --vipad-white: #ffffff;
    --vipad-soft: #f6f8f8;
    --vipad-border: #e4e9e9;
    --vipad-shadow: 0 18px 50px rgba(70, 103, 35, 0.14);
    --vipad-transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

.vipad-social-links a {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(106, 151, 60, 0.22);
    border-radius: 50%;
    color: #6a973c;
    background: #ffffff;
    text-decoration: none;
    transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

    .vipad-social-links a svg {
        width: 15px;
        height: 15px;
    }

/* LinkedIn */
.vipad-social-links .vipad-social-fill {
    fill: currentColor;
    stroke: none;
}

/* Instagram */
.vipad-social-links .vipad-social-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vipad-social-links .vipad-instagram-dot {
    fill: currentColor;
    stroke: none;
}

/* YouTube */
.vipad-social-links .vipad-youtube-icon {
    stroke: none;
}

.vipad-social-links .vipad-youtube-body {
    fill: currentColor;
}

.vipad-social-links .vipad-youtube-play {
    fill: #ffffff;
}

/* Hover */
.vipad-social-links a:hover {
    color: #ffffff;
    border-color: #6a973c;
    background: #6a973c;
    box-shadow: 0 7px 16px rgba(106, 151, 60, 0.25);
    transform: translateY(-2px);
}
/* =====================================================
       GENEL
    ===================================================== */

.vipad-header,
.vipad-header * {
    box-sizing: border-box;
}

.vipad-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--vipad-white);
    font-family: "Plus Jakarta Sans", sans-serif;
}

    .vipad-header a {
        text-decoration: none;
    }

    .vipad-header button,
    .vipad-header input {
        font-family: inherit;
    }

    .vipad-header svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vipad-header-container {
    width: min(1480px, calc(100% - 60px));
    margin-right: auto;
    margin-left: auto;
}

.vipad-language {
    position: relative;
    flex-shrink: 0;
}

.vipad-language-button {
    min-width: 145px;
    height: 44px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #dfe4e8;
    border-radius: 9px;
    color: #102b3f;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .vipad-language-button:hover {
        border-color: #aebbc4;
        background-color: #fbfcfc;
        box-shadow: 0 5px 18px rgba(16, 43, 63, 0.07);
    }

.vipad-language.open .vipad-language-button {
    border-color: #5f9f2f;
    box-shadow: 0 0 0 3px rgba(95, 159, 47, 0.11);
}

.vipad-language-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(95, 159, 47, 0.1);
    color: #5f9f2f;
}

    .vipad-language-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vipad-language-content {
    min-width: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.vipad-language-label {
    margin-bottom: 4px;
    color: #8a969e;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.vipad-language-code {
    color: #102b3f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.vipad-language-arrow {
    width: 22px;
    height: 22px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e5e9ec;
    padding-left: 10px;
    color: #64747f;
}

    .vipad-language-arrow svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.25s ease;
    }

.vipad-language.open .vipad-language-arrow svg {
    transform: rotate(180deg);
}

.vipad-language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 9999;
    width: 210px;
    padding: 7px;
    background: #ffffff;
    border: 1px solid #e1e6e9;
    border-radius: 11px;
    box-shadow: 0 16px 40px rgba(16, 43, 63, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.vipad-language.open .vipad-language-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.vipad-language-dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 22px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-top: 1px solid #e1e6e9;
    border-left: 1px solid #e1e6e9;
    transform: rotate(45deg);
}

.vipad-language-dropdown a {
    position: relative;
    min-height: 43px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 8px;
    color: #344955;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .vipad-language-dropdown a:hover {
        background: #f4f7f2;
        color: #5f9f2f;
    }

    .vipad-language-dropdown a.active {
        background: rgba(95, 159, 47, 0.1);
        color: #4d8725;
    }

.vipad-language-short {
    width: 34px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #dde4e7;
    border-radius: 6px;
    background: #f7f9fa;
    color: #334b5b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.vipad-language-dropdown a.active .vipad-language-short {
    background: #5f9f2f;
    border-color: #5f9f2f;
    color: #ffffff;
}

.vipad-language-name {
    font-size: 13px;
    font-weight: 600;
}

.vipad-language-check {
    width: 17px;
    height: 17px;
    margin-left: auto;
    fill: none;
    stroke: #5f9f2f;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}

.vipad-language-dropdown a.active .vipad-language-check {
    opacity: 1;
}

@media (max-width: 767px) {
    .vipad-language-button {
        min-width: auto;
        width: 44px;
        padding: 0;
        justify-content: center;
    }

    .vipad-language-content,
    .vipad-language-arrow {
        display: none;
    }

    .vipad-language-dropdown {
        right: 0;
    }
}

/* =====================================================
       TOPBAR
    ===================================================== */

.vipad-topbar {
    position: relative;
    z-index: 20;
    min-height: 42px;
    border-bottom: 1px solid var(--vipad-border);
    background: linear-gradient( 90deg, #fbfcfc 0%, #ffffff 48%, #fbfcfc 100% );
}

.vipad-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.vipad-contact-group {
    display: flex;
    align-items: center;
    gap: 19px;
}

.vipad-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #526164;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color var(--vipad-transition), transform var(--vipad-transition);
}

.vipad-contact-icon {
    display: inline-flex;
    color: var(--vipad-gold);
}

    .vipad-contact-icon svg {
        width: 17px;
        height: 17px;
    }

.vipad-contact-link:hover {
    color: var(--vipad-primary);
    transform: translateY(-1px);
}

.vipad-contact-divider {
    width: 1px;
    height: 18px;
    background: #dce2e2;
}

.vipad-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vipad-topbar-text {
    color: #829093;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vipad-social-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .vipad-social-links a {
        width: 27px;
        height: 27px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dfe5e5;
        border-radius: 50%;
        color: var(--vipad-primary);
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        transition: color var(--vipad-transition), border-color var(--vipad-transition), background-color var(--vipad-transition), transform var(--vipad-transition);
    }

        .vipad-social-links a:hover {
            color: var(--vipad-white);
            border-color: var(--vipad-primary);
            background: var(--vipad-primary);
            transform: translateY(-2px);
        }


/* =====================================================
       ANA HEADER
    ===================================================== */

.vipad-main-header {
    position: relative;
    z-index: 15;
    border-bottom: 1px solid rgba(6, 50, 53, 0.06);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(70, 103, 35, 0.06);
}

.vipad-main-header-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.vipad-logo-area {
    flex: 0 0 auto;
}

.vipad-logo {
    display: flex;
    align-items: center;
}

    .vipad-logo img {
        display: block;
        width: auto;
        max-width: 205px;
        max-height: 62px;
        object-fit: contain;
    }


/* =====================================================
       DESKTOP NAV
    ===================================================== */

.vipad-desktop-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.vipad-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 1.35vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.vipad-nav-item {
    position: relative;
}

.vipad-nav-link {
    position: relative;
    min-height: 90px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--vipad-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color var(--vipad-transition);
}

    .vipad-nav-link::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 23px;
        left: 0;
        height: 2px;
        border-radius: 10px;
        background: linear-gradient( 90deg, var(--vipad-gold), var(--vipad-gold-light) );
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--vipad-transition);
    }

    .vipad-nav-link svg {
        width: 13px;
        height: 13px;
        transition: transform var(--vipad-transition);
    }

    .vipad-nav-link:hover,
    .vipad-dropdown:hover > .vipad-nav-link {
        color: var(--vipad-primary);
    }

        .vipad-nav-link:hover::before,
        .vipad-dropdown:hover > .vipad-nav-link::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .vipad-dropdown:hover > .vipad-nav-link svg {
            transform: rotate(180deg);
        }


/* =====================================================
       DROPDOWN
    ===================================================== */

.vipad-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    z-index: 50;
    width: 290px;
    padding: 13px;
    border: 1px solid rgba(106, 151, 60, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--vipad-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 14px);
    transition: opacity var(--vipad-transition), visibility var(--vipad-transition), transform var(--vipad-transition);
}

    .vipad-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        width: 12px;
        height: 12px;
        border-top: 1px solid rgba(106, 151, 60, 0.09);
        border-left: 1px solid rgba(106, 151, 60, 0.09);
        background: var(--vipad-white);
        transform: translateX(-50%) rotate(45deg);
    }

.vipad-dropdown:hover .vipad-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.vipad-dropdown-header {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    padding: 13px 14px;
    border-radius: 8px;
    background: linear-gradient( 135deg, var(--vipad-primary), var(--vipad-primary-light) );
}

    .vipad-dropdown-header span {
        display: block;
        margin-bottom: 4px;
        color: var(--vipad-white);
        font-size: 13px;
        font-weight: 700;
    }

    .vipad-dropdown-header small {
        display: block;
        color: rgba(255, 255, 255, 0.66);
        font-size: 10px;
        font-weight: 500;
    }

.vipad-dropdown-menu ul {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vipad-dropdown-menu li + li {
    border-top: 1px solid #edf0f0;
}

.vipad-dropdown-menu li a {
    min-height: 45px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    color: #465456;
    font-size: 12px;
    font-weight: 600;
    transition: color var(--vipad-transition), padding-left var(--vipad-transition), background-color var(--vipad-transition);
}

    .vipad-dropdown-menu li a svg {
        width: 14px;
        height: 14px;
        color: var(--vipad-gold);
        opacity: 0;
        transform: translateX(-5px);
        transition: opacity var(--vipad-transition), transform var(--vipad-transition);
    }

    .vipad-dropdown-menu li a:hover {
        padding-left: 17px;
        color: var(--vipad-primary);
        background: var(--vipad-soft);
    }

        .vipad-dropdown-menu li a:hover svg {
            opacity: 1;
            transform: translateX(0);
        }


/* =====================================================
       HEADER AKSİYONLARI
    ===================================================== */

.vipad-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Arama */

.vipad-search-box {
    width: clamp(165px, 12vw, 215px);
    height: 44px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--vipad-border);
    border-radius: 8px;
    background: var(--vipad-soft);
    transition: border-color var(--vipad-transition), background-color var(--vipad-transition), box-shadow var(--vipad-transition);
}

    .vipad-search-box:focus-within {
        border-color: rgba(106, 151, 60, 0.45);
        background: var(--vipad-white);
        box-shadow: 0 0 0 4px rgba(106, 151, 60, 0.08);
    }

    .vipad-search-box input {
        width: 100%;
        height: 100%;
        min-width: 0;
        padding: 0 4px 0 14px;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--vipad-text);
        font-size: 11px;
        font-weight: 500;
    }

        .vipad-search-box input::placeholder {
            color: #9ba5a7;
        }

    .vipad-search-box button {
        width: 42px;
        height: 100%;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        border: 0;
        background: transparent;
        color: var(--vipad-primary);
        cursor: pointer;
        transition: color var(--vipad-transition);
    }

        .vipad-search-box button:hover {
            color: var(--vipad-gold);
        }

        .vipad-search-box button svg {
            width: 19px;
            height: 19px;
        }


/* B2B */

.vipad-b2b-button {
    position: relative;
    min-width: 84px;
    height: 44px;
    padding: 0 16px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--vipad-primary);
    border-radius: 8px;
    background: linear-gradient( 135deg, var(--vipad-primary), var(--vipad-primary-light) );
    box-shadow: 0 9px 22px rgba(7, 63, 67, 0.2);
    color: var(--vipad-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform var(--vipad-transition), box-shadow var(--vipad-transition);
}

    .vipad-b2b-button::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 45%;
        height: 200%;
        background: rgba(255, 255, 255, 0.16);
        transform: rotate(20deg);
        transition: left 450ms ease;
    }

    .vipad-b2b-button:hover::before {
        left: 125%;
    }

    .vipad-b2b-button:hover {
        color: var(--vipad-white);
        box-shadow: 0 13px 28px rgba(106, 151, 60, 0.30);
        transform: translateY(-2px);
    }

.vipad-b2b-icon {
    display: inline-flex;
}

    .vipad-b2b-icon svg {
        width: 17px;
        height: 17px;
    }


/* Dil */

.vipad-language {
    position: relative;
}

.vipad-language-button {
    min-width: 59px;
    height: 44px;
    padding: 0 7px 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-left: 1px solid var(--vipad-border);
    background: transparent;
    color: var(--vipad-text);
    cursor: pointer;
}

.vipad-language-code {
    font-size: 12px;
    font-weight: 800;
}

.vipad-language-button svg {
    width: 13px;
    height: 13px;
    transition: transform var(--vipad-transition);
}

.vipad-language.is-open .vipad-language-button svg {
    transform: rotate(180deg);
}

.vipad-language-dropdown {
    position: absolute;
    top: calc(100% + 13px);
    right: 0;
    z-index: 60;
    width: 184px;
    padding: 8px;
    border: 1px solid var(--vipad-border);
    border-radius: 10px;
    background: var(--vipad-white);
    box-shadow: var(--vipad-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--vipad-transition), visibility var(--vipad-transition), transform var(--vipad-transition);
}

.vipad-language.is-open .vipad-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vipad-language-dropdown a {
    min-height: 42px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 6px;
    color: #566366;
    font-size: 11px;
    font-weight: 600;
    transition: color var(--vipad-transition), background-color var(--vipad-transition);
}

    .vipad-language-dropdown a:hover,
    .vipad-language-dropdown a.active {
        color: var(--vipad-primary);
        background: var(--vipad-soft);
    }

.vipad-language-short {
    width: 30px;
    color: var(--vipad-gold);
    font-size: 10px;
    font-weight: 800;
}


/* =====================================================
       MOBİL MENÜ
    ===================================================== */

.vipad-mobile-menu-button,
.vipad-mobile-menu,
.vipad-mobile-overlay {
    display: none;
}


/* =====================================================
       RESPONSIVE
    ===================================================== */

@media (max-width: 1250px) {
    .vipad-header-container {
        width: min(1440px, calc(100% - 40px));
    }

    .vipad-main-header-inner {
        min-height: 80px;
    }

    .vipad-logo img {
        max-width: 175px;
        max-height: 55px;
    }

    .vipad-desktop-nav {
        display: none;
    }

    .vipad-search-box {
        width: 200px;
    }

    .vipad-header-actions {
        margin-left: auto;
    }

    .vipad-mobile-menu-button {
        width: 44px;
        height: 44px;
        padding: 0 11px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid var(--vipad-border);
        border-radius: 8px;
        background: var(--vipad-white);
        cursor: pointer;
        transition: border-color var(--vipad-transition), background-color var(--vipad-transition);
    }

        .vipad-mobile-menu-button span {
            width: 19px;
            height: 2px;
            border-radius: 10px;
            background: var(--vipad-primary);
            transition: background-color var(--vipad-transition);
        }

        .vipad-mobile-menu-button:hover {
            border-color: var(--vipad-primary);
            background: var(--vipad-primary);
        }

            .vipad-mobile-menu-button:hover span {
                background: var(--vipad-white);
            }

    .vipad-mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2002;
        width: min(420px, 92vw);
        height: 100vh;
        height: 100dvh;
        display: block;
        overflow-y: auto;
        background: var(--vipad-white);
        box-shadow: -20px 0 60px rgba(70, 103, 35, 0.24);
        transform: translateX(105%);
        transition: transform 320ms cubic-bezier(.4, 0, .2, 1);
    }

        .vipad-mobile-menu.is-open {
            transform: translateX(0);
        }

    .vipad-mobile-menu-header {
        min-height: 80px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--vipad-border);
    }

    .vipad-mobile-logo img {
        display: block;
        width: auto;
        max-width: 160px;
        max-height: 53px;
    }

    .vipad-mobile-close {
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--vipad-border);
        border-radius: 8px;
        background: var(--vipad-white);
        color: var(--vipad-text);
        cursor: pointer;
        transition: color var(--vipad-transition), border-color var(--vipad-transition), background-color var(--vipad-transition);
    }

        .vipad-mobile-close:hover {
            color: var(--vipad-white);
            border-color: var(--vipad-primary);
            background: var(--vipad-primary);
        }

    .vipad-mobile-menu-content {
        padding: 24px;
    }

    .vipad-mobile-search {
        height: 48px;
        display: flex;
        align-items: center;
        overflow: hidden;
        border: 1px solid var(--vipad-border);
        border-radius: 8px;
        background: var(--vipad-soft);
    }

        .vipad-mobile-search input {
            width: 100%;
            height: 100%;
            min-width: 0;
            padding: 0 5px 0 15px;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--vipad-text);
            font-size: 12px;
        }

        .vipad-mobile-search button {
            width: 47px;
            height: 100%;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border: 0;
            background: transparent;
            color: var(--vipad-primary);
        }

    .vipad-mobile-nav-list {
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid var(--vipad-border);
    }

        .vipad-mobile-nav-list > li {
            border-bottom: 1px solid var(--vipad-border);
        }

    .vipad-mobile-link-row {
        display: flex;
        align-items: center;
    }

        .vipad-mobile-link-row > a {
            min-height: 55px;
            display: flex;
            align-items: center;
            flex: 1;
            color: var(--vipad-text);
            font-size: 12px;
            font-weight: 700;
        }

    .vipad-mobile-submenu-toggle {
        width: 48px;
        height: 55px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--vipad-primary);
        cursor: pointer;
    }

        .vipad-mobile-submenu-toggle svg {
            width: 15px;
            height: 15px;
            transition: transform var(--vipad-transition);
        }

    .vipad-mobile-nav-list .has-submenu.is-open
    .vipad-mobile-submenu-toggle svg {
        transform: rotate(180deg);
    }

    .vipad-mobile-submenu {
        max-height: 0;
        margin: 0;
        padding: 0 0 0 14px;
        overflow: hidden;
        list-style: none;
        transition: max-height 350ms ease, padding-bottom 350ms ease;
    }

    .vipad-mobile-nav-list .has-submenu.is-open
    .vipad-mobile-submenu {
        max-height: 800px;
        padding-bottom: 13px;
    }

    .vipad-mobile-submenu li a {
        min-height: 43px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        border-left: 2px solid #dfe5e5;
        color: var(--vipad-muted);
        font-size: 11px;
        font-weight: 600;
    }

        .vipad-mobile-submenu li a:hover {
            color: var(--vipad-primary);
            border-left-color: var(--vipad-gold);
        }

    .vipad-mobile-b2b-button {
        min-height: 50px;
        margin-top: 22px;
        padding: 0 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 8px;
        background: linear-gradient( 135deg, var(--vipad-primary), var(--vipad-primary-light) );
        color: var(--vipad-white);
        font-size: 12px;
        font-weight: 800;
    }

        .vipad-mobile-b2b-button:hover {
            color: var(--vipad-white);
        }

        .vipad-mobile-b2b-button svg {
            width: 17px;
            height: 17px;
        }

    .vipad-mobile-contact {
        margin-top: 20px;
        padding: 17px;
        display: grid;
        gap: 10px;
        border-radius: 8px;
        background: var(--vipad-soft);
    }

        .vipad-mobile-contact a {
            color: var(--vipad-muted);
            font-family: "Roboto", sans-serif;
            font-size: 12px;
            font-weight: 500;
        }

            .vipad-mobile-contact a:hover {
                color: var(--vipad-primary);
            }

    .vipad-mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 2001;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        display: block;
        background: rgba(31, 47, 17, 0.63);
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        transition: opacity 300ms ease, visibility 300ms ease;
    }

        .vipad-mobile-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }

    body.vipad-menu-open {
        overflow: hidden;
    }
}


@media (max-width: 767px) {
    .vipad-topbar {
        display: none;
    }

    .vipad-header-container {
        width: calc(100% - 30px);
    }

    .vipad-main-header-inner {
        min-height: 72px;
        gap: 15px;
    }

    .vipad-logo img {
        max-width: 145px;
        max-height: 48px;
    }

    .vipad-search-box {
        width: 44px;
        border-radius: 8px;
        background: var(--vipad-white);
    }

        .vipad-search-box input {
            display: none;
        }

        .vipad-search-box button {
            width: 44px;
        }

    .vipad-b2b-button {
        min-width: 70px;
        height: 42px;
        padding: 0 12px;
    }

    .vipad-b2b-icon {
        display: none;
    }

    .vipad-language-button {
        min-width: 49px;
        height: 42px;
        padding: 0 5px;
        border: 1px solid var(--vipad-border);
        border-radius: 8px;
    }

    .vipad-mobile-menu-button {
        width: 42px;
        height: 42px;
    }
}


@media (max-width: 480px) {
    .vipad-header-container {
        width: calc(100% - 22px);
    }

    .vipad-logo img {
        max-width: 126px;
    }

    .vipad-header-actions {
        gap: 6px;
    }

    .vipad-search-box {
        display: none;
    }

    .vipad-b2b-button {
        min-width: 57px;
        padding: 0 9px;
        font-size: 10px;
    }

    .vipad-language-button {
        min-width: 44px;
    }

    .vipad-mobile-menu-button {
        width: 40px;
        padding: 0 9px;
    }

    .vipad-mobile-menu-content,
    .vipad-mobile-menu-header {
        padding-right: 19px;
        padding-left: 19px;
    }
}


@media (max-width: 360px) {
    .vipad-logo img {
        max-width: 110px;
    }

    .vipad-language {
        display: none;
    }
}



.vipad-header.vipad-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: vipadHeaderSlideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@keyframes vipadHeaderSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}




























 
/* =====================================================
       SEARCH PAGE
    ===================================================== */
.vipad-search-page {
    min-height: 600px;
}

.vipad-search-form-area {
    max-width: 900px;
    margin: 0 auto 45px;
}

.vipad-page-search-form {
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e1e7dc;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(75, 104, 43, 0.09);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

    .vipad-page-search-form:focus-within {
        border-color: rgba(106, 151, 60, 0.6);
        box-shadow: 0 18px 48px rgba(75, 104, 43, 0.13), 0 0 0 4px rgba(106, 151, 60, 0.08);
    }

    .vipad-page-search-form input {
        width: 100%;
        height: 100%;
        min-width: 0;
        padding: 0 22px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #182015;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-weight: 500;
    }

        .vipad-page-search-form input::placeholder {
            color: #9aa293;
        }

    .vipad-page-search-form button {
        height: 50px;
        margin-right: 8px;
        padding: 0 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        flex: 0 0 auto;
        border: 0;
        border-radius: 9px;
        background: linear-gradient(135deg, #6a973c, #7fac4e);
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 12px;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 9px 22px rgba(106, 151, 60, 0.22);
        transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
    }

        .vipad-page-search-form button:hover {
            color: #ffffff;
            box-shadow: 0 12px 28px rgba(106, 151, 60, 0.3);
            transform: translateY(-1px);
        }

        .vipad-page-search-form button svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


/* Arama bilgisi */

.vipad-search-information {
    margin-bottom: 42px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e2e8dd;
    border-left: 4px solid #6a973c;
    border-radius: 9px;
    background: #f8faf6;
}

    .vipad-search-information span {
        display: block;
        margin-bottom: 5px;
        color: #6a973c;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .vipad-search-information h2 {
        margin: 0;
        color: #182015;
        font-size: 22px;
        font-weight: 700;
    }

    .vipad-search-information > strong {
        min-width: max-content;
        padding: 9px 14px;
        border-radius: 20px;
        background: #ffffff;
        color: #6a973c;
        font-size: 11px;
        font-weight: 800;
        box-shadow: 0 5px 15px rgba(75, 104, 43, 0.08);
    }


/* Sonuç grupları */

.vipad-search-result-group + .vipad-search-result-group {
    margin-top: 65px;
}

.vipad-search-result-title {
    margin-bottom: 25px;
    padding-bottom: 17px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e1e7dc;
}

    .vipad-search-result-title span {
        display: block;
        margin-bottom: 7px;
        color: #6a973c;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
    }

    .vipad-search-result-title h2 {
        margin: 0;
        color: #182015;
        font-size: 28px;
        font-weight: 700;
    }

    .vipad-search-result-title > strong {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #6a973c;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
    }


/* Kart etiketi */

.vipad-search-card-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 5px;
    background: rgba(106, 151, 60, 0.94);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.vipad-search-page .product-img {
    position: relative;
}


/* Boş sonuç */

.vipad-search-empty {
    max-width: 760px;
    margin: 10px auto 0;
    padding: 70px 30px;
    border: 1px solid #e1e7dc;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(75, 104, 43, 0.07);
    text-align: center;
}

.vipad-search-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(106, 151, 60, 0.1);
    color: #6a973c;
}

    .vipad-search-empty-icon svg {
        width: 30px;
        height: 30px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vipad-search-empty h3 {
    margin: 0 0 12px;
    color: #182015;
    font-size: 25px;
    font-weight: 700;
}

.vipad-search-empty p {
    max-width: 540px;
    margin: 0 auto;
    color: #717a6c;
    font-size: 14px;
    line-height: 1.8;
}


/* Responsive */

@media (max-width: 767px) {
    .vipad-search-form-area {
        margin-bottom: 32px;
    }

    .vipad-page-search-form {
        height: 58px;
    }

        .vipad-page-search-form input {
            padding: 0 16px;
            font-size: 12px;
        }

        .vipad-page-search-form button {
            height: 44px;
            padding: 0 18px;
        }

    .vipad-search-information {
        align-items: flex-start;
        flex-direction: column;
    }

        .vipad-search-information h2 {
            font-size: 19px;
        }

    .vipad-search-result-title h2 {
        font-size: 23px;
    }

    .vipad-search-empty {
        padding: 50px 22px;
    }
}

@media (max-width: 480px) {
    .vipad-page-search-form button {
        width: 48px;
        padding: 0;
    }

        .vipad-page-search-form button span {
            display: none;
        }

    .vipad-search-information > strong {
        min-width: 0;
    }

    .vipad-search-result-title {
        align-items: center;
    }
}
 