/* General Body and Wrapper Styling */
body.woocommerce-cart {
    background: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.csd-cart-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* General WooCommerce Cart Page Styling */
.woocommerce-cart {
    background-color: #f8f8f8;
    padding: 30px 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Main Cart Containers */
.woocommerce .cart-empty,
.woocommerce .cart-collaterals,
.woocommerce .cart_totals {
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Table in Cart */
.woocommerce table.shop_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
    border: none;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    background-color: #fff;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9em;
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

/* Product Image - Ensure it's always block and visible, small size for thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
    width: 60px; /* Reduced size for thumbnails */
    height: 60px; /* Reduced size for thumbnails */
    object-fit: cover;
    border-radius: 4px;
    display: block; /* Ensure image is a block element */
    margin: 0 auto; /* Center image if its container is full width */
}

/* Product Name */
.woocommerce table.shop_table .product-name a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.woocommerce table.shop_table .product-name a:hover {
    color: #007bff;
}

/* Quantity Input */
.woocommerce .quantity .qty {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 1em;
}

/* General Button Styling (Blue) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #007bff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #0056b3;
}

/* Update Cart and Continue Shopping Buttons */
.woocommerce .actions .button {
    margin-right: 10px;
}

/* Coupon Section - Ensure horizontal layout on desktop, stacked on mobile */
.woocommerce .coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Prevent wrapping on larger screens (desktop) */
    align-items: center; /* Vertically align items */
    width: 100%;
    box-sizing: border-box;
}

.woocommerce .coupon .input-text {
    flex-grow: 1; /* Allows input to take up most of the space */
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 150px; /* Adjust min-width if necessary, or remove */
    box-sizing: border-box;
    font-size: 0.95em; /* Slightly larger text for readability */
}

.woocommerce .coupon .button {
    flex-shrink: 0; /* Prevent button from shrinking */
    padding: 12px 18px; /* Adjusted padding for better button proportion */
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    min-width: 120px; /* Minimum width for the button */
    font-size: 0.85em; /* Optimized font size for button text */
    line-height: 1; /* Ensure text fits well */
    box-sizing: border-box;
    text-transform: uppercase;
}


/* Cart Totals */
.woocommerce .cart_totals h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.woocommerce .cart_totals table {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.woocommerce .cart_totals table tr:last-child th,
.woocommerce .cart_totals table tr:last-child td {
    border-bottom: none;
    font-weight: bold;
}

.woocommerce .cart_totals .order-total .amount {
    color: #007bff;
    font-size: 1.5em;
    font-weight: bold;
}

/* Checkout Button */
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1em;
    background-color: #007bff;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #0056b3;
}

/* Cross-sell Section Styling */
.woocommerce-cart .cross-sells {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    display: none; /* Hidden by default as per original */
}

.woocommerce-cart .cross-sells h2 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.woocommerce-cart .cross-sells ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted min-width for better responsiveness */
    gap: 20px;
    padding: 0;
    list-style: none;
}

.woocommerce .cross-sells .onsale {
    position: absolute !important;
    top: 5px !important;
    left: 0px !important;
    background-color: #d3091c !important;
    color: #fff !important;
    padding: 5px !important;
    border-radius: 4px !important;
    font-size: 0.8em !important;
    font-weight: bold !important;
    z-index: 10 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 50px;
    text-align: center;
}

.woocommerce-cart .cross-sells ul.products li.product {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.woocommerce-cart .cross-sells ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart .cross-sells ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
    width: 100%;
}

.woocommerce-cart .cross-sells ul.products li.product img {
    max-width: 90px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: contain;
}

.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.85em;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    line-height: 1.3;
    word-wrap: break-word; /* Allow long titles to wrap */
}

