/*
Theme Name: Çamlıbey Baklava Teması
Theme URI: https://camlibey.com.tr
Author: [Buraya Kendi Adınızı veya Şirket Adınızı Yazabilirsiniz]
Author URI: https://camlibey.com.tr
Description: Çamlıbey Baklava için özel olarak geliştirilmiş, modern ve kullanıcı dostu WooCommerce teması.
Version: 1.0.2
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: camlibey
Tags: e-commerce, custom-background, custom-logo, responsive-layout, one-column

Bu tema Çamlıbey Baklava projesi için özel olarak geliştirilmiştir.
*/

/*--------------------------------------------------------------
>>> 1.0 - Değişkenler ve Temel Ayarlar
--------------------------------------------------------------*/
:root {
    --primary-color: #b98b59; /* Altın/Kahve tonu */
    --secondary-color: #2c542f; /* Marka yeşili (isteğe bağlı) */
    --text-color: #333333;
    --background-color: #fdfaf5; /* Çok hafif krem rengi */
    --header-footer-bg: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

/*--------------------------------------------------------------
>>> 2.0 - Header (Üst Kısım)
--------------------------------------------------------------*/
.site-header {
    background-color: var(--header-footer-bg);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Container'ı header içine alıyoruz */
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

/* Logo Alanı */
.site-branding .custom-logo {
    max-height: 60px; /* Logonuzun yüksekliğini buradan ayarlayabilirsiniz */
    width: auto;
}
.site-branding .site-title a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

/* Menü Alanı */
.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-left: 25px;
}

.main-navigation a {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

/* Mobil menü ikonunu masaüstünde gizle */
.mobile-menu-toggle {
    display: none;
}

/*--------------------------------------------------------------
>>> 3.0 - İçerik Alanı
--------------------------------------------------------------*/
.site-content {
    padding: 40px 0;
}

/*--------------------------------------------------------------
>>> 4.0 - Footer (Alt Kısım)
--------------------------------------------------------------*/
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.site-footer .site-info {
    font-size: 14px;
}

/*--------------------------------------------------------------
>>> 5.0 - Anasayfa Özel Stilleri
--------------------------------------------------------------*/

/* 5.1 - Hero Section */
.hero-section {
    position: relative;
    height: 70vh; /* Ekran yüksekliğinin %70'i kadar */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Resmin üzerine hafif siyah bir katman */
}

.hero-content {
    position: relative; /* Overlay'in üzerinde kalması için */
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/*--------------------------------------------------------------
>>> 6.0 - WooCommerce Sayfaları
--------------------------------------------------------------*/

/*--------------------------------------------------------------
>>> 6.1 - Genel Ürün Grid Yapısı (Product Grid) - YENİ YAPI
--------------------------------------------------------------*/
.woocommerce ul.products,
.product-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 30px;
    /* Varsayılan olarak 4 sütun */
    grid-template-columns: repeat(4, 1fr);
}

/* EĞER KENAR ÇUBUĞU VARSA, grid'i 3 sütuna düşür */
.shop-container.has-sidebar .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
}

/* Tek bir ürün kartının stili */
.woocommerce ul.products li.product,
.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 0; /* WooCommerce'in eklediği margin'i sıfırla */
    width: 100% !important; /* WooCommerce'in eklediği genişliği ez */
}

.woocommerce ul.products li.product:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card .product-title {
    font-size: 18px;
    margin: 15px 0;
    color: var(--text-color);
}

.woocommerce ul.products li.product .price,
.product-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    min-height: 40px;
}

.woocommerce ul.products li.product .button,
.product-card .button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    transition: background-color 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover,
.product-card .button:hover {
    background-color: var(--primary-color) !important;
}

