@charset "UTF-8";
/*
Theme Name: Why Scientific Comics
Theme URI: https://www.cisin.com/
Author: the WordPress team
Author URI: https://www.cisin.com/
Description: It is a modern and engaging WordPress theme designed specifically for educational comic websites. Tailored for students and young readers, this theme offers a visually rich and interactive interface to explore, preview, and purchase educational comics. With a focus on readability and seamless browsing, EduComics features responsive design, intuitive navigation, and integrated e-commerce functionality, making it easy for users to discover and buy comics that support learning in a fun and creative way.
Perfect for schools, learning platforms, and educational publishers, EduComics blends the power of storytelling with education—one panel at a time.
Tested up to: 6.8
Requires at least: 4.7
Requires PHP: 5.2.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, block-patterns
*/

 
/** STEP FORM CSS STARTS HERE   **/

.stepForm_container .stepHeader {
    max-width: 575px;
    margin: 0 auto;
}

.stepForm_container .step-wrapper {
    z-index: 1;
    transition: all 0.3s linear;
}

.stepForm_container * {
    transition: all 0.3s linear;
}

.stepForm_container .step-wrapper li .stepCount {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: #CCCCCC;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stepForm_container .step-wrapper li {
    min-width: 155px;
    text-align: center;
    cursor: pointer;
}

.stepForm_container .step-wrapper li .stepCount {
    border: 5px solid #CCCCCC;
    border-radius: 50%;
    background: #fff;
}

.stepForm_container .stepIcon {
    filter: grayscale(1);
}

.stepForm_container .completedIcon {
    display: none;
}

.stepForm_container .step-wrapper li.active .stepCount {
    border-color: #FFA909;
    transition: border 0.3s;
    animation: blink 1s infinite alternate;
}

.stepForm_container .step-wrapper li.active .stepCount .stepIcon {
    filter: none;
}

.stepForm_container .step-wrapper li.completed .stepCount {
    border-color: #0AA82D;
    transition: border 0.3s;
}

.stepForm_container .step-wrapper li.completed .stepCount .stepIcon {
    display: none;
}

.stepForm_container .step-wrapper li.completed .completedIcon {
    display: block;
}