.woocommerce-cart .cross-sells ul.products li.product .price {
    font-size: 0.7em;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.woocommerce-cart .cross-sells ul.products li.product .button {
    font-size: 0.7em;
    padding: 5px 5px;
    margin-top: auto;
    display: inline-block;
    width: auto;
    min-width: 120px;
}

.cross-sells {
    width: 100%;
}

/* Price Display (Discounted vs. Regular) */
.woocommerce table.shop_table .amount del {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9em;
    margin-right: 5px;
}

.woocommerce table.shop_table .amount ins {
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
}

.woocommerce .woocommerce-cart-form .cart-discount,
.woocommerce .discount,
.woocommerce .order-discount,
.woocommerce .cart-subtotal del + ins + .discount-amount,
.woocommerce .saved-amount {
    display: initial;
}

.woocommerce-cart .cart-collaterals {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.woocommerce-cart .cart_totals {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.woocommerce-cart .cross-sells {
    order: 2;
    width: 100%;
}
/* --- Bagian Umum untuk Kontainer Cross-sell --- */
/* --- Bagian Umum untuk Kontainer Cross-sell --- */
.csd-cross-sells {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff; /* Latar belakang putih */
    border-radius: 12px; /* Sudut lebih membulat */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Bayangan lebih dramatis */
    max-width: 1100px; /* Batasi lebar maksimal agar tidak terlalu lebar di layar besar */
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; /* Penting untuk menyembunyikan scrollbar di desktop jika ada dan agar slider tidak keluar */
}

.csd-cross-sells h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2em; /* Ukuran judul lebih besar */
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative; /* Untuk efek garis bawah */
    padding-bottom: 10px;
}

.csd-cross-sells h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* Garis bawah singkat */
    height: 3px;
    background-color: #007bff; /* Warna biru cerah */
    border-radius: 2px;
}

/* --- Wrapper untuk Item Cross-sell (Desktop: Grid, Mobile: Flex Slider) --- */
.csd-cross-sell-wrapper {
    display: grid; /* Default ke Grid untuk desktop */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Fleksibel, setidaknya 180px */
    gap: 25px; /* Jarak antar item lebih besar */
    padding: 0;
    list-style: none; /* Pastikan tidak ada bullet points jika ini ul */
}

/* --- Tampilan Item Cross-sell Individu --- */
.csd-cross-sell-item {
    position: relative;
    border: 1px solid #e0e0e0; /* Border lebih halus */
    padding: 15px;
    border-radius: 10px; /* Sudut membulat */
    background: #ffffff;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Dorong tombol ke bawah */
    align-items: center; /* Pusatkan konten horizontal */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transisi lebih halus */
}

.csd-cross-sell-item:hover {
    transform: translateY(-8px); /* Efek melayang lebih terasa */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Bayangan lebih kuat saat hover */
}

/* --- Badge Diskon --- */
.csd-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c; /* Merah diskon yang menarik */
    color: #fff;
    padding: 6px 12px; /* Padding lebih besar */
    font-size: 0.85em; /* Ukuran font sesuai */
    border-radius: 5px; /* Sudut membulat */
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Bayangan badge */
    letter-spacing: 0.5px; /* Sedikit spasi huruf */
    text-transform: uppercase;
}

/* --- Thumbnail Produk --- */
.csd-product-thumb {
    display: block; /* Pastikan link thumbnail adalah blok */
    margin-bottom: 15px; /* Jarak bawah */
    line-height: 0; /* Hilangkan space di bawah gambar */
}

.csd-product-thumb img {
    max-width: 120px; /* Ukuran thumbnail yang pas */
    height: auto;
    border-radius: 8px; /* Sudut gambar membulat */
    object-fit: contain; /* Pastikan gambar pas tanpa terpotong */
    transition: transform 0.3s ease; /* Efek zoom saat hover */
}

.csd-cross-sell-item:hover .csd-product-thumb img {
    transform: scale(1.08); /* Gambar sedikit membesar saat hover */
}

/* --- Judul Produk --- */
.csd-product-title {
    font-size: 1.1em; /* Ukuran judul lebih besar */
    font-weight: 600; /* Agak tebal */
    color: #333;
    margin: 0 0 10px; /* Jarak atas dan bawah */
    line-height: 1.4;
    word-break: break-word; /* Tangani judul panjang */
    flex-grow: 1; /* Biarkan judul mengambil ruang vertikal */
}

/* --- Harga Produk --- */
.csd-product-price {
    display: flex;
    align-items: baseline; /* Sejajarkan harga berdasarkan garis dasar */
    justify-content: center;
    gap: 8px; /* Jarak antar harga */
    margin-bottom: 15px;
    font-size: 1.2em; /* Ukuran harga lebih menonjol */
    font-weight: bold;
}

.csd-product-price del {
    color: #999;
    font-size: 0.8em; /* Harga coret lebih kecil */
    text-decoration: line-through;
    opacity: 0.8;
}

