* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    background: #f5f5f5;
    font-family: sans-serif;
}

#awc-cart-page {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: calc(100% - 30px);
    padding: 20px 15px;
}

.awc-cart-left {
    width: 60%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
}

.awc-cart-right {
    width: 38%;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}

.awc-cart-right h2 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.awc-cart-master-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    padding-bottom: 10px;
}

input[type="checkbox"]:focus,
.awc-product-qty input[type="number"]:focus,
.awc-product-qty button:focus {
    outline: none;
    box-shadow: none;
}

input[type="checkbox"],
.awc-checkbox {
    appearance: auto;
    accent-color: #007cba;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: 0;
}

.awc-seller-header {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    gap: 12px;
}

.awc-seller-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.awc-seller-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    flex-grow: 1;
}

.awc-seller-rating {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.awc-product-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.awc-product-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.awc-product-details {
    flex: 1;
}

.awc-product-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
}

.awc-product-description {
    font-size: 12px;
    color: #666;
}

.awc-product-price {
    font-size: 14px;
    color: #000;
    margin-top: 4px;
}

.awc-product-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.awc-product-qty button {
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background-color: #ececec;
    color: #333;
    transition: none;
}

.awc-product-qty input[type="number"] {
    width: 90px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.awc-product-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 18px;
    align-items: center;
    padding-left: 10px;
}



html, body {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    font-family: sans-serif;
}

#awc-cart-page {
    display: flex;
    width: 100vw;
    padding: 0;
    margin: 0;
    gap: 1%;
}

.awc-cart-left {
    width: 60vw;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
}

.awc-cart-right {
    width: 39vw;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}

.awc-cart-right h2 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Diğer stiller olduğu gibi korunur */

#awc-cart-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    gap: 1%;
}

/* Icon styles for product row */

.awc-icon-box {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.awc-icon-box img {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.awc-icon-box img:hover {
    transform: scale(1.15);
}

.awc-product-row {
    position: relative;
}