.stepForm_container .progress-bar {
    width: 68%;
    height: 2px;
    background: #CCCCCC;
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stepForm_container .progress {
    height: 100%;
    width: 0%;
    /* background: #FFA909; */
    position: absolute;
    transition: width 0.3s;
    display: none;
}

.stepForm_container .content {
    display: none;
}

.stepForm_container .content.active {
    display: block;
    animation: fadeUp 0.3s ease-in-out;
}

/* avatar select css  */

.stepForm_container .avatar-wrapper {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    width: 110px;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stepForm_container .avatar-wrapper.selected {
    background: #FFF7E6;
    border-color: #FFB800;
}

.stepForm_container .avatar-wrapper.selected::before {
    content: attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(254 184 53 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.stepForm_container .avatar-wrapper:hover {
    transform: translateY(-2px);
}

.stepForm_container .avatar-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.stepForm_container .avatar-label {
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.stepForm_container .avatar-label img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


@keyframes blink {
    from {
        box-shadow: none;
    }

    to {
        box-shadow: 0px 0px 8px 10px #ffa90938;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
    
}

/** STEP FORM CSS ENDS HERE   **/



/**SIGNUP CSS STARTS HERE **/

.btn.continue:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .button2:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Style the Select2 container */
    .select2-container--default .select2-selection--multiple,
    .select2-container--default .select2-selection--single {
        padding: 12px 15px;
        border-radius: 10px;
        border: 2px solid #eee;
        transition: 0.3s;
        position: relative;
        flex: 1 1 auto;
        width: 100% !important;
        min-width: 0;
        background-color: white;
    }

    /* Adjust text color and spacing inside select */
    .select2-container--default .select2-selection__rendered {
        color: #495057;
        line-height: 1.5;
    }

    /* Style the arrow (dropdown icon) */
    .select2-container--default .select2-selection__arrow {
        height: 100%;
        right: 10px;
    }

    /* Remove outline and style focus state */
    .select2-container--default.select2-container--focus .select2-selection--multiple,
    .select2-container--default.select2-container--focus .select2-selection--single {
        border-color: #ccc;
        outline: none;
    }

    /* Style the dropdown list items */
    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #f0f0f0;
        color: #333;
    }

    .stepForm_container .step-wrapper li.active .stepCount {
    border-color: #FFA909;
    transition: border 0.3s;
    animation: blink 1s infinite alternate;
}

/**SIGNUP CSS ENDS HERE **/



/** HOME PAGE CUSTOM CSS  **/

   /* Popup Overlay */
    .popup-overlay {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.85);
        justify-content: center;
        align-items: center;
    }

    /* Popup Box */
    .popup-content {
        background-color: #111;
        /* black background */
        color: #fff;
        padding: 90px 90px 90px 90px;
        max-width: 600px;
        width: 100%;
        position: relative;
        font-family: Arial, sans-serif;
    }

    /* Close button (X) */
    .popup-close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    /* Title */
    .popup-title {
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        border-width: 0px 0px 0px 0px;
        border-style: solid;
        border-radius: 0px 0px 0px 0px;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        font: 700 64px / 78px Titillium Web;
        font-style: normal;
        letter-spacing: 18px;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
    }

    /* Subtitle */
    .popup-subtitle {
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        border-width: 0px 0px 0px 0px;
        border-style: solid;
        border-radius: 0px 0px 0px 0px;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
        font: 700 14px / 18px Roboto;
        font-style: normal;
        letter-spacing: 0px;
        text-transform: none;
        text-decoration: none;
        text-align: left;
    }

    /* Description */
    .popup-description {
        margin: 20px 0;
        font-size: 16px;
    }

    /* Button */
    .popup-btn {
        background-color: #cc8534;
        color: #fff;
        padding: 12px 25px;
        border: none;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 1px;
        border-radius: 3px;
        display: inline-block;
        transition: background 0.3s ease;
    }

    .popup-btn:hover {
        background-color: #b4722c;
        color: #fff;
    }

    .hustle-group-content {
        font-size: 16px;
        line-height: 26px;
        margin: 30px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        border-width: 0px 0px 0px 0px;
        border-style: solid;
    }

    .hustle-cta-container {
        justify-content: center;
        display: flex;
        flex-direction: unset;
        margin: 20px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        border-width: 0px 0px 0px 0px;
        border-style: solid;
    }

    .open-popup-btn {
        cursor: pointer;
        text-decoration: none;
    }

/** HOME PAGE CUSTOM CSS  **/


/** SINGLE PRODUCTS CUSTOM CSS STARTS HERE **/

.comic-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .comic-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .comic-card img {
        border-radius: 8px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    /* .comic-card:hover img {
    transform: scale(1.05);
} */

    .comic-card h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--lt-black);
    }

    .comic-card .product-meta .badge {
        font-size: 12px;
        padding: 5px 10px;
        margin-right: 5px;
    }

    .comic-card .product-rating .stars {
        color: #ffc107;
        font-size: 14px;
    }

    .comic-card .product-actions {
        margin-top: 15px;
    }

    .comic-card .product-actions .btn {
        padding: 8px 15px;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        margin-bottom: 10px;
    }

    .comic-card .product-actions .btn:last-child {
        margin-bottom: 0;
    }
/** SINGLE PRODUCTS CUSTOM CSS ENDS HERE **/


/** HEADER CART CSS  **/
.header-cart {
		position: relative;
		display: inline-block;
		font-size: 20px;
		margin-right: 15px;
	}

	.header-cart .cart-count {
		background: red;
		color: white;
		font-size: 12px;
		padding: 2px 6px;
		border-radius: 50%;
		position: absolute;
		top: -10px;
		right: -10px;
	}

	/* Popup Overlay */
	.popup-overlay {
		display: none;
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.85);
		justify-content: center;
		align-items: center;
	}

	/* Popup Box */
	.popup-content {
		background-color: #111;
		/* black background */
		color: #fff;
		padding: 90px 90px 90px 90px;
		max-width: 600px;
		width: 100%;
		position: relative;
		font-family: Arial, sans-serif;
	}

	/* Close button (X) */
	.popup-close {
		position: absolute;
		top: 10px;
		right: 20px;
		font-size: 28px;
		color: #fff;
		cursor: pointer;
	}

	/* Title */
	.popup-title {
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		border-width: 0px 0px 0px 0px;
		border-style: solid;
		border-radius: 0px 0px 0px 0px;
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		-moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		font: 700 64px / 78px Titillium Web;
		font-style: normal;
		letter-spacing: 18px;
		text-transform: uppercase;
		text-decoration: none;
		text-align: center;
	}

	/* Subtitle */
	.popup-subtitle {
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		border-width: 0px 0px 0px 0px;
		border-style: solid;
		border-radius: 0px 0px 0px 0px;
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		-moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		font: 700 14px / 18px Roboto;
		font-style: normal;
		letter-spacing: 0px;
		text-transform: none;
		text-decoration: none;
		text-align: left;
	}

	/* Description */
	.popup-description {
		margin: 20px 0;
		font-size: 16px;
	}

	/* Button */
	.popup-btn {
		background-color: #cc8534;
		color: #fff;
		padding: 12px 25px;
		border: none;
		text-decoration: none;
		font-weight: bold;
		font-size: 14px;
		letter-spacing: 1px;
		border-radius: 3px;
		display: inline-block;
		transition: background 0.3s ease;
	}

	.popup-btn:hover {
		background-color: #b4722c;
		color: #fff;
	}

	.hustle-group-content {
		font-size: 16px;
		line-height: 26px;
		margin: 30px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		border-width: 0px 0px 0px 0px;
		border-style: solid;
	}

	.hustle-cta-container {
		justify-content: center;
		display: flex;
		flex-direction: unset;
		margin: 20px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		border-width: 0px 0px 0px 0px;
		border-style: solid;
	}

	.open-popup-btn {
		cursor: pointer;
		text-decoration: none;
	}


/** HEADER CART CSS ENDS HERE  **/



/*** USERDASHBOARD CSS STARTS HERE  ***/
  /* avatar select css  */

  .stepForm_container .avatar-wrapper {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    width: 110px;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .stepForm_container .avatar-wrapper.selected {
    background: #FFF7E6;
    border-color: #FFB800;
  }

  .stepForm_container .avatar-wrapper.selected::before {
    content: attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(254 184 53 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
  }

  .stepForm_container .avatar-wrapper:hover {
    transform: translateY(-2px);
  }

  .stepForm_container .avatar-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .stepForm_container .avatar-label {
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .stepForm_container .avatar-label img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }


  @keyframes blink {
    from {
      box-shadow: none;
    }

    to {
      box-shadow: 0px 0px 8px 10px #ffa90938;
    }
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }

  }

  /* Style the Select2 container */
  .select2-container--default .select2-selection--multiple,
  .select2-container--default .select2-selection--single {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: 0.3s;
    position: relative;
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0;
    background-color: white;
  }

  /* Adjust text color and spacing inside select */
  .select2-container--default .select2-selection__rendered {
    color: #495057;
    line-height: 1.5;
  }

  /* Style the arrow (dropdown icon) */
  .select2-container--default .select2-selection__arrow {
    height: 100%;
    right: 10px;
  }

  /* Remove outline and style focus state */
  .select2-container--default.select2-container--focus .select2-selection--multiple,
  .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #ccc;
    outline: none;
  }

  /* Style the dropdown list items */
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f0f0f0;
    color: #333;
  }


/* Dashboard Styles */
.dashboard-sec {
    background-color: var(--lightPurple);
    min-height: calc(100vh - 200px);
    position: relative;
    padding: 40px 0;
}

.dashboard-sidebar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    height: fit-content;
    z-index: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard-content {
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.dashboard-menu .nav-link {
    color: var(--lt-black);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dashboard-menu .nav-link:hover,
.dashboard-menu .nav-link.active {
    background-color: var(--purple);
    color: white;
}

.dashboard-menu .nav-link i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.stats-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card .card-body {
    padding: 20px;
}

.stats-card h6 {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.stats-card h3 {
    font-size: 28px;
    margin-bottom: 0;
}

.stats-card i {
    font-size: 24px;
    opacity: 0.8;
}

.dashboard-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.dashboard-card .card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.dashboard-card .card-body {
    padding: 20px;
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-left: 30px;
}

.activity-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--btnLightPurple);
}

.activity-item {
    position: relative;
    padding-bottom: 20px;
}

.activity-item:last-child {
    padding-bottom: 0;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--purple);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--purple);
}

.activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.activity-content h6 {
    font-size: 16px;
    margin-bottom: 5px;
}

.activity-content p {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--grey2);
}

.activity-content small {
    font-size: 12px;
    color: var(--grey2);
}


.profile-form .form-control:focus {
    border-color: var(--purple);
    box-shadow: none;
}

.profile-form label {
    font-weight: 500;
    color: var(--lt-black);
    margin-bottom: 8px;
    font-size: 14px;
}

.profile-form .form-check-input {
    border: 2px solid var(--btnLightPurple);
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
}

.profile-form .form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

.profile-form .form-check-input:focus {
    box-shadow: none;
    border-color: var(--purple);
}

.profile-form .form-check-label {
    margin-left: 5px;
    color: var(--lt-black);
    font-size: 14px;
}

.profile-form textarea {
    resize: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .dashboard-sidebar {
        margin-bottom: 30px;
        position: relative;
        top: 0;
    }
    
    .dashboard-content {
        padding-left: 0;
    }
    
    .stats-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .dashboard-menu .nav-link {
        padding: 10px 15px;
    }
    
    .stats-card h3 {
        font-size: 24px;
    }
    
    .stats-card i {
        font-size: 20px;
    }
    
    .activity-timeline {
        padding-left: 20px;
    }
    
    .activity-item::before {
        left: -24px;
        width: 12px;
        height: 12px;
    }
}

