/* Global Styles */

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #3f1a41;
    min-height: 100vh;
    font-weight: 400;
}


/* Admin Body Specific Styles */

body.admin-page {
    padding-left: 250px;
    /* Add padding to the body equal to sidebar width (250px) */
}


/* Admin Layout - Removed all admin layout styles from here */


/*

/* Header Styles */

.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Ensure header is on top */
    border-bottom: none;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    /* Increased height */
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
    margin-right: 2.5rem;
}

.logo-img {
    height: 145px;
    /* Larger logo */
    width: auto;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.nav-link {
    color: #3f1a41;
    text-decoration: none;
    font-weight: 500;
    /* Bolder */
    font-size: 2rem;
    /* Larger font */
    padding: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease, font-size 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #3f1a41;
    font-size: 2.2rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3f1a41;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-link,
.auth-link.register {
    background-color: white;
    border: 1px solid #3f1a41;
    color: #3f1a41;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 100%;
    transition: background-color 0.3s, color 0.3s;
}

.auth-link:hover,
.auth-link.register:hover {
    background-color: #3f1a41;
    color: #fff;
}

.icon-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.icon-link:hover {
    background-color: #eee;
}

.icon-img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.icon-link:hover .icon-img {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #3f1a41;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-dropdown {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.profile-dropdown:hover {
    background-color: #eee;
}

.profile-icon {
    cursor: pointer;
}

.profile-dropdown .profile-icon-img {
    height: 32px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background-color: white;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    border: 1px solid #eee;
    font-size: 0.9rem;
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #555;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #3f1a41;
}


/* Responsive Header */

@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
        height: 50px;
    }
    .header-left {
        gap: 1rem;
    }
    .nav-links {
        display: none;
    }
    .logo-img {
        height: 30px;
    }
    .header-right {
        gap: 1rem;
    }
    .auth-links {
        gap: 0.5rem;
    }
    .auth-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    .auth-link.register {
        padding: 0.3rem 0.8rem;
    }
    .header-icons {
        gap: 0.5rem;
    }
    .icon-img {
        width: 18px;
        height: 18px;
    }
    .cart-count {
        font-size: 0.6rem;
        width: 14px;
        height: 14px;
        top: -1px;
        right: -1px;
    }
    .profile-dropdown .dropdown-content {
        min-width: 140px;
        font-size: 0.85rem;
    }
}


/* Container and Layout */

body.shop-page {
    background-color: #3f1a41 !important;
}

.container {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

.main-content {
    background-color: white;
    border: none;
    margin: 0;
    padding: 0;
    gap: 0;
}


/* Footer Styles */

.footer {
    background-color: #ffffff;
    color: #1a1433;
    padding: 40px 20px;
    margin-top: auto;
}

.footer-col {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    padding: 0 1%;
}

.footer-col h4 {
    color: #1a1433;
    margin-bottom: 20px;
}

.footer-col a {
    color: #1a1433;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #3f1a41;
    /* Optional: Keep some personality in hover */
}

.footer-bottom {
    background-color: #ffffff;
    color: #1a1433;
    text-align: center;
}


/* Page Title */

.page-title {
    text-align: center;
    color: #3f1a41;
    margin-bottom: 40px;
}


/* Form Styles */

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group textarea,
.form-group select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* Focus state */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    outline: none;
    border-color: #3f1a41;
    box-shadow: 0 0 8px rgba(63, 26, 65, 0.3);
}

