@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #43A047;
    --primary-dark: #E55A2B;
    --secondary: #2D3047;
    --accent: #FFD166;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --danger: #43A047;
    --border: #DEE2E6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shopper_account {
    width: unset;
    min-width: 80%;
    max-width: 80%;
}

@media(max-width:768px) {
    .shopper_account {
        max-width: 90%;
    }
}

.footer_header {
    background: linear-gradient(135deg, #9C7C38 0%, #F2D57E 50%, #9C7C38 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 40px;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 250px;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.toast.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.toast.warning {
    background: linear-gradient(135deg, #f39c12, #d35400);
}

.toast.info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.toast-content {
    flex: 1;
    margin-right: 10px;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

.toast-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.modal input[type="tel"] {
    font-family: monospace;
    letter-spacing: 1px;
}

.text {
    color: #fff;
    margin-top: 30px;
}

.get_in_touch_wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    font-size: 20px;
}

@media(max-width:768px){
    .get_in_touch_wrapper {
        display: flex;
        flex-direction: column;
    }
    .footer_header {
        font-size: 25px;
        text-align: center;
    }

    .get_in_touch_wrapper a {
        font-size: 16px;
    }
}

.get_in_touch_wrapper a {
    color: #fff;
    text-decoration: none;
}

.get_in_touch_wrapper a:hover {
    text-decoration: underline;
}

.password-toggle-btn {
    background-color: transparent;
    border: none;
    margin-top: 30px;
    cursor: pointer;
}