*,*:before,*:after {
    box-sizing:border-box;
}

/* Remove the old kss-page-wrapper styling */
.kss-page-wrapper {
    display: none; /* Hide the old centered wrapper */
}

/* New Static Add to Cart Button */
.kss-add-to-cart {
    position: fixed;
    top: calc(45% + 80px); /* Position below the cart icon */
    right: 25px;
    background: linear-gradient(135deg, #6dd400 0%, #53a438 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(83, 164, 56, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 999;
    min-width: 120px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.kss-add-to-cart:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.kss-add-to-cart:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(83, 164, 56, 0.4);
    background: linear-gradient(135deg, #7be400 0%, #5fb43e 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.kss-add-to-cart:hover:before {
    left: 100%;
}

.kss-add-to-cart:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(83, 164, 56, 0.3);
}

/* Add icon to the button */
.kss-add-to-cart:after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.kss-add-to-cart:hover:after {
    transform: rotate(90deg);
}

/* Animation for cart item */
.kss-add-to-cart .cart-item {
    position: absolute;
    height: 24px;
    width: 24px;
    top: -10px;
    right: -10px;
    display: none;
}

.kss-add-to-cart .cart-item:before {
    content: '1';
    display: block;
    line-height: 24px;
    height: 24px;
    width: 24px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    border: 2px solid #fff;
}

.kss-add-to-cart.sendtocart .cart-item {
    display: block;
    animation: xAxis 1s forwards cubic-bezier(1.000,0.440,0.840,0.165);
}

.kss-add-to-cart.sendtocart .cart-item:before {
    animation: yAxis 1s alternate forwards cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .kss-add-to-cart {
        right: 15px;
        padding: 10px 16px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .kss-add-to-cart:after {
        margin-left: 6px;
        font-size: 10px;
    }
}

.kss-cart {
    position:fixed;
    top:45%;
    right:25px;
    width:60px;
    height:60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    
    &:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #7289ed 0%, #8458b3 100%);
    }
    
    &:active {
        transform: translateY(-1px) scale(1.02);
    }
    
    i {
        font-size:28px;
        color:white;
        transition: transform 0.2s ease;
    }
    
    &:hover i {
        transform: scale(1.1);
    }
    
    &:before {
        content:attr(data-total-items);
        font-size:12px;
        font-weight:700;
        position:absolute;
        top:-8px;
        right:-8px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        line-height:24px;
        padding:0 6px;
        height:24px;
        min-width:24px;
        color:white;
        text-align:center;
        border-radius:50%;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
        animation: pulse 2s infinite;
    }
    
    &.shake {
        animation: shakeCart 0.5s ease-in-out forwards;
    }
}

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

.kss-cart-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.kss-cart-modal.show {
    display: flex;
    opacity: 1;
}

.kss-modal-dialog {
    position: relative;
    margin: auto;
    max-width: 750px;
    width: 95%;
    pointer-events: none;
}

.kss-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 25px rgba(0,0,0,0.1);
    padding: 40px 36px 32px 36px;
    position: relative;
    pointer-events: auto;
    animation: kssModalFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.8);
}