/* Grid için Responsive Ayarlar */
@media (max-width: 1200px) {
    /* Kenar çubuğu varken tablet görünümü */
    .shop-container.has-sidebar .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* Genel tablet görünümü */
    .woocommerce ul.products,
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Genel mobil görünümü */
    .woocommerce ul.products,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Kenar çubuğu varken (alt alta geldiğinde) mobil görünümü */
    .shop-container.has-sidebar .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* En küçük mobil görünümü */
    .woocommerce ul.products,
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------------------------------------
>>> 6.2 - Tekil Ürün Sayfası (Flexbox ile Nihai Çözüm)
--------------------------------------------------------------*/

/* Breadcrumb Stilleri */
.product-breadcrumb-container { background-color: #f9f9f9; padding: 15px 0; border-bottom: 1px solid #eee; margin-bottom: 60px; }
.woocommerce-breadcrumb { margin: 0; font-size: 14px; color: #777; }
.woocommerce-breadcrumb a { color: #555; }

/* Ana Ürün Alanı - FLEXBOX YAPISI */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Sütunlar arası boşluk */
}

/* Sol Sütun (Resim Galerisi) */
.product-image-column {
    flex: 1 1 50%; /* Esne, küçül, temel genişlik 50% */
    min-width: 300px; /* Daralmada minimum genişlik */
    padding-right: 20px;
    box-sizing: border-box;
}
.single-product .woocommerce-product-gallery img {
    width: 100%; height: auto; border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.single-product .flex-control-thumbs { list-style: none; padding: 0; margin: 15px 0 0 0; display: flex; gap: 15px; }
.single-product .flex-control-thumbs li { flex: 1; }
.single-product .flex-control-thumbs img { cursor: pointer; border: 2px solid #eee; transition: border-color 0.3s ease; border-radius: 3px; }
.single-product .flex-control-thumbs img:hover { border-color: var(--primary-color); }
.single-product .flex-control-thumbs .flex-active img { border-color: var(--primary-color); box-shadow: none; }

/* Sağ Sütun (Ürün Bilgileri) */
.product-summary-column {
    flex: 1 1 45%; /* Esne, küçül, temel genişlik 45% (hafif boşluk için) */
    min-width: 300px;
}
.single-product .summary {
    background-color: #fff; padding: 40px; border: 1px solid #eee;
    border-radius: 5px; box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}
.single-product .product_title { font-size: 42px; line-height: 1.2; margin-top: 0; margin-bottom: 20px; }
.single-product p.price, .single-product span.price { font-size: 32px; font-weight: 700; color: var(--primary-color); margin-bottom: 25px; }

/* Dropdown Stilleri (Geri Getirildi) */
.single-product table.variations select {
    width: 100%; padding: 12px 15px; border: 2px solid #eee; border-radius: 5px; font-size: 16px;
    background-color: #fff; -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 15px center; cursor: pointer;
}

/* Adet ve Buton Stilleri */
.quantity-add-to-cart-wrapper { display: flex; }
.single-product .quantity .qty {
    height: 52px; width: 70px; text-align: center; padding: 10px;
    border: 2px solid #eee; border-right: none; border-radius: 5px 0 0 5px;
    font-size: 18px; font-weight: 700; box-sizing: border-box;
}
.single-product .single_add_to_cart_button {
    height: 52px !important; background-color: var(--primary-color) !important;
    color: #fff !important; padding: 15px 30px !important; font-size: 18px !important;
    font-weight: 700 !important; border-radius: 0 5px 5px 0 !important;
    flex-grow: 1; text-align: center; transition: background-color 0.3s ease !important;
}

/* Alt Sekmeli Alan */
.product-tabs-wrapper { background-color: #fff; padding: 80px 0; margin-top: 80px; border-top: 1px solid #eee; }
.woocommerce-tabs .wc-tabs {
    list-style: none; padding: 0 !important; margin: 0 0 50px 0 !important;
    display: flex; justify-content: center; border-bottom: 2px solid #eee !important;
}
.woocommerce-tabs .wc-tabs::before { border-bottom: none !important; }
.woocommerce-tabs .wc-tabs li {
    background-color: transparent !important; border: none !important;
    margin: 0 25px !important; padding: 0 0 20px 0 !important;
    position: relative; top: 2px;
}
.woocommerce-tabs .wc-tabs li a { color: #888 !important; font-weight: 700 !important; font-size: 18px !important; text-transform: uppercase; }
.woocommerce-tabs .wc-tabs li.active { border-bottom: 2px solid var(--primary-color) !important; }
.woocommerce-tabs .wc-tabs li.active a { color: var(--text-color) !important; }
.woocommerce-tabs .panel { max-width: 800px; margin: 0 auto !important; font-size: 16px; line-height: 1.7; }

/*--------------------------------------------------------------
>>> 7.0 - Özel Sayfa Şablonları
--------------------------------------------------------------*/

/* 7.1 - Genel Sayfa Başlığı */
.page .entry-header,
.single .entry-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

/* 7.2 - Hakkımızda Şablonu */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol sütun daha dar */
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
}

/* 7.3 - İletişim Şablonu (Düzeltilmiş) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 1'e 1.5 oranında iki sütun */
    gap: 50px; /* Sütunlar arası boşluk */
    margin-bottom: 60px;
}

.contact-info h3, .contact-form h3 {
    margin-top: 0;
    font-size: 24px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
}

/* İletişim Formu (Contact Form 7 gibi eklentiler için genel stiller) */
.contact-form .wpcf7-form p {
    margin-bottom: 20px;
}
.contact-form .wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.contact-form .wpcf7-submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form .wpcf7-submit:hover {
    background-color: var(--secondary-color);
}

.google-maps {
    /* Konteyner dışına taşarak tam genişlik kaplar */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 40px; /* Üstteki içerikle arasına boşluk koy */
}

.google-maps iframe {
    display: block; /* iframe altındaki istenmeyen boşluğu kaldırır */
}

/*--------------------------------------------------------------
>>> 8.0 - Responsive Tasarım (Mobil Uyumluluk)
--------------------------------------------------------------*/

/* 8.1 - Tablet Görünümü (1024px ve altı) */
@media (max-width: 1024px) {
    .container, .site-header {
        max-width: 90%;
    }

    /* Ürün gridlerini 3 sütuna düşür */
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Ürün detay sayfasını 1 sütuna düşür */
    .single-product div.product {
        grid-template-columns: 1fr;
    }

    /* Hakkımızda ve İletişim sayfalarını 1 sütuna düşür */
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
}


/* 8.2 - Mobil Görünüm (768px ve altı) - Hamburger Menü */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        position: relative;
    }

    /* Mobil Menü Tetikleyici (Hamburger İkon) */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001; /* Menünün üzerinde kalması için */
    }
    .mobile-menu-toggle .line {
        width: 30px;
        height: 3px;
        background: var(--text-color);
        border-radius: 10px;
        transition: all 0.3s linear;
    }

    /* Mobil Menü Navigasyon Alanı (Açılır Panel) */
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px; /* Menü genişliği */
        height: 100vh;
        background: var(--header-footer-bg);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%); /* Başlangıçta ekranın dışında */
        transition: transform 0.3s ease-in-out;
        padding-top: 80px;
        z-index: 1000;
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
    }
    .main-navigation li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    .main-navigation a {
        font-size: 18px;
    }

    /* Menü Açıkken Stiller */
    .mobile-menu-open .main-navigation {
        transform: translateX(0); /* Menüyü ekranın içine kaydır */
    }
    .mobile-menu-open .mobile-menu-toggle .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-open .mobile-menu-toggle .line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-open .mobile-menu-toggle .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero alanını küçült */
    .hero-section {
        height: 50vh;
    }
    .hero-title {
        font-size: 36px;
    }

    /* Ürün gridlerini 2 sütuna düşür */
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Yazı boyutlarını düzenle */
    .section-title,
    .single-product .product_title {
        font-size: 28px;
    }
}


