.art-icon{
    font-size: 3rem!important;
    color: #b99272;
}

/* Add text justification for paragraphs */
.kf-text p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Products Slider Styles */
.kf-products-slider {
    padding: 60px 0;
    position: relative;
    background: #0e1317;
}

.kf-products-carousel {
    position: relative;
    padding: 20px 0;
}

.kf-products-swiper {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.kf-products-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: 10px;
}

.kf-products-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.kf-products-item .image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.kf-products-item .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kf-products-item:hover .image img {
    transform: scale(1.05);
}

.kf-products-item .desc {
    padding: 20px;
    text-align: center;
}

.kf-products-item .name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1c1c1c;
}

.kf-products-item .subname {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.kf-products-item .price {
    font-size: 20px;
    font-weight: 600;
    color: #b99272;
    font-family: "Oswald";
    margin-bottom: 15px;
}

.kf-products-item .add-to-cart-btn,
.kf-menu-item .add-to-cart-btn {
    background: #b99272;
    color: #fff;
    padding: 8px 20px;
    border: 1px solid #b99272;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    white-space: nowrap;
}

.kf-products-item .add-to-cart-btn:hover,
.kf-menu-item .add-to-cart-btn:hover {
    background: #fff;
    color: #b99272;
    border: 1px solid #b99272;
    transform: translateY(-2px);
}

.kf-products-item .add-to-cart-btn:active,
.kf-menu-item .add-to-cart-btn:active {
    transform: translateY(0);
}

.kf-products-item .add-to-cart-btn i,
.kf-menu-item .add-to-cart-btn i {
    font-size: 14px;
    margin-left: 3px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    /* background: #b99272 !important; */
    border-radius: 50%;
    color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .kf-products-item {
        margin: 10px 0;
    }
    
    .kf-products-slider {
        padding: 40px 0;
    }
}

/* Cart button styles */
.kf-btn .fa-shopping-cart {
    margin-left: 8px;
}

.h-btn {
    position: relative;
    transition: all 0.3s ease;
}

.h-btn:hover {
    background: #a17a52;
}

/* Floating cart item animation */
.floating-cart-item {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform-origin: center;
}

.floating-cart-item img {
    transform-origin: center;
    will-change: transform, opacity;
    transition: transform 0.3s ease;
}

.floating-cart-item:hover img {
    transform: scale(1.1);
}

/* Cart button transition */
.kf-navbar .h-btn {
    transition: transform 0.2s ease;
    will-change: transform;
}

.kf-navbar .h-btn:active {
    transform: scale(0.95);
}

/* Cart Dropdown Styles */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-top: 10px;
    z-index: 1000;
    padding: 15px;
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
}

.cart-items {
    width: 100%;
}

.empty-cart {
    text-align: center;
    padding: 15px;
    color: #666;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-details h4 {
    margin: 0 0 3px;
    font-size: 13px;
    color: #333;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-details .quantity {
    font-weight: 600;
    color: #b99272;
}

.price-details .single-price {
    color: #666;
}

.item-price strong {
    color: #b99272;
    font-size: 14px;
}

.remove-item {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    padding: 0 5px;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: 5px;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 2px solid #eee;
    margin-top: 5px;
    font-weight: 600;
}

.cart-actions {
    margin-top: 12px;
}

.checkout-btn {
    display: block;
    background: #b99272;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.checkout-btn:hover {
    background: #a17a52;
    color: #fff;
}