@keyframes kssModalFadeIn {
    from { 
        transform: translateY(-50px) scale(0.95); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.kss-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
    border: none;
    cursor: pointer;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kss-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.kss-cart-modal.show {
    animation: kssModalBackdropFadeIn 0.3s ease;
}

@keyframes kssModalBackdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes xAxis {
    100% {
        transform: translateX(calc(50vw - 105px));
    }
}

@keyframes yAxis {
    100% {
        transform: translateY(calc(-50vh + 75px));
    }
}

@keyframes shakeCart {
    25% {
        transform:translateX(6px)
    }
    50% {
        transform:translateX(-4px);
    }
    75% {
        transform:translateX(2px);
    }
    100% {
        transform:translateX(0);
    }
}

.kss-cart-items {
    max-height: 450px;
    overflow-y: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 8px;
}

.kss-cart-items::-webkit-scrollbar {
    width: 6px;
}

.kss-cart-items::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.kss-cart-items::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.kss-cart-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7289ed, #8458b3);
}

.kss-cart-items .kss-cart-item {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    /*overflow: hidden;*/
}

.kss-cart-items .kss-cart-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kss-cart-items .kss-cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 4px 15px rgba(0,0,0,0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

.kss-cart-items .kss-cart-item:hover:before {
    opacity: 1;
}

.kss-cart-items .kss-item-image {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 3px solid #fff;
    position: relative;
}

.kss-cart-items .kss-item-image:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kss-cart-items .kss-cart-item:hover .kss-item-image:before {
    opacity: 1;
}

.kss-cart-items .kss-item-image img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s ease;
}

.kss-cart-items .kss-cart-item:hover .kss-item-image img {
    transform: scale(1.05);
}

.kss-cart-items .kss-item-details {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kss-cart-items .kss-item-details h3 {
    font-size: 1.6rem;
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    background: linear-gradient(135deg, #6dd400, #53a438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kss-cart-items .kss-item-details p {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kss-cart-items .kss-item-details p:first-of-type {
    color: #059669;
    font-weight: 700;
}

.kss-cart-items .kss-remove-item {
    flex: 0 0 auto;
    margin-left: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kss-cart-items .kss-remove-item:hover {
    background: linear-gradient(135deg, #f87171, #ef4444);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

.kss-cart-items .kss-remove-item:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.kss-cart-total {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.kss-cart-total:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6dd400, #53a438, #667eea, #764ba2);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.kss-cart-total h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #475569;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(100, 116, 139, 0.05);
    border-radius: 12px;
    border-left: 4px solid #64748b;
    transition: all 0.3s ease;
}

.kss-cart-total h3 span {
    font-weight: 800;
    color: #1e293b;
    background: linear-gradient(135deg, #6dd400, #53a438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.7rem;
}

.kss-cart-total h3:hover {
    background: rgba(100, 116, 139, 0.08);
    transform: translateX(4px);
}

.kss-cart-total h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.kss-cart-total h2:first-of-type {
    color: #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-left: 4px solid #059669;
}

.kss-cart-total h2:first-of-type span {
    font-weight: 800;
    color: #047857;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.9rem;
}

.kss-cart-total h2:first-of-type:hover {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.08));
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
}

.kss-cart-total h2:last-of-type {
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(124, 58, 237, 0.3);
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.kss-cart-total h2:last-of-type span {
    font-weight: 900;
    color: #6d28d9;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem;
    text-shadow: 0 2px 4px rgba(124, 58, 237, 0.2);
}

.kss-cart-total h2:last-of-type:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.kss-cart-total h2:last-of-type:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(139, 92, 246, 0.08));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

.kss-cart-total h2:last-of-type:hover:before {
    left: 100%;
}

.kss-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kss-modal-footer{
    margin-top: 25px;
}

.kss-cart-contact-info {
    margin: 24px 0;
    padding: 28px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.kss-cart-contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #6dd400, #53a438);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.kss-cart-contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.kss-cart-contact-info h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

#contact-form {
    display: grid;
    gap: 18px;
}

#contact-form label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
    position: relative;
    padding-left: 8px;
}

#contact-form label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-radius: 2px;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.4rem;
    color: #374151;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    outline: none;
    font-family: inherit;
}

#contact-form select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#contact-form select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: 22px;
}

#contact-form select option {
    padding: 12px 16px;
    background: #ffffff !important;
    color: #374151 !important;
    font-size: 1.4rem;
    border: none;
    font-weight: normal;
}

#contact-form select option:hover {
    background: #f3f4f6 !important;
    color: #1e293b !important;
}

#contact-form select option:checked,
#contact-form select option:selected {
    background: #667eea !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* Ensure selected value is visible in the select element */
#contact-form select {
    color: #374151 !important;
    background-color: #ffffff;
    height: 5rem;
}

#contact-form select:focus {
    color: #1e293b !important;
}

#contact-form select.has-value,
#contact-form select:not([value=""]) {
    color: #1e293b !important;
    font-weight: 600;
}

/* Force visibility for webkit browsers */
#contact-form select::-webkit-calendar-picker-indicator {
    opacity: 0;
}

