/* ==========================================================
   WOOCOMMERCE
========================================================== */
/* ----------------------------------------------------------
   COMMON PAGE SPACING
---------------------------------------------------------- */
.vir-woocommerce-page .vir-container,.vir-woocommerce-archive .vir-container {
    padding-top: 150px;padding-bottom: 50px;
}
/* ==========================================================
   PRODUCT CATEGORY GRID
   Mağaza ana sayfasındaki ana kategoriler
========================================================== */
.vir-product-category-grid {
    display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap: 32px;width: 100%;
}
.vir-product-category-card {
    display: flex;flex-direction: column;height: 100%;min-width: 0;overflow: hidden;background: #fff;border: 1px solid rgba(0, 0, 0, .08);border-radius: 5px;box-shadow: 0 3px 18px rgba(0, 0, 0, .045);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.vir-product-category-card:hover {
    transform: translateY(-4px);border-color: rgba(0, 0, 0, .15);box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
}
.vir-product-category-image {
    display: block;width: 100%;aspect-ratio: 4 / 3;overflow: hidden;
}
.vir-product-category-image img {
    display: block;width: 100%;height: 100%;object-fit: cover;margin: 0;transition: transform .5s ease;
}
.vir-product-category-card:hover.vir-product-category-image img {
    transform: scale(1.04);
}
.vir-product-category-body {
    display: flex;flex-direction: column;flex: 1;padding: 24px 25px 25px;text-align: center;
}
.vir-product-category-title {
    display: flex;align-items: center;justify-content: center;min-height: 58px;margin: 0;font-size: 21px;line-height: 1.4;
}
.vir-product-category-title a {
    text-decoration: none;
}
.vir-product-category-button {
    display: inline-flex;align-items: center;justify-content: center;align-self: center;margin-top: auto;padding: 10px 25px;text-decoration: none;border: 1px solid rgba(0, 0, 0, .12);border-radius: 3px;transition:background-color .25s ease,color .25s ease,border-color .25s ease;
}
/* ==========================================================
   PRODUCT GRID
   3 ÜRÜN / SATIR
========================================================== */
.vir-products-grid {
    width: 100%;
}

.vir-products-grid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}
/* ----------------------------------------------------------
   PRODUCT CARD
---------------------------------------------------------- */
.vir-products-grid .vir-product-card,.vir-woocommerce-archive .vir-product-card {
    display: flex; flex-direction: column; min-width: 0; height: 100%; overflow: hidden; background: #fff; border: 1px solid rgba(0, 0, 0, .08);border-radius: 5px;box-shadow: 0 3px 18px rgba(0, 0, 0, .045);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.vir-products-grid .vir-product-card:hover,.vir-woocommerce-archive .vir-product-card:hover {
    transform: translateY(-4px);    border-color: rgba(0, 0, 0, .15);    box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
}
/* ----------------------------------------------------------
   PRODUCT IMAGE
---------------------------------------------------------- */
.vir-product-card-image {
    display: block;width: 100%;aspect-ratio: 4 / 3;overflow: hidden;background: #f7f7f7;
}
.vir-product-card-image img {
    display: block;width: 100%;height: 100%;object-fit: cover;margin: 0;transition: transform .5s ease;
}
.vir-product-card:hover .vir-product-card-image img {
    transform: scale(1.04);
}
/* ----------------------------------------------------------
   PRODUCT BODY
---------------------------------------------------------- */
.vir-product-card-body {
    display: flex;flex-direction: column;flex: 1;min-height: 190px;padding: 24px 25px 25px;text-align: center;
}
.vir-product-card-content {
    display: flex;flex-direction: column;flex: 1;justify-content: flex-start;
}
/* ----------------------------------------------------------
   PRODUCT TITLE
---------------------------------------------------------- */
.vir-product-card-title {
    display: flex;align-items: center;justify-content: center;min-height: 62px;margin: 0;font-size: 20px;line-height: 1.4;text-align: center;
}
.vir-product-card-title a {
    text-decoration: none;
}
/* ----------------------------------------------------------
   PRODUCT BUTTON
---------------------------------------------------------- */
.vir-product-card-button {
    display: inline-flex;align-items: center;justify-content: center;align-self: center;margin-top: auto;min-width: 110px;padding: 10px 24px;text-decoration: none;border: 1px solid rgba(0, 0, 0, .12);border-radius: 3px;transition:background-color .25s ease,color .25s ease,border-color .25s ease;
}
.vir-product-card-button:hover {
    border-color: rgba(0, 0, 0, .25);
}
/* ----------------------------------------------------------
   NO IMAGE
---------------------------------------------------------- */
.vir-product-card-placeholder,.vir-product-category-placeholder {
    display: flex;align-items: center;justify-content: center;width: 100%;height: 100%;min-height: 100px;font-size: 14px;
}
/* ==========================================================
   SHOWCASE
   2 ÜRÜN / SATIR
========================================================== */
.vir-products-showcase {
    width: 100%;
}
.vir-products-showcase-list {
    display: grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap: 32px; width: 100%;
}
/* ----------------------------------------------------------
   SHOWCASE CARD
---------------------------------------------------------- */
.vir-product-showcase {
    display: flex;flex-direction: column;min-width: 0;height: 100%;overflow: hidden;background: #fff;border: 1px solid rgba(0, 0, 0, .08);border-radius: 5px;box-shadow: 0 3px 18px rgba(0, 0, 0, .045);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.vir-product-showcase:hover {
    transform: translateY(-4px);border-color: rgba(0, 0, 0, .15);box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
}
/* ----------------------------------------------------------
   SHOWCASE IMAGE
---------------------------------------------------------- */
.vir-product-showcase-image {
    width: 100%;aspect-ratio: 4 / 3;overflow: hidden;background: #f7f7f7;
}
.vir-product-showcase-image a {
    display: block;width: 100%;height: 100%;
}
.vir-product-showcase-image img {
    display: block;width: 100%;height: 100%;object-fit: cover;margin: 0;transition: transform .5s ease;
}
.vir-product-showcase:hover .vir-product-showcase-image img {
    transform: scale(1.04);
}
/* ----------------------------------------------------------
   SHOWCASE BODY
---------------------------------------------------------- */
.vir-product-showcase-body {
    display: flex;flex-direction: column;flex: 1;min-height: 210px;padding: 25px;text-align: center;
}
/* ----------------------------------------------------------
   SHOWCASE TITLE
---------------------------------------------------------- */
.vir-product-showcase-title {
    display: flex;align-items: center;justify-content: center;min-height: 62px;margin: 0;font-size: 22px;line-height: 1.4;text-align: center;
}
.vir-product-showcase-title a {
    text-decoration: none;
}
/* ----------------------------------------------------------
   SHOWCASE DESCRIPTION
---------------------------------------------------------- */
.vir-product-showcase-description {
    margin-top: 10px;line-height: 1.6;
}
/* ----------------------------------------------------------
   SHOWCASE BUTTON
---------------------------------------------------------- */
.vir-product-showcase-button {
    display: inline-flex;align-items: center;justify-content: center;align-self: center;margin-top: auto;min-width: 110px;padding: 10px 24px;text-decoration: none;border: 1px solid rgba(0, 0, 0, .12);border-radius: 3px;transition:background-color .25s ease,color .25s ease,border-color .25s ease;
}
/* ==========================================================
   WOOCOMMERCE PAGINATION
========================================================== */
.vir-woocommerce-archive .woocommerce-pagination,.vir-products-grid + .woocommerce-pagination {
    margin-top: 40px;padding-top: 10px;padding-bottom: 10px;text-align: center;
}
/* ==========================================================
   TABLET
========================================================== */
@media (max-width: 992px) {
    .vir-product-category-grid,.vir-products-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vir-products-showcase-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 768px) {
    .vir-product-category-grid,
    .vir-products-grid-list,
    .vir-products-showcase-list {
        grid-template-columns: 1fr;
    }

    .vir-woocommerce-page .vir-container,
    .vir-woocommerce-archive .vir-container {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .vir-product-card-body,
    .vir-product-showcase-body {
        min-height: 180px;
    }
}
/* ==========================================================
   SINGLE PRODUCT
   Ürün detay sayfası
========================================================== */

.vir-single-product .vir-container {
    padding-top: 150px;
    padding-bottom: 50px;
}


/* ==========================================================
   PRODUCT DETAIL LAYOUT
========================================================== */

.vir-product-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 60px;

    width: 100%;
}