button {
    background-color: #3f1a41;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

button:hover {
    background-color: #2d1230;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(63, 26, 65, 0.3);
}


/* Shop Page Styles */

.shop-content {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 200px;
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-list {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
}


/* About Page Styles */

.about-section {
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}


/* Contact Page Styles - Ultra Minimalistic & Modern */

.contact-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 80vh;
}

.contact-page-title {
    font-size: 2rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-chat-container {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.contact-login-prompt {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    margin: 80px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-login-prompt a {
    color: #3f1a41;
    text-decoration: underline;
    font-weight: 400;
}

.chat-history-wrapper {
    margin-bottom: 60px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.chat-history {
    max-height: 400px;
    overflow-y: auto;
    padding: 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.chat-history::-webkit-scrollbar {
    width: 6px;
}

.chat-history::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.chat-history::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 3px;
}

.chat-history::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

.chat-message {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    max-width: 70%;
    position: relative;
}

.chat-message.customer {
    align-self: flex-end;
    align-items: flex-end;
    margin-left: auto;
}

.chat-message.admin {
    align-self: flex-start;
    align-items: flex-start;
    margin-right: auto;
}

.chat-message.system {
    align-self: center;
    text-align: center;
    color: #999999;
    background: none;
    max-width: 100%;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 60px 0;
}

.chat-message-content {
    background: #ffffff;
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
    position: relative;
}

.chat-message.customer .chat-message-content {
    border-color: #3f1a41;
}

.chat-message.admin .chat-message-content {
    background: #3f1a41;
    color: #ffffff;
    border-color: #3f1a41;
}

.chat-sender {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 8px;
}

.chat-message.admin .chat-sender {
    color: #cccccc;
}

.chat-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
    font-weight: 300;
    margin-bottom: 12px;
}

.chat-message.admin .chat-text {
    color: #ffffff;
}

.chat-timestamp {
    font-size: 0.7rem;
    color: #999999;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.chat-message.admin .chat-timestamp {
    color: #cccccc;
}

.chat-form-wrapper {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
}

.chat-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.chat-form-textarea-wrapper {
    flex: 1;
    position: relative;
}

.chat-form textarea {
    width: 100%;
    min-height: 80px;
    padding: 20px 0 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
    font-size: 1rem;
    color: #3f1a41;
    box-sizing: border-box;
    transition: all 0.4s ease;
    font-weight: 300;
    resize: vertical;
    font-family: inherit;
}

.chat-form textarea:focus {
    outline: none;
    border-bottom-color: #3f1a41;
    transform: translateY(-2px);
}

.chat-form textarea::placeholder {
    color: #cccccc;
    font-weight: 300;
}

.chat-form-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    color: #666666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-send-btn {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    align-self: flex-end;
    margin-bottom: 15px;
}

.chat-send-btn:hover {
    background-color: #2d1230;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 26, 65, 0.3);
}

.chat-send-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Contact Page Media Queries */

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 60px 20px;
    }
    .contact-page-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 60px;
    }
    .chat-history {
        padding: 30px 20px;
        max-height: 300px;
    }
    .chat-message {
        max-width: 85%;
    }
    .chat-form {
        flex-direction: column;
        gap: 20px;
    }
    .chat-send-btn {
        align-self: stretch;
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .contact-page-wrapper {
        padding: 40px 15px;
    }
    .contact-page-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .chat-history {
        padding: 20px 15px;
    }
    .chat-message {
        max-width: 95%;
    }
    .chat-message-content {
        padding: 15px 20px;
    }
    .chat-send-btn {
        padding: 15px 30px;
        font-size: 0.8rem;
    }
}


/* FAQ Page Styles */

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Login/Register Styles */

.login-container,
.register-container,
.forgot-password-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    /* Slightly more rounded */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* More pronounced shadow */
    border: 1px solid transparent;
    /* Add a border to transition */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* Highlight the container when any input inside is focused */

.login-container:focus-within,
.register-container:focus-within,
.forgot-password-container:focus-within {
    border-color: #3f1a41;
    /* Highlight color */
    box-shadow: 0 4px 15px rgba(63, 26, 65, 0.4);
    /* Highlight shadow */
}


/* Hero Section Styles */

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #3f1a41;
    color: white;
    margin-bottom: 40px;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: white;
    color: #3f1a41;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-buttons a:hover {
    background-color: #3f1a41;
    color: white;
}


/* Features Section */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Newsletter Section */

.stay-updated {
    text-align: center;
    padding: 40px 20px;
    background-color: #3f1a41;
    color: white;
    margin: 40px 0;
}

.stay-updated form {
    max-width: 500px;
    margin: 20px auto;
}