/* Additional fix for option visibility */
#contact-form select option:not(:checked) {
    background: #ffffff !important;
    color: #374151 !important;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 15px rgba(0,0,0,0.08);
    background: #ffffff;
    transform: translateY(-1px);
}

#contact-form input:hover,
#contact-form textarea:hover,
#contact-form select:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

#contact-form textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder,
#contact-form select::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Custom select dropdown styling */
#contact-form select::-ms-expand {
    display: none;
}

#contact-form select.filled {
    border-color: #6dd400 !important;
    background: linear-gradient(145deg, #f0fdf4, #ffffff) !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236dd400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    color: #1e293b !important;
    font-weight: 600;
}

/* Ensure the selected value text is always visible */
#contact-form select {
    background-color: #ffffff !important;
}

#contact-form select:not([multiple]):not([size]) {
    background-color: #ffffff !important;
    color: #374151 !important;
}

/* Override any inherited styles that might make text invisible */
#contact-form select * {
    color: #374151 !important;
}

/* Input field icons */
#contact-form input[type="text"]:before,
#contact-form input[type="email"]:before,
#contact-form input[type="tel"]:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* Enhanced form styling for better UX */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.filled input,
.form-group.filled textarea,
.form-group.filled select {
    border-color: #6dd400;
    background: linear-gradient(145deg, #f0fdf4, #ffffff);
}

.form-group.filled select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236dd400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
    background: linear-gradient(145deg, #fef2f2, #ffffff);
}

.form-group.error select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group.error label {
    color: #ef4444;
}

.form-group.error label:before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Required field indicator */
#contact-form label[for="contact_name"]:after,
#contact-form label[for="contact_email"]:after,
#contact-form label[for="address"]:after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
    font-weight: 700;
}

/* Alert Component Styling */
.kss-alert {
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    display: none; /* Hidden by default */
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Show alert when active */
.kss-alert.show {
    display: flex;
    animation: alertSlideIn 0.4s ease-out;
}

@keyframes alertSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.kss-alert:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 0 2px 2px 0;
}

.kss-alert:after {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.6rem;
    color: #667eea;
    flex-shrink: 0;
}

/* Default/Info Alert */
.kss-alert {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    color: #4338ca;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Success Alert */
.kss-alert.success {
    background: linear-gradient(145deg, rgba(109, 212, 0, 0.1), rgba(83, 164, 56, 0.05));
    color: #166534;
    border: 1px solid rgba(109, 212, 0, 0.2);
}

.kss-alert.success:before {
    background: linear-gradient(135deg, #6dd400, #53a438);
}

.kss-alert.success:after {
    content: '\f058';
    color: #16a34a;
}

/* Warning Alert */
.kss-alert.warning {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.kss-alert.warning:before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.kss-alert.warning:after {
    content: '\f071';
    color: #d97706;
}

/* Error Alert */
.kss-alert.error {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.kss-alert.error:before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.kss-alert.error:after {
    content: '\f06a';
    color: #dc2626;
}

/* Hover Effects */
.kss-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.kss-alert.success:hover {
    box-shadow: 0 6px 20px rgba(109, 212, 0, 0.2);
}

.kss-alert.warning:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
}

.kss-alert.error:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

/* Dismissible Alert */
.kss-alert.dismissible {
    padding-right: 50px;
}

.kss-alert .kss-alert-close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.8rem;
    color: currentColor;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.kss-alert .kss-alert-close:hover {
    opacity: 1;
    background: rgba(0,0,0,0.1);
    transform: translateY(-50%) rotate(90deg);
}

/* Alert with custom icon */
.kss-alert.custom-icon:after {
    content: attr(data-icon);
}

/* Compact Alert */
.kss-alert.compact {
    padding: 12px 16px;
    font-size: 1.2rem;
    margin: 12px 0;
}

.kss-alert.compact:after {
    font-size: 1.4rem;
}

/* Full-width Alert */
.kss-alert.full-width {
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
    border-left: none;
    border-right: none;
}

/* Animation for dismissing */
.kss-alert.dismissing {
    animation: alertSlideOut 0.3s ease-in forwards;
}

@keyframes alertSlideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
        margin-right: -100%;
    }
}

/* Global Alert Modal Styling */
.kss-alert-modal {
    display: none;
    position: fixed;
    z-index: 2000; /* Higher than cart modal */
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.kss-alert-modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.kss-alert-dialog {
    position: relative;
    margin: auto;
    max-width: 500px;
    width: 90%;
    pointer-events: auto;
}

.kss-alert-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 8px 25px rgba(0,0,0,0.15);
    padding: 32px 28px;
    position: relative;
    animation: globalAlertFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.8);
    text-align: center;
    overflow: hidden;
}

