.apc-row {
    display: grid;
    grid-template-columns: 150px repeat(auto-fill, minmax(200px, 1fr));
    align-items: center;
    border-bottom: 1px solid #eee;
}

.apc-images-row {
    border-bottom: none;
}

.apc-attr-label {
    font-weight: bold;
    background: #f7f7f7;
    padding: 8px;
    text-align: left;
}

.apc-col {
    padding: 8px;
}

.apc-add-product {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    background: #fafafa;
}

.apc-add-product span {
    font-size: 24px;
    display: block;
}

.apc-price-row .apc-col {
    font-weight: bold;
    color: #b06c2a;
}

.apc-add-to-cart {
    display: inline-block;
    background: #5a3e24;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.apc-add-to-cart:hover {
    background: #8b5e3c;
}
.apc-compare-table-wrapper{
	width: 100%;
	overflow: auto;
}
table.apc-compare-table{
	min-width: 100%;
	width: auto;
	border: none;
	border-collapse: separate;
	border-spacing: 10px 0;
}
table.apc-compare-table thead:after {
    content: '';
    display: block;
    height: 21px;
}
table.apc-compare-table th, 
table.apc-compare-table td {
    min-width: 237px;
    max-width: 320px;
	text-align: left;
	border: none;
	background-color: #FFFFFF;
	padding: 16px 24px;
	font-size: 14px;
	line-height: 1.5;
}
table.apc-compare-table thead:first-child tr:first-child th:empty,
table.apc-compare-table thead:first-child tr:first-child td:empty,
table.apc-compare-table tbody tr:last-child td,
table.apc-compare-table tbody tr:last-child th{
	border: none;
}
/* table.apc-compare-table thead th:not(:empty), 
table.apc-compare-table thead td:not(:empty){
	border-width: 1px 1px 0;
} */
table.apc-compare-table th:not(:empty), 
table.apc-compare-table td:not(:empty){
	border-width: 0 1px 1px;
}
table.apc-compare-table tr:first-child th:not(:empty), 
table.apc-compare-table tr:first-child td:not(:empty){
	border-top-width: 1px;
}
table.apc-compare-table th:not(:empty), 
table.apc-compare-table td:not(:empty){
	border-style: solid;
	border-color: #AEA8A3;
}
table.apc-compare-table thead th:not(:empty),
table.apc-compare-table thead td:not(:empty){
	border-color: #C8691C66;
}
table.apc-compare-table tbody > tr:nth-child(odd) > td, 
table.apc-compare-table tbody > tr:nth-child(odd) > th,
table.apc-compare-table tbody tr:hover > td:empty, 
table.apc-compare-table tbody tr:hover > th:empty{
	background-color: #FFFFFF;
}
table.apc-compare-table tbody > tr > th:first-child:not(:empty),
table.apc-compare-table tbody > tr > td:first-child:not(:empty),
table.apc-compare-table tbody > tr:hover > th:not(:empty),
table.apc-compare-table tbody > tr:hover > td:not(:empty){
	background-color: #F9F9F9;
}
table.apc-compare-table tbody tr:last-child > th:not(:empty),
table.apc-compare-table tbody tr:last-child > td:not(:empty){
	background-color: #FFFFFF;
}
table.apc-compare-table tr th:first-child {
    position: sticky;
    left: 0;
}
table.apc-compare-table th.add-new-commparison-products {
    width: 320px;
	vertical-align: baseline;
	padding: 0;
}
table.apc-compare-table .add-new-commparison-products a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #F9F9F9;
	width: 100%;
	aspect-ratio: 1;
	color: #6C4C7A;
	font-family: 'Belleza';
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	gap: 12px;
	transition: all 0.3s  ease;
}
table.apc-compare-table .add-new-commparison-products a:hover,
table.apc-compare-table .add-new-commparison-products a:focus{
	color: #F9F9F9;
	background-color: #6C4C7A;
}
table.apc-compare-table .price-cart-wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
table.apc-compare-table .price-cart-wrapper .price-wrapper{
	width: 100%;
	padding: 26px 0;
	color: #C8691C;
	text-align: center;
}
table.apc-compare-table .price-cart-wrapper .price-wrapper label{
	color: #6C4C7A;
}
table.apc-compare-table .add-to-cart-wrapper{
	width: 100%;
}
table.apc-compare-table a.apc-add-to-cart{
	background-color: #674019;
	color: #FFF5ED;
	width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 15px;
	width: calc(100% + 48px);
	margin: 0 -24px;
	font-family: 'Belleza';
    font-weight: 400;
}