/* 8.3 - Küçük Mobil Görünüm (480px ve altı) */
@media (max-width: 480px) {
    /* Ürün gridlerini tek sütuna düşür */
    .product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    /* Adet ve Sepete Ekle butonunu alt alta getir */
    .quantity-add-to-cart-wrapper {
        flex-direction: column;
    }
    .single-product .quantity {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .single-product .quantity .qty {
        width: 100%;
        border-right: 2px solid #eee;
        border-radius: 5px;
    }
    .single-product .single_add_to_cart_button {
        border-radius: 5px !important;
    }
}

/*--------------------------------------------------------------
>>> 9.0 - Mağaza Sayfası Kenar Çubuğu
--------------------------------------------------------------*/
.shop-container.has-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sol sütun 280px, sağ sütun kalan alan */
    gap: 40px;
}

.shop-sidebar .widget {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.shop-sidebar .widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Kategori Listesi Stilleri */
.shop-sidebar .widget_product_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar .widget_product_categories ul li {
    margin-bottom: 10px;
}

.shop-sidebar .widget_product_categories ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--text-color);
}

.shop-sidebar .widget_product_categories ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.shop-sidebar .widget_product_categories ul li.current-cat > a {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 700;
}

/* Responsive Ayarlar */
@media (max-width: 1024px) {
    .shop-container.has-sidebar {
        grid-template-columns: 1fr; /* Tablet ve mobilde sütunları alt alta getir */
    }
    .shop-sidebar {
        margin-bottom: 40px;
    }
}