@keyframes globalAlertFadeIn {
    from { 
        transform: translateY(-30px) scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

.kss-alert-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #6dd400, #53a438);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.kss-alert-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
    border: none;
    cursor: pointer;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kss-alert-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.kss-alert-body {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
}

.kss-alert-body:before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
}

/* Success Alert */
.kss-alert-modal.success .kss-alert-content {
    border-left: 6px solid #16a34a;
}

.kss-alert-modal.success .kss-alert-content:before {
    background: linear-gradient(90deg, #16a34a, #22c55e, #4ade80);
}

.kss-alert-modal.success .kss-alert-body {
    color: #166534;
}

.kss-alert-modal.success .kss-alert-body:before {
    content: '\f058';
    color: #16a34a;
}

/* Error Alert */
.kss-alert-modal.error .kss-alert-content {
    border-left: 6px solid #dc2626;
}

.kss-alert-modal.error .kss-alert-content:before {
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
}

.kss-alert-modal.error .kss-alert-body {
    color: #991b1b;
}

.kss-alert-modal.error .kss-alert-body:before {
    content: '\f06a';
    color: #dc2626;
}

/* Warning Alert */
.kss-alert-modal.warning .kss-alert-content {
    border-left: 6px solid #d97706;
}

.kss-alert-modal.warning .kss-alert-content:before {
    background: linear-gradient(90deg, #d97706, #f59e0b, #fbbf24);
}

.kss-alert-modal.warning .kss-alert-body {
    color: #92400e;
}

.kss-alert-modal.warning .kss-alert-body:before {
    content: '\f071';
    color: #d97706;
}

/* Info Alert */
.kss-alert-modal.info .kss-alert-content {
    border-left: 6px solid #2563eb;
}

.kss-alert-modal.info .kss-alert-content:before {
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.kss-alert-modal.info .kss-alert-body {
    color: #1e40af;
}

.kss-alert-modal.info .kss-alert-body:before {
    content: '\f05a';
    color: #2563eb;
}

/* Animation for dismissing global alert */
.kss-alert-modal.dismissing .kss-alert-content {
    animation: globalAlertFadeOut 0.3s ease-in forwards;
}

@keyframes globalAlertFadeOut {
    to {
        transform: translateY(-30px) scale(0.9);
        opacity: 0;
    }
}

/* Shop Page Styling */
.kss-shop-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.kss-shop-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.kss-shop-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #6dd400, #53a438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.kss-shop-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-radius: 2px;
}

.kss-shop-stats {
    margin-top: 20px;
}

.kss-product-count {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(145deg, rgba(109, 212, 0, 0.1), rgba(83, 164, 56, 0.05));
    color: #2d5016;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    border: 1px solid rgba(109, 212, 0, 0.2);
}

/* Products Grid */
.kss-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Product Card */
.kss-product-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.kss-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 8px 25px rgba(0,0,0,0.08);
    border-color: rgba(109, 212, 0, 0.3);
}

/* Product Image */
.kss-product-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}

.kss-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kss-product-card:hover .kss-product-image {
    transform: scale(1.08);
}

.kss-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kss-product-card:hover .kss-product-overlay {
    opacity: 1;
}

.kss-quick-view-btn {
    background: rgba(255,255,255,0.95);
    color: #1e293b;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.kss-quick-view-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Product Info */
.kss-product-info {
    padding: 24px 20px 20px 20px;
}

.kss-product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.4;
    background: linear-gradient(135deg, #6dd400, #53a438);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kss-product-description {
    color: #64748b;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kss-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.kss-current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #059669;
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kss-old-price {
    font-size: 1.6rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

/* Product Actions */
.kss-product-actions {
    padding: 0 20px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Quantity Controls */
.kss-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px;
    border: 1px solid #e2e8f0;
}

.kss-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #6dd400, #53a438);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.kss-qty-btn:hover {
    background: linear-gradient(135deg, #7be400, #5fb43e);
    transform: scale(1.1);
}

.kss-qty-btn:active {
    transform: scale(0.95);
}

.kss-quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    outline: none;
}

/* Add to Cart Button */
.kss-add-to-cart-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(109, 212, 0, 0.3);
}

.kss-add-to-cart-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.kss-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #7be400, #5fb43e);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 212, 0, 0.4);
}

.kss-add-to-cart-btn:hover:before {
    left: 100%;
}

.kss-add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(109, 212, 0, 0.3);
}