/* Compare Widget Styles */
.apc-widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.apc-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.apc-widget-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.apc-widget-count {
    background: #6C4C7A;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.apc-widget-empty {
    text-align: center;
    color: #666;
    padding: 20px;
    font-style: italic;
}

.apc-widget-products {
    margin-bottom: 15px;
}

.apc-widget-product {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #f9f9f9;
    position: relative;
}

.apc-widget-product-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.apc-widget-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apc-widget-product-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.apc-widget-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apc-widget-remove:hover {
    background: #c82333;
}

.apc-widget-actions {
    display: flex;
    gap: 10px;
}

.apc-widget-compare-btn {
    flex: 1;
    background: #6C4C7A;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease;
}

.apc-widget-compare-btn:hover {
    background: #5a3e62;
    color: white;
}

.apc-widget-clear-all {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.apc-widget-clear-all:hover {
    background: #5a6268;
}

/* Widget Types */
.apc-widget-sidebar {
    width: 100%;
}

.apc-widget-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.apc-widget-inline {
    display: inline-block;
    width: auto;
    min-width: 250px;
}

/* Enhanced Compare Button Styles */
.apc-compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid #6C4C7A;
    background: white;
    color: #6C4C7A;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.2;
}

.apc-compare-btn:hover {
    background: #6C4C7A;
    color: white;
}

.apc-compare-btn.apc-in-compare {
    background: #6C4C7A;
    color: white;
}

.apc-compare-btn.apc-in-compare:hover {
    background: #5a3e62;
    border-color: #5a3e62;
}

/* Button Styles */
.apc-compare-btn-default {
    /* Default style - already defined above */
}