.stay-updated input[type="email"] {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.stay-updated button {
    width: 30%;
    padding: 10px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: #3f1a41;
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    .shop-content {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .header {
        flex-direction: column;
        padding: 10px;
    }
    .nav-links {
        margin: 10px 0;
    }
    .header-icons {
        margin-top: 10px;
    }
    /* Contact responsive styles */
    .contact-page-wrapper {
        padding: 60px 20px;
    }
    .contact-page-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 60px;
    }
    .chat-history {
        padding: 30px 20px;
        max-height: 300px;
    }
    .chat-message {
        max-width: 85%;
    }
    .chat-form {
        flex-direction: column;
        gap: 20px;
    }
    .chat-send-btn {
        align-self: stretch;
        text-align: center;
        margin-bottom: 0;
    }
}


/* Profile Dropdown Styles */

.profile-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.profile-dropdown .profile-icon-img {
    cursor: pointer;
    height: 32px;
    vertical-align: middle;
}

.profile-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    border-radius: 4px;
}

.profile-dropdown .dropdown-content a {
    color: #3f1a41;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0;
}

.profile-dropdown .dropdown-content a:hover {
    background-color: #ddd;
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}


/* Cart Page Styles */

.cart-container,
.checkout-container,
.order-confirmation-container,
.profile-container,
.orders-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    justify-content: space-between;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item .item-details {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.cart-item .item-details img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.cart-item .item-quantity,
.cart-item .item-total,
.cart-item .item-actions {
    margin-left: 20px;
    text-align: center;
}

.cart-item .item-quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
}

.cart-summary {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: right;
}

.cart-total {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-actions .button {
    margin-left: 10px;
}


/* Checkout Page Styles */

.checkout-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.checkout-shipping,
.checkout-summary {
    flex: 1;
    min-width: 300px;
}

.address-list .address-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.address-list .address-item:hover {
    border-color: #3f1a41;
}

.address-list .address-item.default {
    border-color: #3f1a41;
    border-width: 2px;
}

.address-list .address-item input[type="radio"] {
    margin-right: 10px;
}

.address-list .address-item label pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: inherit;
}

.payment-methods .payment-method {
    margin-bottom: 15px;
}

.summary-items .summary-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.summary-items .summary-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.summary-items .summary-item .item-details {
    flex-grow: 1;
}

.summary-items .summary-item .item-price {
    font-weight: bold;
}

.summary-total {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    text-align: right;
}

.summary-actions {
    margin-top: 20px;
    text-align: right;
}


/* Order Confirmation Page Styles */

.confirmation-message {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #e9f5e9;
    border: 1px solid #a8d5a8;
    border-radius: 4px;
    color: #2a7d2e;
}

.order-details-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.order-details-summary th,
.order-details-summary td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.order-details-summary th {
    background-color: #f2f2f2;
}

.shipping-details {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.shipping-details pre {
    margin: 5px 0;
    white-space: pre-wrap;
    font-family: inherit;
}

.confirmation-actions {
    margin-top: 30px;
    text-align: center;
}


/* Profile Page Styles */

.profile-container h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3f1a41;
}


/* Orders Page Styles */

.orders-container table {
    width: 100%;
    border-collapse: collapse;
}

.orders-container th,
.orders-container td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.orders-container th {
    background-color: #f2f2f2;
}

.orders-container tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* Order Details Page Styles */

.order-details-container .order-summary-section,
.order-details-container .shipping-details-section,
.order-details-container .order-items-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.order-details-container h3 {
    color: #3f1a41;
    margin-top: 0;
    margin-bottom: 15px;
}

.order-details-container .order-summary-section p,
.order-details-container .shipping-details-section p {
    margin-bottom: 10px;
}

.order-details-container .shipping-details-section pre {
    margin: 5px 0;
    white-space: pre-wrap;
    font-family: inherit;
}

.order-details-container .order-items-section table {
    width: 100%;
    border-collapse: collapse;
}

.order-details-container .order-items-section th,
.order_details_container .order-items-section td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.order-details_container .order-items-section th {
    background-color: #f2f2f2;
}

.order-details-container .order-items-section tr:nth-child(even) {
    background-color: #f9f9f9;
}

.order-details-container .order-item-details {
    display: flex;
    align-items: center;
}

.order-details-container .order-item-details img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.order-details-container .back-link {
    text-align: center;
    margin-top: 30px;
}


/* Profile Page Redesign - Minimalistic Styles */