.kss-cart-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* No Products State */
.kss-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
}

.kss-no-products-icon {
    font-size: 6rem;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.kss-no-products h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #64748b;
    margin: 0 0 12px 0;
}

.kss-no-products p {
    font-size: 1.6rem;
    color: #94a3b8;
    margin: 0;
}

/* Pagination */
.kss-pagination-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

/* Modern Pagination Styling */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pagination li {
    display: flex;
    margin: 0;
    padding: 0;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 12px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.pagination li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(109, 212, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.pagination li a:hover {
    color: #6dd400;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-color: rgba(109, 212, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 212, 0, 0.15);
}

.pagination li a:hover:before {
    left: 100%;
}

.pagination li a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Active page styling */
.pagination li.active a {
    color: #ffffff;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-color: #6dd400;
    box-shadow: 0 6px 20px rgba(109, 212, 0, 0.3);
    font-weight: 700;
}

.pagination li.active a:hover {
    background: linear-gradient(135deg, #7be400, #5fb43e);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(109, 212, 0, 0.4);
}

/* Previous/Next arrows styling */
.pagination li:first-child a,
.pagination li:last-child a {
    min-width: 50px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-color: #cbd5e1;
}

.pagination li:first-child a:hover,
.pagination li:last-child a:hover {
    background: linear-gradient(135deg, #6dd400, #53a438);
    color: #ffffff;
    border-color: #6dd400;
    box-shadow: 0 8px 25px rgba(109, 212, 0, 0.25);
}

.pagination li:first-child a span,
.pagination li:last-child a span {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Disabled state for navigation arrows */
.pagination li.disabled a {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination li.disabled a:hover {
    color: #cbd5e1;
    background: #f8fafc;
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pagination li.disabled a:before {
    display: none;
}

/* Ellipsis styling for large page sets */
.pagination li.ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    color: #94a3b8;
    font-size: 1.6rem;
    font-weight: 600;
    pointer-events: none;
}

/* Mobile responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .pagination li a {
        min-width: 38px;
        height: 38px;
        padding: 6px 10px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    
    .pagination li:first-child a,
    .pagination li:last-child a {
        min-width: 42px;
    }
    
    .pagination li:first-child a span,
    .pagination li:last-child a span {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .kss-pagination-wrapper {
        margin-top: 32px;
    }
    
    .pagination {
        gap: 2px;
    }
    
    .pagination li a {
        min-width: 34px;
        height: 34px;
        padding: 4px 8px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
    
    .pagination li:first-child a,
    .pagination li:last-child a {
        min-width: 38px;
    }
}

/* Products Already in Cart Styling */
.kss-product-in-cart {
    border-color: rgba(109, 212, 0, 0.4) !important;
    box-shadow: 0 8px 30px rgba(109, 212, 0, 0.15), 0 2px 8px rgba(109, 212, 0, 0.08) !important;
}

.kss-product-in-cart::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(109, 212, 0, 0.3);
}

.kss-product-in-cart::after {
    content: '✓';
    position: absolute;
    top: 17px;
    right: 17px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 3;
    pointer-events: none;
}

.kss-add-to-cart-btn.kss-in-cart {
    background: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3) !important;
}

.kss-add-to-cart-btn.kss-in-cart:hover {
    background: linear-gradient(135deg, #065f46, #064e3b) !important;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4) !important;
}

.kss-quantity-input[data-in-cart="true"] {
    background: linear-gradient(145deg, rgba(109, 212, 0, 0.1), rgba(83, 164, 56, 0.05));
    border: 1px solid rgba(109, 212, 0, 0.3);
    color: #047857;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kss-shop-section {
        padding: 20px 15px;
    }
    
    .kss-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .kss-shop-title {
        font-size: 2.4rem;
    }
    
    .kss-product-image-container {
        height: 200px;
    }
    
    .kss-product-actions {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .kss-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .kss-product-card {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* Floating Shop Button */
.floating-shop-button {
    position: fixed;
    top: calc(45% + 140px); /* Position below the cart icon and add to cart button */
    right: 25px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #6dd400, #53a438);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(109, 212, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 998;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    overflow: hidden;
    animation: attractAttention 4s ease-in-out infinite, buttonEntrance 1.5s ease-out;
}

/* Add entrance animation */
@keyframes buttonEntrance {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
        right: -100px;
    }
    60% {
        transform: scale(1.3) rotate(90deg);
        opacity: 0.8;
        right: 15px;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        right: 25px;
    }
}

.floating-shop-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: floatingShine 2s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes attractAttention {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg); 
        box-shadow: 0 12px 35px rgba(109, 212, 0, 0.5);
    }
    25% { 
        transform: translateY(-8px) scale(1.05) rotate(-3deg); 
        box-shadow: 0 20px 50px rgba(109, 212, 0, 0.7);
    }
    50% { 
        transform: translateY(-5px) scale(1.1) rotate(0deg); 
        box-shadow: 0 25px 60px rgba(109, 212, 0, 0.8);
    }
    75% { 
        transform: translateY(-8px) scale(1.05) rotate(3deg); 
        box-shadow: 0 20px 50px rgba(109, 212, 0, 0.7);
    }
}

@keyframes floatingShine {
    0%, 100% { transform: translateX(-150%) rotate(45deg) scale(0.8); }
    50% { transform: translateX(150%) rotate(45deg) scale(1.2); }
}

.floating-shop-button i {
    font-size: 2.6rem;
    margin-bottom: 2px;
    z-index: 2;
    position: relative;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(-5deg); }
}

.shop-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.shop-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid rgba(109, 212, 0, 0.7);
    border-radius: 50%;
    animation: shopPulse 2.5s ease-out infinite;
}

@keyframes shopPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        border-width: 3px;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
        border-width: 2px;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        border-width: 1px;
    }
}

