/*
Theme Name: kfc theme
Author: Mutahir Hussain
Author URI: https://linkdin.com/in/mutahirhussain
Description: Custom theme for Temptation Indian restaurant
Version: 1.0
Text Domain: temptation
*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #FF0000 #f1f1f1;
}

    /* Custom Red Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
}


body.admin-bar .sidebar-menu {
    top: 32px;
    height: calc(100% - 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .sidebar-menu {
        top: 46px;
        height: calc(100% - 46px);
    }
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background-image: url('/wp-content/uploads/2025/09/bg.jpg');
    background-repeat: repeat;
    background-size: contain;
    background-attachment: fixed;
    overflow-x: hidden;
}

.product-modal-variations {
    margin-bottom: 25px;
}

.variation-group {
    margin-bottom: 20px;
}

.variation-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    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='currentColor' 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 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.variation-select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.variation-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-modal-add-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-modal-add-cart:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Responsive adjustments for variations */
@media (max-width: 768px) {
    .variation-group {
        margin-bottom: 15px;
    }
    
    .variation-select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .variation-select {
        padding: 8px 10px;
        font-size: 12px;
    }
}

.product-card-title {
    white-space: nowrap;
    text-overflow: ellipsis !important;
    overflow: hidden;
}
