:root {

    --accent: #f26431;
    --accent-dark: #d14818;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --white: #ffffff;
    --dark-blue: black;
    --orange: #f26431;
    --accent-light: #ff8a5c;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-800: #343a40;
}


body{
    background: none;
}

.cc-header{
    padding: .8rem 0 !important;
}
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Basket Button Styles */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.basket-button {
    position: relative;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-dark);
    transition: transform 0.2s ease;
}

.basket-button:hover {
    transform: scale(1.1);
}

.basket-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    transform: translate(50%, -50%);
}

/* Basket Sidebar Styles */
.basket-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 12px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.basket-sidebar.active {
    right: 0;
}

.basket-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket-header h3 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-basket {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.close-basket:hover {
    color: var(--accent);
}

.basket-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.basket-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    transition: transform 0.2s ease;
}

.basket-item:hover {
    transform: translateX(-4px);
    border-color: var(--accent);
}

.basket-item-info {
    flex: 1;
    padding: 0 1rem;
}

.basket-item-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.basket-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--gray-200);
    color: var(--accent);
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #dc3545;
}

.basket-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
}

.clear-basket,
.submit-basket {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.clear-basket {
    background: var(--gray-100);
    color: var(--gray-700);
}

.clear-basket:hover {
    background: var(--gray-200);
    color: #dc3545;
}

.submit-basket {
    background: var(--accent);
    color: white;
}

.submit-basket:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Basket Modal Styles */
.basket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 20, 43, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.basket-modal.active {
    display: flex;
}

.basket-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.basket-modal h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.basket-form {
    display: grid;
    
    gap: 1rem;
}

.basket-form .form-group:last-of-type {
    grid-column: span 2;
}

.submit-request {
    grid-column: span 2;
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.submit-request:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.notification.active {
    transform: translateY(0);
    opacity: 1;
}

/* Back Button Styles */
.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: var(--gray-200);
    color: var(--accent);
    transform: translateX(-4px);
}

.custom-footer {
    margin-top: auto;
}