.floating-shop-button:hover {
    background: linear-gradient(135deg, #7be400, #5fb43e);
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 20px 50px rgba(109, 212, 0, 0.7);
    color: #ffffff;
    animation-play-state: paused; /* Pause attention animation on hover */
}

.floating-shop-button:hover .shop-pulse {
    animation-duration: 1.5s;
    border-color: rgba(123, 228, 0, 0.8);
}

.floating-shop-button:hover i {
    animation: iconExcited 0.6s ease-in-out infinite;
}

@keyframes iconExcited {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-2px) rotate(-8deg) scale(1.1); }
    75% { transform: translateY(-2px) rotate(8deg) scale(1.1); }
}

.floating-shop-button:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(109, 212, 0, 0.4);
}

/* Mobile responsive floating button */
@media (max-width: 768px) {
    .floating-shop-button {
        width: 55px;
        height: 55px;
        right: 20px;
    }
    
    .floating-shop-button i {
        font-size: 2rem;
    }
    
    .shop-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-shop-button {
        width: 50px;
        height: 50px;
        right: 15px;
        top: calc(45% + 120px);
    }
    
    .floating-shop-button i {
        font-size: 1.8rem;
        margin-bottom: 1px;
    }
    
    .shop-text {
        font-size: 0.8rem;
    }
}