/*--------------------------------------------------------------
>>> 10.0 - Header Sepet Sayacı
--------------------------------------------------------------*/
.main-navigation .cart-count {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    padding: 2px 6px;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

/*--------------------------------------------------------------
>>> 11.0 - Sepet Sayfası (Güçlendirilmiş)
--------------------------------------------------------------*/

/* WordPress, özel şablon atanan sayfalara özel bir body class'ı ekler.
   Bizim şablonumuz için bu ".page-template-template-cart"tır.
   Bu sınıfı kullanarak kurallarımızı çok daha spesifik hale getiriyoruz. */

.page-template-template-cart .entry-header {
    margin-bottom: 40px;
}

/* Genel Sepet Sayfası Düzeni */
.page-template-template-cart .cart-collaterals {
    width: 35%;
    float: right;
    box-sizing: border-box;
}
.page-template-template-cart .woocommerce-cart-form {
    width: 62%;
    float: left;
    box-sizing: border-box;
}
/* Clearfix: Float'ların konteyner dışına taşmasını engeller */
.page-template-template-cart .woocommerce::after {
    content: "";
    display: table;
    clear: both;
}

/* Ürün Tablosu */
.page-template-template-cart table.shop_table {
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.page-template-template-cart table.shop_table thead {
    background-color: #f9f9f9;
}
.page-template-template-cart table.shop_table th {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 15px 20px;
    text-align: left;
}
.page-template-template-cart table.shop_table td {
    padding: 20px;
    border-top: 1px solid #eee;
    vertical-align: middle;
}
.page-template-template-cart .product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}
.page-template-template-cart .product-name a {
    font-weight: 700;
    color: var(--text-color);
}
.page-template-template-cart .product-quantity .quantity .qty {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.page-template-template-cart .actions .coupon .input-text {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.page-template-template-cart .actions .button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 5px !important;
}

/* Kupon ve Toplamlar Alanı */
.page-template-template-cart .cart_totals {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.page-template-template-cart .cart_totals h2 {
    margin-top: 0;
}
.page-template-template-cart .cart_totals table {
    width: 100%;
}
.page-template-template-cart .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
}

/* Responsive Ayarlar */
@media (max-width: 1024px) {
    .page-template-template-cart .cart-collaterals,
    .page-template-template-cart .woocommerce-cart-form {
        width: 100%;
        float: none;
    }
    .page-template-template-cart .cart-collaterals {
        margin-top: 40px;
    }
}