.checkout-btn i {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.checkout-btn:hover i {
    transform: translateX(3px);
}

/* Make cart button position relative for dropdown */
.kf-navbar .h-btn {
    position: relative;
}

/* Cart Page Styles - Dark Theme */
.cart-container {
    padding: 40px 0;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    background: #1b1d21;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.empty-cart-message i {
    font-size: 48px;
    color: #b99272;
    margin-bottom: 20px;
}

.empty-cart-message h3 {
    margin-bottom: 10px;
    color: #fff;
}

.empty-cart-message p {
    color: #999;
    margin-bottom: 20px;
}

.cart-items-table {
    background: #1b1d21;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.cart-header {
    background: #232529;
    border-radius: 8px 8px 0 0;
    padding: 15px;
    color: #b99272;
    font-weight: 600;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #2a2c31;
}

.cart-body .cart-row:last-child {
    border-bottom: none;
}

.product-col {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.product-col img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.product-info h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.cart-col {
    color: #b3b3b3;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    background: #2a2c31;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.quantity-controls button:hover {
    background: #b99272;
}

.quantity-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #2a2c31;
}

.quantity-controls span {
    color: #fff;
    min-width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-summary {
    background: #1b1d21;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #2a2c31;
    color: #b3b3b3;
}

.summary-row strong {
    color: #fff;
}

.summary-row.total {
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    padding-top: 20px;

    color: #fff;
}

.summary-row.total strong {
    color: #b99272;
}

.cart-actions {
    margin-top: 20px;
}

.total-col {
    color: #b99272;
    font-weight: 600;
}

/* Update remove button style */
.cart-col .remove-item {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.cart-col .remove-item:hover {
    color: #ff4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-row {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .price-col {
        display: none;
    }
    
    .product-col {
        gap: 10px;
    }
    
    .product-col img {
        width: 60px;
        height: 60px;
    }
}

/* Empty Cart Banner Styles */
.empty-cart-banner {
    background: #1b1d21;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empty-cart-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, #b99272 0%, #a17a52 100%);
    opacity: 0.1;
}

.empty-cart-content {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    background: #2a2c31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.empty-cart-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #b99272;
    border-radius: 50%;
    opacity: 0.3;
}

.empty-cart-icon i {
    font-size: 40px;
    color: #b99272;
}

.empty-cart-banner h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-cart-banner p {
    color: #999;
    margin-bottom: 30px;
    font-size: 16px;
}

.empty-cart-banner .kf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #b99272;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.empty-cart-banner .kf-btn:hover {
    background: #a17a52;
    transform: translateY(-2px);
}

.empty-cart-banner .kf-btn i {
    transition: transform 0.3s ease;
}

.empty-cart-banner .kf-btn:hover i {
    transform: translateX(5px);
}

/* Checkout Page Styles */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    padding: 40px 0;
    align-items: flex-start;
}

.checkout-content {
    background: #1b1d21;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Disclaimer Banner Styles */
.checkout-disclaimer {
    background: rgba(185, 146, 114, 0.1);
    border: 1px solid #b99272;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #b99272;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-icon i {
    font-size: 20px;
    color: #fff;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h3 {
    color: #b99272;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.disclaimer-content p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Shipping Form Styles */
.shipping-details h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.shipping-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b3b3b3;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #2a2c31;
    border: 1px solid #3a3c41;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b99272;
    outline: none;
    box-shadow: 0 0 0 2px rgba(185, 146, 114, 0.2);
}

/* Order Summary Styles */
.order-summary {
    background: #1b1d21;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 30px;
    align-self: flex-start;
    height: fit-content;
}

.summary-content {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #2a2c31;
}

.summary-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.summary-item-details {
    flex: 1;
}

.summary-item-name {
    color: #fff;
    margin-bottom: 5px;
}

.summary-item-price {
    color: #b3b3b3;
    font-size: 14px;
}

.summary-total {
    margin-top: 50px;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #b3b3b3;
}

.summary-row.final {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.summary-row.final .amount {
    color: #b99272;
}

.place-order-btn {
    width: 100%;
    background: #b99272;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.place-order-btn:hover {
    background: #a17a52;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .shipping-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-disclaimer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin-bottom: 10px;
    }
}

.certifications-title {
    margin-bottom: 20px;
}

/* Certifications Slider Styles */
.kf-certifications {
    padding: 100px 0;
    background: #1b1d21;
}

.kf-certificates-slider {
    position: relative;
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
}

.cert-swiper {
    padding: 20px 0;
    margin: 0 -15px;
    width: 100vw;  /* Full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cert-item {
    padding: 15px;
    transition: all 0.3s ease;
}

.cert-item .image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    aspect-ratio: 4/3;
    max-width: 200px;  /* Add max-width for larger screens */
    margin: 0 auto;    /* Center the items */
}

.cert-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-item:hover .image img {
    transform: scale(1.05);
}

/* Update swiper navigation for full width */
.cert-swiper .swiper-button-next,
.cert-swiper .swiper-button-prev {
    color: #b99272;
}

/* Adjust pagination position for full width */
.cert-swiper .swiper-pagination {
    bottom: 0;
}

/* Swiper pagination custom styles */
.cert-swiper .swiper-pagination {
    bottom: -10px;
}

.cert-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b99272;
    opacity: 0.3;
}

.cert-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Products Page Cart Button Styles */
.kf-menu-item .desc {
    position: relative;
    padding-bottom: 20px;
}

.kf-menu-item .price-cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 15px;
}

.kf-menu-item .price {
    font-size: 20px;
    font-weight: 600;
    color: #b99272;
    font-family: "Oswald";
    margin: 0;
}

.kf-menu-item .add-to-cart-btn {
    background: #b99272;
    color: #fff;
    padding: 6px 16px;  /* Reduced padding */
    border: none;
    border-radius: 6px;
    font-size: 12px;    /* Reduced font size */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;           /* Reduced gap */
    position: relative;
    white-space: nowrap;
}