.csd-product-price ins {
    color: #28a745; /* Harga diskon hijau cerah */
    text-decoration: none;
}

/* --- Tombol "Tambah ke Keranjang" - UKURAN DEFAULT UNTUK DESKTOP LEBIH KECIL --- */
.csd-cross-sell-item .button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 7px;
    font-size: 0.85em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap; /*  Mencegah teks turun ke baris baru */
    margin-top: auto;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}


.csd-cross-sell-item .button:hover {
    background-color: #0056b3; /* Warna hover lebih gelap */
    transform: translateY(-3px); /* Efek sedikit naik */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Bayangan saat hover */
}


/* --- Media Queries untuk Responsif --- */
@media (min-width: 1200px) {
    .csd-cross-sell-wrapper {
        grid-template-columns: repeat(5, 1fr); /* Pastikan 5 kolom */
        gap: 20px; /* Sesuaikan gap */
    }
}
@media (min-width: 769px) and (max-width: 1199px) {
    .csd-cross-sell-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Fleksibel, bisa jadi 4 kolom */
        gap: 18px; /* Sesuaikan gap */
    }
    .csd-cross-sell-item {
        padding: 12px; /* Padding sedikit disesuaikan */
    }
    .csd-product-thumb img {
        max-width: 100px;
    }
    .csd-product-title {
        font-size: 1em;
    }
    .csd-product-price {
        font-size: 1.1em;
    }
    .csd-cross-sell-item .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
