:root {
    --primary: #ff2c68;
    --primary-dark: #e6215e;
    --secondary: #009dff;
    --accent: #d9f219;
    --dark: #0c0e0f;
    --dark-light: #1a1a1a;
    --text: #ffffff;
    --text-light: #aaaaaa;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
}

/* ---- seller details ----------  */

.googleAuthbtn {
    height: 54px;
}

.form-section {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.btn-custom {
    background-color: var(--primary);
    color: white;
    height: 54px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-secondary.prev-btn {
    height: 54px;
    display: inline-flex;
    justify-content: center;
    align-items: center;

}

.btn-custom:hover {
    background-color: var(--primary-dark);
}

.form-label {
    font-weight: 500;
}

.sellerAuth {
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.form-section {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.stepper {
    color: gray;
}

.stepper li {
    display: inline-block;
    margin-right: 1rem;
    font-weight: 500;
    color: gray;
}

.stepper .active {
    color: var(--primary);

}


select.form-select {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

select.form-select option {
    background: #000;
    color: #fff;
}

select.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}



.preview-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}


/* --profile-setup ---------  */


.seller-form-container {
    background-color: var(--dark-light);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.form-title {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 30px;
}

.form-label {
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: var(--text-light);
}

.animation-container {
    max-width: 400px;
    margin: 0 auto;
}

.animation-caption {
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

.user-type-toggle {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.user-type-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.user-type-toggle input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    transition: all 0.2s;
}

.user-type-toggle input[type="radio"]:checked {
    border-color: var(--primary);
    background-color: var(--primary);
}

.user-type-toggle span {
    color: var(--text-light);
}

.user-type-toggle input[type="radio"]:checked+span {
    color: var(--text);
}

.file-preview {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.file-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.error-message {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.language-selector {
    margin-top: 30px;
    text-align: center;
}

.language-selector select {
    background-color: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 8px 15px;
    border-radius: 5px;
}

/* --- Seller Dashboard details -------   */


.sidebar {
    height: 100vh;
    background: var(--dark-light);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 250px;
    transition: all 0.3s;
}

.sidebar .nav-link {
    color: var(--text-light);
    padding: 12px 20px;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background: var(--primary);
    color: var(--text);
    border-radius: 5px;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
    background-color: var(--dark);
}

/* .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    background-color: var(--dark-light);
    color: var(--text);
}

.card:hover {
    transform: scale(1.02);
} */

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--text);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), #c01a4e);
    color: var(--text);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #555;
    border-radius: 15px;
    cursor: pointer;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--text);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}

.toggle-switch.active {
    background: var(--success);
}

.toggle-switch.active::before {
    left: 32px;
}

.navbar {
    background-color: var(--dark-light) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar-brand,
.navbar-text {
    color: var(--text) !important;
}

.nav-link {
    color: var(--text-light);
}

.dropdown-menu {
    background-color: var(--dark-light);
    border: 1px solid #333;
}

.dropdown-item {
    color: var(--text-light);
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--text);
}

.table {
    color: var(--text);
    background-color: var(--dark-light);
}

.table thead tr th,
.table tbody tr td {
    color: var(--text);
    background-color: #0d0d0d;
    border-bottom: 1px solid #4f4f4f;
    font-size: 14px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
}

.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
}

.text-muted {
    color: var(--text-light) !important;
}

@media (max-width: 768px) {
    .sidebar {
        width: 0;
        overflow: hidden;
    }

    .sidebar.active {
        width: 250px;
    }

    .main-content {
        margin-left: 0;
    }
}

.table-responsive {
    padding: 20px;
    background-color: #0d0d0d;
    border-radius: 10px;
}

.headerDropDownBtn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headerDropDownBtn:hover::after {
    content: unset;
}

.headerDropdownBtnWrap svg {
    width: 20px;
    height: 20px;
}

.userHeaderImg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.headerDropdownBtnWrap {
    white-space: nowrap;
}

.headerDropdownBtnWrap .dropdown-content {
    left: unset;
    right: 0;
    top: 100%;
    min-width: 100%;
}

/* type select input */
.combobox-container {
    position: relative;
    width: 100%;
}

.combobox-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    cursor: text;
}

.combobox-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.combobox-input.has-options {
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.combobox-container.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.options-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.combobox-container.open .options-dropdown {
    display: block;
}

.option-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    /* background-color: #f8f9fa; */
    color: var(--primary);
}

/* .option-item.highlighted {
    background-color: #667eea;
    color: white;
} */

.option-item.no-results {
    color: #999;
    cursor: default;
    font-style: italic;
}

.option-item.no-results:hover {
    background-color: transparent;
}

.option-text {
    flex: 1;
}

.option-badge {
    /* background: #e3f2fd;
    color: #1976d2; */
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.options-dropdown .option-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Custom option indicator */
.custom-option-indicator {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #4caf50;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    display: none;
}

.combobox-input.custom-value+.custom-option-indicator {
    display: block;
}

.colorInput {
    height: 50px;
    padding: 0;
}

.colorInput[type="color"]::-webkit-color-swatch {
    border: none;
}

.specificationInputsWrap {
    display: flex;
    align-items: start;
    gap: 24px;
}

.specificationInputsWrap .form-group {
    flex: 1;
}

.specificationAddRemoveBtns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 31px;
}

.specificationAddRemoveBtns button {
    width: 45px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: unset;
    color: white;
    padding: 8px;
    border-radius: 8px;
}

.specificationAddRemoveBtns .specificationRemoveBtn {
    color: var(--primary);
}

.select2-container--default .select2-selection--multiple {
    width: 100%;
    padding: 6px 15px 10px !important;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.select2-dropdown {
    background-color: black !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.select2-container--default .select2-results__option {
    background-color: unset !important;
    color: gray !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: unset !important;
    color: var(--primary) !important;
}

.select2-container--default .select2-results__option--selected {
    color: var(--primary) !important;
}

.productImgWrap {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.multiSelectWrap {
    position: relative;
}

.multiSelectArrowIcon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.multiSelectArrowIcon svg {
    width: 20px;
    height: 20px;
}

.topReview {
    display: flex;
    justify-content: space-between;
}

.reviewLeftPadding {
    padding: 0px 57px;
}

.productImg {
    max-height: 430px;
}

.owl-carousel .item {
    text-align: center;
    padding: 10px;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.productImgWrap {
    width: 50%;
    max-width: 40%;
}

/* .sellercontent {
    width: calc(100% - 260px);
} */

.owl-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    bottom: 300px;
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
}

.owl-nav .owl-prev {
    background: #ffffff4d !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    align-items: center;
}

.owl-nav .owl-next {
    background: #ffffff4d !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    align-items: center;

}
.owl-carousel .owl-item img {
    height: 430px;
}
.reviewMediaWrap{
    display: flex;
    gap: 10px;
}