/*
Theme Name: CRMan Coffee
Theme URI:  https://example.com/crman-coffee
Author:      Bạn
Author URI:  https://example.com
Description: A lightweight, responsive WordPress theme for CRMan Coffee — basic components for a storefront / business showcase.
Version:     1.0.1
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crman-coffee
Tags:        custom-logo, custom-menu, featured-images, theme-options, accessibility-ready, responsive-layout
*/

:root {
    --color-primary: #7b3f00; /* coffee brown */
    --color-accent: #c78b4b;
    --color-bg: #ffffff;
    --color-text: #222222;
}

body {
    font-family: "Roboto Slab", serif;
    background: whitesmoke;
    color: #6f1236;
}
a{
    color: #6f1236;
}
p {
    margin-bottom: 0;
}
h2{
    margin-bottom: 30px;
}
h3{
    font-size: 16px;
}
.dnano-section{
    padding: 60px 0;
}
.gallery-img-wrapper-inner {
    position: relative;
}
.carousel-item {
    height: 300px;
}
.banner-text-wrapper {
    top: 10%;
}


/* Layout tổng */
.crman-shop {
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;
}

/* Tiêu đề trang */
.crman-shop-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* GRID sản phẩm */
.crman-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Card sản phẩm */
.crman-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.crman-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ảnh sản phẩm */
.crman-product-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.crman-product-card:hover .crman-product-thumb img {
    transform: scale(1.07);
}

/* Thông tin */
.crman-product-info {
    padding: 18px 20px 22px;
}

.crman-product-title {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.crman-product-title a {
    text-decoration: none;
    color: #222;
}

.crman-product-title a:hover {
    color: #8b4513; /* Màu nâu CRMAN */
}

/* Giá */
.crman-product-price {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;

    color: #111;
}

/* Nút add to cart */
.crman-add-cart .button {
    width: 100%;
    text-align: center;
    background: #8b4513 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background 0.25s ease !important;
}

.crman-add-cart .button:hover {
    background: #633213 !important;
}

.woocommerce-before-shop-loop,
.woocommerce-result-count,
.woocommerce-ordering {
    float: none !important;
}

.style-img-wrapper{
    text-align: center;
}
.style-img-wrapper img{
    max-width: 100%;
    height: auto;
}
.card{
    padding: 20px;
    margin: 20px;
    border: none;
}
.wc-block-components-button__text{
    background: #592717;
    padding: 10px;
    color: white;
}
.post-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Style chung cho nút */
.post-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: #f1f1f1;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Hover */
.post-pagination .page-numbers:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-2px);
}

/* Trang hiện tại */
.post-pagination .page-numbers.current {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    cursor: default;
    box-shadow: 0 5px 12px rgba(255,122,24,0.4);
}

/* Nút Trang trước */
.post-pagination .prev {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

.post-pagination .prev:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}
/*sidebar*/
.crman-shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    margin-top: 20px;
}

.crman-shop-sidebar {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.crman-shop-sidebar h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.crman-category-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crman-category-filter li {
    margin-bottom: 10px;
}

.crman-category-filter a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.crman-category-filter a:hover {
    background: #111827;
    color: #fff;
}

/* GRID SẢN PHẨM */
.crman-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.wp-block-post-template{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* or repeat(4, 1fr) */
    gap: 20px;
}
.wp-block-post-title{
    font-size: 18px;
}

.wp-block-image:hover img {
    opacity: .3;
}
img {
    max-width: 100%;
    transition: .5s ease;
    backface-visibility: hidden;
    opacity: 1;
}
.wp-block-post-featured-image{
    height: 300px;
}
.wp-block-post-featured-image :where(img){
    height: 100%;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
     width: inherit;
}
.section-flex > .wp-block-group__inner-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.section-flex > .wp-block-group__inner-container >*{
    width: 47%;
}

.section-flex-4col > .wp-block-group__inner-container >*{
    width: 22%;
}
.block-editor-block-list__block.menu-item img{
    max-height: 100px;
    max-width: 100px;
}
.footer-widget ul {
    margin-top: 1em;
    list-style: none;
    padding-left: 0;
}
.footer-widget li{
    margin-bottom: 1em;
    text-align: center;
}
.footer-widget li a{
    color: #c2c2c2;
    padding: 0 2em;
    font-size: 15px;
    text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
    .crman-shop-layout {
        grid-template-columns: 1fr;
    }

    .crman-shop-sidebar {
        order: 2;
    }
    .section-flex > .wp-block-group__inner-container >*{
        width: 100%;
    }
}