/* ==========================================================
   PRODUCT GALLERY
   Sol taraf
========================================================== */

.vir-product-detail-gallery {
    display: flex;
    flex-direction: column;

    gap: 30px;

    min-width: 0;
}

.vir-product-detail-image {
    display: block;

    width: 100%;

    margin: 0;

    overflow: hidden;

    background: #f7f7f7;

    border: 1px solid rgba(0, 0, 0, .08);

    border-radius: 5px;
}

.vir-product-detail-image img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
}


/* ==========================================================
   PRODUCT CONTENT
   Sağ taraf
========================================================== */

.vir-product-detail-content {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


/* ==========================================================
   PRODUCT TITLE
========================================================== */

.vir-product-detail-header {
    margin: 0 0 30px;
}

.vir-product-detail-title {
    margin: 0;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 600;

    text-align: left;
}


/* ==========================================================
   PRODUCT DESCRIPTION
========================================================== */

.vir-product-detail-description {
    font-size: 17px;

    line-height: 1.8;
}

.vir-product-detail-description p {
    margin-top: 0;

    margin-bottom: 20px;
}

.vir-product-detail-description img {
    max-width: 100%;

    height: auto;
}


/* ==========================================================
   PRODUCT META
========================================================== */

.vir-product-detail-meta {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(0, 0, 0, .08);
}

.vir-product-detail-meta-title,
.vir-product-detail-video-title {
    margin: 0 0 15px;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;
}


/* ==========================================================
   PRODUCT TAGS
========================================================== */

.vir-product-detail-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.vir-product-detail-tag {
    display: inline-flex;

    align-items: center;

    padding: 7px 12px;

    text-decoration: none;

    border: 1px solid rgba(0, 0, 0, .12);

    border-radius: 3px;
}


/* ==========================================================
   PRODUCT KEYWORDS
========================================================== */

.vir-product-detail-keywords {
    line-height: 1.7;
}


/* ==========================================================
   PRODUCT VIDEO
========================================================== */

.vir-product-detail-video {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.vir-product-detail-video-title {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.4;
    text-align: left;
}

.vir-product-detail-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
    background: #f5f5f5;
}

.vir-product-detail-video-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 992px) {

    .vir-product-detail-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .vir-product-detail-content {
        order: 2;
    }

    .vir-product-detail-gallery {
        order: 1;
    }

    .vir-product-detail-title {
        font-size: 32px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .vir-single-product .vir-container {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .vir-product-detail-layout {
        gap: 30px;
    }

    .vir-product-detail-gallery {
        gap: 20px;
    }

    .vir-product-detail-title {
        font-size: 28px;
    }

    .vir-product-detail-description {
        font-size: 16px;

        line-height: 1.7;
    }
}