/* Profile Header Styles */
.profile-header {
    position: relative;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-avatar .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info h3 {
    color: var(--lt-black);
    font-weight: 600;
}

.profile-stats .stat-item {
    text-align: center;
    padding: 10px;
    background-color: var(--lightPurple);
    border-radius: 8px;
    min-width: 80px;
}

.profile-stats .stat-item h5 {
    color: var(--purple);
    font-weight: 600;
}

/* Profile Form Styles */
.profile-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.profile-form .input-group-text {
    background-color: var(--lightPurple);
    border: none;
    color: var(--purple);
    width: 40px;
    justify-content: center;
}

.profile-form .form-control {
    border: 2px solid var(--btnLightPurple);
    padding: 12px 15px;
    font-size: 14px;
    margin-left: 0 !important;
    border-radius: 8px !important;
}
.profile-form .form-control:focus {
    border-color: var(--purple);
    box-shadow: none;
}


.preferences-section .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
    border: 2px solid var(--btnLightPurple) !important;
}

.preferences-section .form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

.preferences-section .form-check-label {
    margin-left: 5px;
    color: var(--lt-black);
    font-size: 14px;
}

/* Security Section */
.security-section .form-switch {
    padding-left: 0;
    margin-bottom: 0;
}

.security-section .form-switch .form-check-input {
    width: 40px;
    height: 20px;
    margin-left: 0;
    background-color: var(--btnLightPurple);
    border-color: var(--btnLightPurple);
}

.security-section .form-switch .form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin: 0 auto 20px;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .profile-stats .stat-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .profile-stats .stat-item h5 {
        font-size: 16px;
    }
}

/* Recent Orders Table Styles */
.dashboard-card .table {
    margin-bottom: 0;
}

.dashboard-card .table th {
    font-weight: 600;
    color: var(--lt-black);
    border-bottom-width: 2px;
    padding: 12px 15px;
    background-color: var(--lightPurple);
}

.dashboard-card .table td {
    padding: 12px 15px;
    vertical-align: middle;
    color: var(--grey2);
}

.dashboard-card .table tbody tr {
    transition: all 0.3s ease;
}

.dashboard-card .table tbody tr:hover {
    background-color: var(--lightPurple);
}

.dashboard-card .table .badge {
    padding: 6px 12px;
    font-weight: 500;
    font-size: 12px;
}

.dashboard-card .table .btn-outline-purple {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.dashboard-card .table .btn-outline-purple:hover {
    background-color: var(--purple);
    color: white;
}

/* Wishlist Section Styles */
.wishlist-section .view-options {
    display: flex;
    gap: 10px;
}

.wishlist-section .view-options .btn {
    padding: 8px 12px;
    border: 2px solid var(--btnLightPurle);
    color: var(--purple);
    transition: all 0.3s ease;
}

.wishlist-section .view-options .btn:hover,
.wishlist-section .view-options .btn.active {
    background-color: var(--purple);
    color: white;
    border-color: var(--purple);
}

.wishlist-section .comic-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.wishlist-section .comic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-section .comic-card img {
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.wishlist-section .comic-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--lt-black);
}

.wishlist-section .product-meta .badge {
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 5px;
}

.wishlist-section .product-actions {
    margin-top: 15px;
}

.wishlist-section .product-actions .btn {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
}

.wishlist-section .product-actions .btn:last-child {
    margin-bottom: 0;
}

/* List View Styles */
.wishlist-section .product-container.list-view .comic-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wishlist-section .product-container.list-view .comic-card img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 0;
}

.wishlist-section .product-container.list-view .comic-card .product-actions {
    margin-top: 0;
    display: flex;
    gap: 10px;
}

.wishlist-section .product-container.list-view .comic-card .product-actions .btn {
    margin-bottom: 0;
    width: auto;
}

@media (max-width: 768px) {
    .wishlist-section .product-container.list-view .comic-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wishlist-section .product-container.list-view .comic-card img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .wishlist-section .product-container.list-view .comic-card .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .wishlist-section .product-container.list-view .comic-card .product-actions .btn {
        width: 100%;
    }
}



/*** USERDASHBOARD CSS STARTS HERE  ***/


/** CART CSS STARTS HERE  **/
.quantity input {
    width: 100%;
  }

  /* Fullscreen overlay with blur effect */
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    backdrop-filter: blur(5px);
    /* Apply blur effect */
    z-index: 9998;
    /* Ensure it's above the content but below the loader */
    display: none;
    /* Initially hidden */
  }

  /* Loader styles */
  .cart-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
  }

  .cart-loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }

  /* Spin animation for the loader */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

/** CART CSS ENDS HERE  **/


