.cwpc-thumb img {
    width: 60px;min-width: 60px;
    height: auto;
}

.cwpc-title {
    font-size: 14px;
    color:#c89b5c;
    font-weight: 600;
    margin-bottom: 6px;
}

.cwpc-price {
    font-size: 14px;
    color: #000;
}

.cwpc-remove a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    background-color: #ccc;
    height: 20px;
    width: 20px;
    display: block;
    line-height: 20px;
    text-align: center;
    border-radius: 100%;
}

.cwpc-divider {
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.cwpc-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.cwpc-buttons {
    display: flex;
    gap: 15px;
}

.cwpc-viewcart {
    flex: 1;
    background: #c89b5c;
    color: #fff;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.cwpc-checkout {
    flex: 1;
    background: #000;
    color: #fff;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}



.cwpc-cart-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cwpc-cart-icon {
    font-size: 24px;
    position: relative;
}

.cwpc-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 50%;
}

.cwpc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

.cwpc-popup {
    display: none;
    position: fixed;
    top: 80px;
    right: 40px;
    width: 350px;
    background: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cwpc-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

.cwpc-popup .buttons a {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    text-align: center;
}

.cwpc-popup .checkout {
    background: #000;
    color: #fff;
}

.cwpc-popup .button {
    background: red;
    color: #fff;
}
.cwpc-header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: flex-end;
}

.cwpc-header-icons svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: transparent;
}

.cwpc-search-icon,
.cwpc-account-icon,
.cwpc-cart-icon{
    position:relative;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cwpc-cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#c89b5c;
    color:#fff;
    width:18px;
    height:18px;
    border-radius:50%;
    font-size:11px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}

.cwpc-search-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:99999;
}

.cwpc-search-box{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:#fff;
    padding:30px;
    width:90%;
    max-width:500px;
    border-radius:8px;
}

.cwpc-search-close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
}

.cwpc-search-box form{
    display:flex;
    gap:10px;
}

.cwpc-search-box input.search-field{
    flex:1;
    height:50px;
    padding:0 15px;
    border:1px solid #ddd;
}

.cwpc-search-box button{
    height:50px;
    padding:0 20px;
    border:none;
    background:#000;
    color:#fff;
    cursor:pointer;
}