.kf-menu-item .add-to-cart-btn:hover {
    background: #a17a52;
    transform: translateY(-2px);
}

.kf-menu-item .add-to-cart-btn:active {
    transform: translateY(0);
}

.kf-menu-item .add-to-cart-btn i {
    font-size: 12px;    /* Reduced icon size */
    margin-left: 3px;   /* Reduced margin */
}

.kf-menu-item .add-to-cart-btn.in-cart {
    background: #1c1c1c;
}

.kf-menu-item .add-to-cart-btn.in-cart:hover {
    background: #2a2c31;
}

@media (max-width: 768px) {
    .kf-menu-item .desc {
        padding-bottom: 20px;
    }
    
    .kf-menu-item .price-cart-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .kf-menu-item .price {
        margin-bottom: 0;
    }
}

/* Shipping Form Phone Input Styles */
.shipping-form .phone-input {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    position: relative;
}

.shipping-form .phone-input .country-select {
    width: 120px;
    height: 46px;
    padding: 0 30px 0 12px;
    background: #2a2c31;
    border: 1px solid #3a3c41;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b99272' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.763L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    cursor: pointer;
    line-height: 46px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.shipping-form .phone-input .country-select:focus {
    border-color: #b99272;
    outline: none;
    box-shadow: 0 0 0 2px rgba(185, 146, 114, 0.2);
}

.shipping-form .phone-input .country-select option {
    background: #2a2c31;
    color: #fff;
    padding: 8px;
}

.shipping-form .phone-input input[type="tel"] {
    height: 46px;
    padding: 0 12px 0 40px;
    background: #2a2c31;
    border: 1px solid #3a3c41;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    line-height: 46px;
}

.shipping-form .phone-input i {
    position: absolute;
    left: calc(120px + 25px);
    top: 50%;
    transform: translateY(-50%);
    color: #b99272;
    font-size: 16px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .shipping-form .phone-input {
        grid-template-columns: 100px 1fr;
    }
    
    .shipping-form .phone-input .country-select {
        width: 100px;
        padding: 0 25px 0 8px;
    }
    
    .shipping-form .phone-input i {
        left: calc(100px + 25px);
    }
}

/* Make shipping form inputs consistent height */
.shipping-form input,
.shipping-form select {
    height: 46px;
    /* line-height: 46px; */
}

/* Cart Button Styles */
.mobile-cart-btn {
    display: none;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cart-btn:hover {
    background-color: #333;
    color: #fff;
}

.desktop-cart-btn {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-cart-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Shadow cart button styles */
.shadow-cart-btn {
    display: none!important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 12px;
    font-size: 13px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.shadow-cart-btn:hover {
    background-color: #333;
    color: #fff;
}

.shadow-cart-btn i {
    margin-left: 5px;
    font-size: 13px;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .mobile-cart-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .desktop-cart-btn {
        display: none;
    }
    
    .shadow-cart-btn {
        display: block!important;
        position: static;
        transform: none;
        margin-left: 15px;
        display: inline-flex!important;
        align-items: center;
        background-color: none!important;
        border:1px solid #b99272!important;
    }
    
    .kf-navbar .row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .kf-navbar .col-xs-12 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .kf-navbar-mobile .kf-topline {
        padding: 15px;
    }
    
    .kf-navbar-mobile .kf-topline .kf-h-group {
        margin-top: 10px;
    }

    .kf-row-single{
       --bs-gutter-x: 0;
    }

    .mobile-cart-btn{
        display: none!important;
    }
}

/* Select2 Country Dropdown Styles */
.select2-container--default .select2-selection--single {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    padding-left: 0;
    color: #333;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8B4513;
    color: #fff;
}

.select2-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.select2-search--dropdown {
    padding: 8px;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
}

.select2-results__option {
    padding: 8px 12px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f5f5f5;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8B4513;
    color: #fff;
}

/* Phone Input Container Styles */
.phone-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.phone-input .select2-container {
    width: 200px !important;
}

.phone-input input[type="tel"] {
    flex: 1;
}

.country-select-contact{
    width:40% !important;
}

/* Out of Stock Label Styles */
.out-of-stock-label {
    background: transparent;
    color: #dc3545;
    padding: 4px 12px;
    /* border: 1px solid #dc3545; */
    border-radius: 6px;
    font-size: 12px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    white-space: nowrap;
    opacity: 0.9;
    text-decoration: underline;
}

.out-of-stock-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

.out-of-stock-label .btn-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Add a subtle tooltip */
.out-of-stock-label::after {
    content: 'Item Currently Unavailable';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.out-of-stock-label:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .out-of-stock-label {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .out-of-stock-label::after {
        display: none;
    }
}