.apc-compare-btn-icon {
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.apc-compare-btn-text {
    border: none;
    background: none;
    color: #6C4C7A;
    text-decoration: underline;
    padding: 4px 8px;
}

.apc-compare-btn-text:hover {
    color: #5a3e62;
}

.apc-compare-btn-button {
    background: #6C4C7A;
    color: white;
    border-color: #6C4C7A;
    font-weight: bold;
    padding: 12px 24px;
}

.apc-compare-btn-button:hover {
    background: #5a3e62;
    border-color: #5a3e62;
}

/* Message Styles */
.apc-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.apc-message-success {
    background: #28a745;
}

.apc-message-error {
    background: #dc3545;
}

.apc-message-info {
    background: #17a2b8;
}

/* Responsive Design */
@media (max-width: 767px) {
    .apc-widget-floating {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .apc-widget {
        padding: 10px;
    }
    
    .apc-widget-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .apc-widget-actions {
        flex-direction: column;
    }
    
    .apc-compare-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media(max-width:767px){
	table.apc-compare-table{
		border-spacing: 5px 0;
	}
	table.apc-compare-table thead:after{
		height: 10px;
	}
	table.apc-compare-table th, 
	table.apc-compare-table td{
		min-width: 150px;
        max-width: 180px;
		padding: 10px 15px;
    	font-size: 12px;
	}
	table.apc-compare-table .add-new-commparison-products a{
		font-size: 14px;
	}
	table.apc-compare-table .add-new-commparison-products a svg{
		width: 20px;
		height: 20px;
	}
	table.apc-compare-table .price-cart-wrapper .price-wrapper{
		padding: 15px 0;
	}
	table.apc-compare-table a.apc-add-to-cart{
		padding: 12px;
		width: calc(100% + 30px);
    	margin: 0 -15px;
	}
}

/* Guest User Styles */
.apc-widget-guest {
    border-color: #6C4C7A;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.apc-widget-guest-message {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    background: rgba(108, 76, 122, 0.1);
    border-radius: 6px;
    color: #6C4C7A;
    font-size: 12px;
    line-height: 1.4;
}

.apc-widget-guest-benefits {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #6C4C7A 0%, #5a3e62 100%);
    border-radius: 8px;
    color: white;
}

.apc-guest-benefits-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.apc-guest-icon {
    font-size: 18px;
}

.apc-guest-text {
    font-weight: bold;
    font-size: 14px;
}

.apc-guest-benefits-list {
    margin: 0;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.5;
}

.apc-guest-benefits-list li {
    margin-bottom: 5px;
}

/* Modal Styles */
.apc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apc-modal {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: apc-modal-slide-in 0.3s ease-out;
}

@keyframes apc-modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.apc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px;
    border-bottom: 1px solid #eee;
}

.apc-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.apc-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.apc-modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.apc-modal-content {
    padding: 20px;
}

.apc-modal-content p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.apc-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.apc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 100px;
}

.apc-btn-primary {
    background: #6C4C7A;
    color: white;
}

.apc-btn-primary:hover {
    background: #5a3e62;
    color: white;
}

.apc-btn-secondary {
    background: #17a2b8;
    color: white;
}

.apc-btn-secondary:hover {
    background: #138496;
    color: white;
}

.apc-btn-cancel {
    background: #6c757d;
    color: white;
}

.apc-btn-cancel:hover {
    background: #5a6268;
    color: white;
}

/* Guest User Button Enhancements */
.apc-compare-btn.apc-guest-user {
    position: relative;
}

.apc-compare-btn.apc-guest-user::after {
    content: '👤';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    background: #6C4C7A;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guest User Widget Enhancements */
.apc-widget-guest .apc-widget-header {
    background: linear-gradient(135deg, #6C4C7A 0%, #5a3e62 100%);
    color: white;
    border-radius: 6px 6px 0 0;
    margin: -15px -15px 15px -15px;
    padding: 15px;
}

.apc-widget-guest .apc-widget-header h4 {
    color: white;
}

.apc-widget-guest .apc-widget-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Guest Elements */
@media (max-width: 767px) {
    .apc-modal {
        width: 95%;
        margin: 20px;
    }
    
    .apc-modal-actions {
        flex-direction: column;
    }
    
    .apc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .apc-widget-guest-benefits {
        padding: 10px;
    }
    
    .apc-guest-benefits-list {
        font-size: 11px;
    }
}

/* Compare Icon Styles */
.apc-compare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.apc-compare-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Icon Positions */
.apc-icon-left {
    margin-right: 8px;
}

.apc-icon-right {
    margin-left: 8px;
}

.apc-icon-only {
    margin: 0;
}

/* Icon States */
.apc-icon-add {
    color: #4CAF50;
}

.apc-icon-remove {
    color: #f44336;
}

/* Button with Icons */
.apc-compare-btn .apc-button-text {
    display: inline-block;
    vertical-align: middle;
}

/* Icon-only Button Style */
.apc-compare-btn.apc-compare-btn-icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apc-compare-btn.apc-compare-btn-icon .apc-compare-icon {
    margin: 0;
}

.apc-compare-btn.apc-compare-btn-icon .apc-compare-icon svg {
    width: 20px;
    height: 20px;
}

/* Icon Button Hover Effects */
.apc-compare-btn.apc-compare-btn-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Icon Button States */
.apc-compare-btn.apc-compare-btn-icon.apc-in-compare {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.apc-compare-btn.apc-compare-btn-icon.apc-in-compare:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

/* Default Button with Icons */
.apc-compare-btn-default .apc-compare-icon {
    font-size: 14px;
}

.apc-compare-btn-default.apc-in-compare .apc-compare-icon {
    color: white;
}

/* Button Button Style with Icons */
.apc-compare-btn-button .apc-compare-icon {
    font-size: 16px;
}

.apc-compare-btn-button.apc-in-compare .apc-compare-icon {
    color: white;
}

/* Text Button Style with Icons */
.apc-compare-btn-text .apc-compare-icon {
    font-size: 14px;
    margin: 0 4px;
}

/* Icon Animations */
.apc-compare-icon {
    transition: all 0.3s ease;
}

.apc-compare-icon.apc-icon-add {
    animation: apc-icon-add-pulse 0.3s ease-out;
}

.apc-compare-icon.apc-icon-remove {
    animation: apc-icon-remove-pulse 0.3s ease-out;
}

@keyframes apc-icon-add-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes apc-icon-remove-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Icon Hover Effects */
.apc-compare-btn:hover .apc-compare-icon {
    transform: scale(1.1);
}

.apc-compare-btn:hover .apc-compare-icon.apc-icon-add {
    color: #45a049;
}

.apc-compare-btn:hover .apc-compare-icon.apc-icon-remove {
    color: #d32f2f;
}

/* Icon Sizes */
.apc-compare-icon.apc-icon-small svg {
    width: 12px;
    height: 12px;
}

.apc-compare-icon.apc-icon-medium svg {
    width: 16px;
    height: 16px;
}

.apc-compare-icon.apc-icon-large svg {
    width: 20px;
    height: 20px;
}

.apc-compare-icon.apc-icon-xlarge svg {
    width: 24px;
    height: 24px;
}

/* Icon Colors - Customizable */
.apc-compare-icon.apc-icon-add.apc-custom-color {
    color: var(--apc-add-icon-color, #4CAF50);
}

.apc-compare-icon.apc-icon-remove.apc-custom-color {
    color: var(--apc-remove-icon-color, #f44336);
}

/* Icon Button Variations */
.apc-compare-btn.apc-compare-btn-icon.apc-icon-outlined {
    background: transparent;
    border: 2px solid currentColor;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-filled {
    background: currentColor;
    color: white;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-soft {
    background: rgba(108, 76, 122, 0.1);
    border: 1px solid rgba(108, 76, 122, 0.3);
}

/* Icon Button Sizes */
.apc-compare-btn.apc-compare-btn-icon.apc-icon-size-small {
    width: 32px;
    height: 32px;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-size-medium {
    width: 40px;
    height: 40px;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-size-large {
    width: 48px;
    height: 48px;
}

/* Icon Button Shapes */
.apc-compare-btn.apc-compare-btn-icon.apc-icon-shape-square {
    border-radius: 4px;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-shape-rounded {
    border-radius: 8px;
}

.apc-compare-btn.apc-compare-btn-icon.apc-icon-shape-circle {
    border-radius: 50%;
}

/* Icon Button with Badge */
.apc-compare-btn.apc-compare-btn-icon.apc-has-badge {
    position: relative;
}

.apc-compare-btn.apc-compare-btn-icon.apc-has-badge::after {
    content: attr(data-count);
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Icon Button Loading State */
.apc-compare-btn.apc-compare-btn-icon.apc-loading {
    position: relative;
    pointer-events: none;
}

.apc-compare-btn.apc-compare-btn-icon.apc-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: apc-icon-spin 1s linear infinite;
}

@keyframes apc-icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon Button Tooltips */
.apc-compare-btn.apc-compare-btn-icon[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.apc-compare-btn.apc-compare-btn-icon[title]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.8);
    margin-bottom: 1px;
}

/* Responsive Icon Buttons */
@media (max-width: 767px) {
    .apc-compare-btn.apc-compare-btn-icon {
        width: 36px;
        height: 36px;
    }
    
    .apc-compare-btn.apc-compare-btn-icon .apc-compare-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .apc-compare-btn.apc-compare-btn-icon.apc-icon-size-small {
        width: 28px;
        height: 28px;
    }
    
    .apc-compare-btn.apc-compare-btn-icon.apc-icon-size-large {
        width: 44px;
        height: 44px;
    }
}

/* Icon Button Focus States */
.apc-compare-btn.apc-compare-btn-icon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 76, 122, 0.3);
}

.apc-compare-btn.apc-compare-btn-icon:focus-visible {
    outline: 2px solid #6C4C7A;
    outline-offset: 2px;
}

/* Icon Button Disabled State */
.apc-compare-btn.apc-compare-btn-icon:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Icon Button Group */
.apc-compare-btn-group {
    display: inline-flex;
    gap: 5px;
}

.apc-compare-btn-group .apc-compare-btn.apc-compare-btn-icon {
    border-radius: 0;
}

.apc-compare-btn-group .apc-compare-btn.apc-compare-btn-icon:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.apc-compare-btn-group .apc-compare-btn.apc-compare-btn-icon:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}