@media (max-width: 768px) {
    .csd-cross-sells {
        padding: 15px; /* Padding lebih kecil di mobile */
    }

    .csd-cross-sells h2 {
        font-size: 1.6em; /* Judul lebih kecil */
        margin-bottom: 20px;
    }
    .csd-cross-sells h2::after {
        width: 60px; /* Garis bawah lebih pendek */
    }

    .csd-cross-sell-wrapper {
        display: flex; /* Ganti ke Flexbox untuk slide */
        flex-wrap: nowrap; /* Pastikan item tidak melipat */
        overflow-x: scroll; /* Aktifkan scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Untuk scroll mulus di iOS */
        scroll-snap-type: x mandatory; /* Snap ke setiap item */
        gap: 15px; /* Jarak antar item di slider */
        padding-bottom: 15px; /* Beri ruang untuk scrollbar */
        justify-content: flex-start; /* Pastikan item dimulai dari kiri saat scroll */
    }

    .csd-cross-sell-item {
        flex: 0 0 calc(50% - 10px); /* 2 item per baris, hitung gap 15px (15/2=7.5, jadi 10px aman) */
        max-width: calc(50% - 10px);
        padding: 10px; /* Padding lebih kecil */
        scroll-snap-align: start; /* Snap ke awal item */
        border-radius: 8px; /* Sudut lebih kecil */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Bayangan lebih ringan */
    }

    .csd-cross-sell-item:hover {
        transform: translateY(-5px); /* Efek hover lebih ringan */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .csd-discount-badge {
        font-size: 0.8em;
        padding: 5px 10px;
    }

    .csd-product-thumb img {
        max-width: 90px; /* Ukuran thumbnail di mobile */
        margin-bottom: 10px;
    }

    .csd-product-title {
        font-size: 0.95em; /* Ukuran judul mobile */
        margin-bottom: 8px;
    }

    .csd-product-price {
        font-size: 1em; /* Ukuran harga mobile */
        margin-bottom: 12px;
    }

    .csd-cross-sell-item .button {
        padding: 10px 18px;
        font-size: 0.85em; /* Ukuran tombol mobile */
        border-radius: 6px;
    }
}
@media (max-width: 480px) {
    .csd-cross-sells {
        padding: 10px;
    }

    .csd-cross-sells h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .csd-cross-sell-wrapper {
        gap: 10px; /* Jarak antar item lebih kecil */
    }

    .csd-cross-sell-item {
        flex: 0 0 calc(100% - 5px); /* 1 item per baris (10px gap / 2 item = 5px) */
        max-width: calc(100% - 5px);
        padding: 8px;
    }

    .csd-product-thumb img {
        max-width: 80px; /* Ukuran thumbnail sangat kecil */
    }

    .csd-product-title {
        font-size: 0.9em;
    }

    .csd-product-price {
        font-size: 0.9em;
    }

    .csd-cross-sell-item .button {
        padding: 8px 15px;
        font-size: 0.8em;
    }
}


/* Tablet and smaller desktops */
@media (max-width: 1024px) {
    .csd-cart-wrapper {
        padding: 15px;
    }

    .woocommerce-cart .cross-sells ul.products {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    /* TABLE RESPONSIVE STYLES */
    .woocommerce table.shop_table {
        border: 1px solid #eee;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .woocommerce table.shop_table thead,
    .woocommerce table.shop_table tbody,
    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td,
    .woocommerce table.shop_table tr {
        display: block;
    }
    .woocommerce table.shop_table thead {
        display: none;
    }
    .woocommerce table.shop_table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 8px;
    }
    .woocommerce table.shop_table td {
        border: none;
        text-align: right;
        padding-left: 50%;
        position: relative;
        white-space: normal;
    }
    .woocommerce table.shop_table td:before {
        content: attr(data-title) ": ";
        font-weight: bold;
        display: block;
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        text-align: left;
        white-space: normal;
    }

    /* Thumbnail Product Specific Fixes for mobile */
    .woocommerce table.shop_table .product-thumbnail {
        text-align: center; /* Center the entire thumbnail section */
        display: block; /* Ensure it takes full width when stacked */
        width: 100%; /* Important for full width */
        margin-bottom: 10px; /* Space below thumbnail */
    }
    .woocommerce table.shop_table .product-thumbnail img {
        width: 80px; /* Make it a bit larger for clarity on tablets */
        height: 80px;
        margin: 0 auto; /* Center the image */
        display: inline-block; /* Treat as inline-block to respect margin auto */
        object-fit: cover;
    }

    /* ACTIONS AND COUPON - Fixed for horizontal/vertical flow */
    .woocommerce .actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .woocommerce .actions .button {
        margin-right: 0;
        width: 100%;
    }

    .woocommerce .coupon {
        flex-direction: column; /* Stack input and button vertically on mobile */
        align-items: stretch; /* Stretch items to full width */
        flex-wrap: wrap; /* Allow wrapping for safety */
        gap: 10px; /* Ensure consistent gap when stacked */
    }

    .woocommerce .coupon .input-text,
    .woocommerce .coupon .button {
        width: 100%; /* Both input and button take full width */
        margin-bottom: 0; /* Remove specific margin-bottom when stacked (gap handles it) */
        font-size: 0.9em; /* Adjust font size for mobile readability */
        padding: 10px; /* Adjust padding for mobile */
    }
    .woocommerce .coupon .button {
        text-transform: uppercase; /* Ensure consistent uppercase */
    }


    /* CROSS-SELLS */
    .woocommerce-cart .cross-sells ul.products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* CART COLLATERALS (CART TOTALS AND CROSS-SELLS) */
    .woocommerce-cart .cart-collaterals {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .woocommerce-cart .cart_totals {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-right: 0;
        clear: both;
        padding: 20px;
        box-sizing: border-box;
    }

    .woocommerce-cart .cart_totals table {
        width: 100%;
    }
}

/* Small devices (phones, 480px and below) */
@media (max-width: 480px) {
    .csd-cart-wrapper {
        padding: 10px;
    }

    .woocommerce-cart {
        padding: 15px 0;
    }

    .woocommerce .cart-empty,
    .woocommerce .cart-collaterals,
    .woocommerce .cart_totals {
        padding: 15px;
        margin-bottom: 15px;
    }

    /* Thumbnail for very small screens */
    .woocommerce table.shop_table .product-thumbnail img {
        width: 50px; /* Smaller for very small screens */
        height: 50px;
    }

    .woocommerce table.shop_table .product-name a {
        font-size: 0.9em;
    }

    .woocommerce .quantity .qty {
        width: 50px;
        padding: 6px;
        font-size: 0.9em;
    }

    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #respond input#submit {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .woocommerce .cart_totals h2 {
        font-size: 1.5em;
    }

    .woocommerce .cart_totals .order-total .amount {
        font-size: 1.2em;
    }

    .woocommerce .wc-proceed-to-checkout a.checkout-button {
        padding: 12px;
        font-size: 1em;
    }

    .csd-product-title {
        font-size: 14px;
    }

    .csd-product-price {
        font-size: 0.8em;
    }
}
.ppc-button-wrapper{
    display:none;
}