.profile-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-page-title {
    font-size: 2.5rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.profile-main-container {
    background-color: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 60px;
}

.profile-form {
    width: 100%;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.profile-form-section {
    background-color: #ffffff;
}

.profile-section-title {
    font-size: 1.4rem;
    color: #3f1a41;
    margin-bottom: 30px;
    font-weight: 300;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.profile-form-group {
    margin-bottom: 25px;
}

.profile-form-group label {
    display: block;
    font-size: 0.9rem;
    color: #3f1a41;
    margin-bottom: 8px;
    font-weight: 400;
}

.profile-form-group input[type="text"],
.profile-form-group input[type="email"],
.profile-form-group input[type="password"] {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
    font-size: 1rem;
    color: #3f1a41;
    box-sizing: border-box;
    transition: border-bottom-color 0.3s ease;
}

.profile-form-group input[type="text"]:focus,
.profile-form-group input[type="email"]:focus,
.profile-form-group input[type="password"]:focus {
    outline: none;
    border-bottom-color: #3f1a41;
    box-shadow: none;
}

.profile-form-actions {
    text-align: center;
    margin-top: 40px;
}

.profile-save-btn {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

.profile-save-btn:hover {
    background-color: #2d1230;
}

.profile-cancel-btn {
    background-color: transparent;
    color: #3f1a41;
    padding: 12px 40px;
    border: 1px solid #3f1a41;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    margin-left: 15px;
}

.profile-cancel-btn:hover {
    background-color: #3f1a41;
    color: #ffffff;
}


/* Address Management Section */

.address-management-section {
    margin-top: 80px;
}

.address-section-title {
    font-size: 1.8rem;
    color: #3f1a41;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
}

.address-list {
    margin-bottom: 40px;
}

.no-addresses-message {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    margin: 40px 0;
}

.address-item {
    border: 1px solid #f0f0f0;
    padding: 25px;
    margin-bottom: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.address-item:hover {
    border-color: #e0e0e0;
}

.address-item.default {
    border-color: #3f1a41;
    border-width: 1px;
}

.address-header {
    margin-bottom: 15px;
}

.address-label {
    font-size: 1rem;
    color: #3f1a41;
    font-weight: 500;
}

.address-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address-text {
    flex: 1;
    line-height: 1.6;
    color: #3f1a41;
    font-size: 0.95rem;
}

.address-actions {
    display: flex;
    gap: 10px;
}

.address-action-btn {
    background-color: transparent;
    color: #3f1a41;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.address-action-btn:hover {
    background-color: #f0f0f0;
    color: #3f1a41;
    border-color: #3f1a41;
}

.address-action-btn.delete:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.add-address-btn {
    background-color: transparent;
    color: #3f1a41;
    padding: 12px 30px;
    border: 1px solid #3f1a41;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    display: block;
    margin: 0 auto;
}

.add-address-btn:hover {
    background-color: #3f1a41;
    color: #ffffff;
}


/* Add Address Form */

.add-address-form {
    margin-top: 40px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.add-address-title {
    font-size: 1.3rem;
    color: #3f1a41;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.address-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-bottom: 25px;
}

.checkbox-group {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    color: #3f1a41;
    font-size: 0.95rem;
}

.address-form-actions {
    text-align: center;
    margin-top: 30px;
}

.error-message {
    text-align: center;
    color: #ff0000;
    font-size: 1rem;
    margin: 40px 0;
}


/* Modern Page Styles - Consistent Theme */


/* Login/Register Modern Styles */

.login-page-wrapper,
.register-page-wrapper,
.forgot-password-page-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-page-title,
.register-page-title,
.forgot-password-page-title {
    font-size: 2rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.modern-form {
    width: 100%;
}

.modern-form-group {
    margin-bottom: 40px;
    position: relative;
}

.modern-form-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    color: #3f1a41;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-form-input {
    width: 100%;
    padding: 20px 0 15px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
    font-size: 1rem;
    color: #3f1a41;
    box-sizing: border-box;
    transition: all 0.4s ease;
    font-weight: 400;
}

.modern-form-input:focus {
    outline: none;
    border-bottom-color: #3f1a41;
    transform: translateY(-2px);
}

.modern-form-input::placeholder {
    color: #cccccc;
    font-weight: 300;
}

.modern-form-btn {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 18px 0;
    width: 100%;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.modern-form-btn:hover {
    background-color: #2d1230;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 26, 65, 0.3);
}

.modern-form-links {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 300;
}

.modern-form-links a {
    color: #3f1a41;
    text-decoration: underline;
    font-weight: 400;
}


/* Cart Page Modern Styles */

.cart-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

.cart-page-title {
    font-size: 2.5rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cart-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.cart-items-section {
    background: #ffffff;
}

.cart-summary-section {
    background: #fafafa;
    padding: 40px;
    border: 1px solid #f0f0f0;
    align-self: flex-start;
    position: sticky;
    top: 120px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.cart-item-info h3 {
    color: #3f1a41;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.cart-item-price {
    color: #3f1a41;
    font-size: 1.2rem;
    font-weight: 500;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-quantity-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    color: #3f1a41;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-quantity-btn:hover {
    border-color: #3f1a41;
    background: #3f1a41;
    color: #ffffff;
}

.cart-quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px;
    font-size: 1rem;
    color: #3f1a41;
}

.cart-remove-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #999999;
    padding: 8px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-remove-btn:hover {
    border-color: #ff4444;
    background: #ff4444;
    color: #ffffff;
}

.cart-summary-title {
    font-size: 1.4rem;
    color: #3f1a41;
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666666;
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #3f1a41;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.cart-checkout-btn {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 18px 0;
    width: 100%;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-checkout-btn:hover {
    background-color: #2d1230;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 26, 65, 0.3);
}

.cart-continue-shopping {
    text-align: center;
    margin-top: 40px;
}

.cart-continue-shopping a {
    color: #3f1a41;
    text-decoration: underline;
    font-weight: 300;
    letter-spacing: 1px;
}


/* Checkout Page Modern Styles */

.checkout-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

.checkout-page-title {
    font-size: 2.5rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.checkout-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.checkout-form-section {
    background: #ffffff;
}

.checkout-summary-section {
    background: #fafafa;
    padding: 40px;
    border: 1px solid #f0f0f0;
    align-self: flex-start;
    position: sticky;
    top: 120px;
}

.checkout-section-title {
    font-size: 1.4rem;
    color: #3f1a41;
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.checkout-address-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.checkout-address-card {
    border: 1px solid #e0e0e0;
    padding: 25px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkout-address-card:hover {
    border-color: #3f1a41;
}

.checkout-address-card.selected {
    border-color: #3f1a41;
    border-width: 2px;
}

.checkout-radio-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.checkout-address-card.selected .checkout-radio-custom {
    border-color: #3f1a41;
    background: #3f1a41;
}

.checkout-address-card.selected .checkout-radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}

.checkout-payment-section {
    margin-top: 40px;
}

.checkout-payment-method {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-payment-method:hover {
    border-color: #3f1a41;
}

.checkout-payment-method.selected {
    border-color: #3f1a41;
    background: #fafafa;
}

.checkout-place-order-btn {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 20px 0;
    width: 100%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
}

.checkout-place-order-btn:hover {
    background-color: #2d1230;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 26, 65, 0.3);
}


/* Orders Page Modern Styles */

.orders-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

.orders-page-title {
    font-size: 2.5rem;
    color: #3f1a41;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.orders-grid {
    display: grid;
    gap: 30px;
}

.order-card {
    border: 1px solid #f0f0f0;
    padding: 30px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.order-card-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.order-info h3 {
    color: #3f1a41;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.confirmed {
    background: #d4edda;
    color: #155724;
}

.order-status.shipped {
    background: #d1ecf1;
    color: #0c5460;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-total {
    color: #3f1a41;
    font-size: 1.3rem;
    font-weight: 500;
}

.order-items-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.order-item-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item-preview img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.order-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.order-action-btn {
    background: transparent;
    border: 1px solid #3f1a41;
    color: #3f1a41;
    padding: 10px 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-action-btn:hover {
    background: #3f1a41;
    color: #ffffff;
}


/* Order Details Modern Styles */

.order-details-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
    min-height: 70vh;
}

.order-details-header {
    text-align: center;
    margin-bottom: 60px;
}

.order-details-title {
    font-size: 2rem;
    color: #3f1a41;
    margin-bottom: 10px;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.order-info-section {
    background: #fafafa;
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.order-info-title {
    font-size: 1.3rem;
    color: #3f1a41;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-info-label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-info-value {
    color: #3f1a41;
    font-weight: 400;
}

.order-items-section {
    background: #ffffff;
}

.order-items-title {
    font-size: 1.4rem;
    color: #3f1a41;
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.order-item-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.order-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.order-item-details h4 {
    color: #3f1a41;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.order-item-price {
    color: #3f1a41;
    font-size: 1.1rem;
    font-weight: 500;
}


/* Modern Responsive Design */

@media (max-width: 968px) {
    .cart-content-grid,
    .checkout-content-grid,
    .order-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cart-summary-section,
    .checkout-summary-section,
    .order-info-section {
        position: static;
    }
    .cart-item-card {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    .cart-quantity-controls,
    .cart-remove-btn {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 15px;
    }
    .order-card-header {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .order-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .login-page-wrapper,
    .register-page-wrapper,
    .cart-page-wrapper,
    .checkout-page-wrapper,
    .orders-page-wrapper,
    .order-details-page-wrapper {
        padding: 60px 20px;
    }
    .cart-page-title,
    .checkout-page-title,
    .orders-page-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .order-items-preview {
        grid-template-columns: 1fr;
    }
    .order-info-grid {
        grid-template-columns: 1fr;
    }
}


/* Section Background Variations */

.section-light {
    background-color: #fafafa;
    padding: 80px 0;
}

.section-theme {
    background-color: #3f1a41;
    color: #ffffff;
    padding: 80px 0;
}

.section-theme h1,
.section-theme h2,
.section-theme h3 {
    color: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #3f1a41 0%, #2d1230 100%);
    color: #ffffff;
    padding: 80px 0;
}

.section-accent h1,
.section-accent h2,
.section-accent h3 {
    color: #ffffff;
}


/* Card Variations */

.card-elevated {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(63, 26, 65, 0.1);
    border-radius: 8px;
    padding: 40px;
    margin: 20px 0;
}

.card-theme {
    background: #3f1a41;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(63, 26, 65, 0.3);
    border-radius: 8px;
    padding: 40px;
    margin: 20px 0;
}


/* Toast Notification Styles */

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: none;
    min-width: 300px;
    max-width: 450px;
    padding: 14px 24px;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    background: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s, right 0.4s, top 0.3s;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    word-wrap: break-word;
}

.toast.show {
    right: 20px !important;
    /* Slide into view */
}

.toast.success {
    background-color: #27ae60;
    border-left: 4px solid #219a52;
}

.toast.error {
    background-color: #e74c3c;
    border-left: 4px solid #c0392b;
}

.toast.info {
    background-color: #3498db;
    border-left: 4px solid #2980b9;
}

.toast.warning {
    background-color: #f39c12;
    border-left: 4px solid #e67e22;
}

.toast button {
    background: none !important;
    border: none !important;
    color: inherit !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-left: 10px !important;
    cursor: pointer !important;
    padding: 0 5px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: opacity 0.3s ease !important;
    flex-shrink: 0;
}

.toast button:hover {
    opacity: 0.7 !important;
    background: none !important;
    color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}


/* Toast stacking */

.toast:not(:first-of-type) {
    bottom: calc(20px + (80px * var(--toast-index, 0)));
}


/* Large screens */

@media (min-width: 1920px) {
    .toast {
        right: -500px;
        min-width: 350px;
        max-width: 500px;
    }
    .toast.show {
        right: 20px;
    }
}

@media (min-width: 1400px) and (max-width: 1919px) {
    .toast {
        right: -500px;
        min-width: 350px;
        max-width: 450px;
    }
    .toast.show {
        right: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1399px) {
    .toast {
        right: -500px;
        min-width: 300px;
        max-width: 400px;
    }
    .toast.show {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .toast {
        right: -100%;
        left: 10px;
        max-width: calc(100vw - 20px);
        min-width: auto;
    }
    .toast.show {
        right: auto;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .toast {
        bottom: 10px;
        right: -100%;
        left: 5px;
        max-width: calc(100vw - 10px);
        min-width: auto;
        font-size: 13px;
        padding: 12px 16px;
    }
    .toast.show {
        right: auto;
        left: 5px;
    }
    .toast:not(:first-of-type) {
        bottom: calc(10px + (70px * var(--toast-index, 0)));
    }
}


/* End Toast Styles */