@charset "UTF-8";

/* Quicksand */
@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/Quicksand-Medium.ttf') format('truetype');
	font-weight: 500;
}

@font-face {
	font-family: 'Quicksand';
	src: url('../fonts/Quicksand-Bold.ttf') format('truetype');
	font-weight: 700;
}

/* Anuphan */
@font-face {
	font-family: 'Anuphan';
	src: url('../fonts/Anuphan-Regular.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Anuphan';
	src: url('../fonts/Anuphan-Bold.ttf') format('truetype');
	font-weight: 700;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Anuphan', 'Quicksand', sans-serif;
	background-color: #f7f6f6de;
}

h1,
h2,
h3,
h4,
h5,
h6,
.header-text,
.feature-title,
.feature-description,
.shop-all-button button,
.add-to-cart,
.product-price,
.buy-now,
.form-section p,
.form-group label,
.product-title,
.form-group input,
.form-group select,
.form-group textarea,
.order-item-title,
.cart-title,
.ecat-section-title,
.section-header,
.description p,
.payment-method {
	font-family: 'Quicksand', 'Anuphan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Nav Bar */
.nav-bar {
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Navigation - Blue */
.nav-top {
	background: #3756A8;
}

.nav-top-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-link {
	display: inline-block;
}

.logo-img {
	height: 80px;
	width: auto;
	display: block;
}

/* Bottom Navigation - Pink */
.nav-bottom {
	background: #FFD2CF;
	padding-top: 12px;
}

.nav-bottom-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.nav-menu a {
	color: #3756A8;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
	text-transform: uppercase;
	margin-bottom: -5px;
}

.nav-menu a:hover {
	color: #4a5f8f;
	transform: translateY(-2px);
}

/* Nav Icons*/
.nav-icons {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	padding-right: 20px;
}

.nav-icons img {
	width: 25px;
	height: 25px;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/menu-burger.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	position: absolute;
	right: 1rem;
	top: 1.25rem;
	z-index: 1000;
}

.hamburger.active {
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/cross.png');
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	height: 100vh;
	background: #FFD2CF;
	box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
	padding: 2rem 1.5rem;
	z-index: 999;
	transition: right 0.4s ease;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.mobile-menu li {
	width: 100%;
}

.mobile-menu a {
	text-decoration: none;
	color: #3756A8;
	font-size: 18px;
	font-weight: 500;
	display: block;
	padding: 0.5rem 0;
	transition: color 0.2s;
}

.mobile-menu a:hover {
	color: #FFD2CF;
}

/* Banner */
.banner-home {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.banner-container {
	position: relative;
	width: 100%;
	height: 667px;
}

.banner-slides {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.banner-slide {
	min-width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-slide img {
	width: 100%;
	object-fit: cover;
}

/* Navigation Arrows */
.banner-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: #3756A8;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	border-radius: 50%;
}

.banner-nav:hover {
	transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
	left: 20px;
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/angle-left-w.png');
}

.banner-nav.next {
	right: 20px;
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/angle-right-w.png');
}

/* Dots Navigation */
.banner-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.banner-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid white;
	cursor: pointer;
	transition: all 0.3s ease;
}

.banner-dot.active {
	background: #4a5f8f;
	transform: scale(1.2);
}

.banner-dot:hover {
	background: rgba(74, 95, 143, 0.7);
}

/* recommended section */
.recommended-section {
	max-width: 1300px;
	margin: 0 auto;
	padding: 60px 20px;
}

.recommended-section h2 {
	color: #3756A8;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
}

.item-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.item-grid::-webkit-scrollbar {
	display: none;
}

.item-card {
	background: #FFD2CF;
	border-radius: 20px;
	padding: 11px;
	position: relative;
	flex: 0 0 auto;
	width: 280px;
	max-width: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* template card */
.item-card img {
	width: 100%;
	border-radius: 10px;
	height: 250px;
	object-fit: cover;
	margin-bottom: 12px;
}

.item-name {
	font-size: 18px;
	color: #4C4C4C;
	line-height: 1.4;
	min-height: 38px;
	margin-bottom: 8px;
}

.price {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
}

.old-price {
	color: #808080;
	text-decoration: line-through;
	font-size: 18px;
}

.new-price {
	color: #3756A8;
	font-weight: 700;
	font-size: 20px;
}

.shop-all {
	text-align: right;
	margin-top: 30px;
}

.shop-all a {
	font-size: 14px;
	color: #3b82f6;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
}

.shop-all a::after {
	content: '>';
	font-size: 12px;
}

.shop-all a:hover {
	color: #1f4ba0;
}

/* new-arrivals-section */
.new-arrivals-section {
	max-width: 1300px;
	margin: 0 auto;
	padding: 60px 20px;
}

.top-line {
	width: 100%;
	height: 1px;
	background-color: #808080;
	margin-bottom: 60px;
}

.new-arrivals-header {
	text-align: center;
	margin-bottom: 15px;
}

.new-arrivals-section h2 {
	color: #3756A8;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
}

.new-arrivals-subtitle {
	font-size: 28px;
	color: #3756A8;
	line-height: 1.5;
	max-width: 800px;
	margin: 0 auto 30px;
}

.new-arrivals-label {
	color: #3756A8;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
}

/* Badges new */
.badge-new {
	position: absolute;
	top: 24px;
	left: 6px;
	background: #FFF;
	border: 1px solid #FFAAA4;
	color: #4C4C4C;
	font-size: 12px;
	font-weight: 600;
	border-radius: 6px;
	padding: 4px 11px;
	text-transform: uppercase;
	z-index: 1;
}

/* Badges HOT */
.badge-hot {
	position: absolute;
	top: 24px;
	left: 6px;
	background: #3756A8;
	border: 1px solid rgb(255, 255, 255);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	border-radius: 6px;
	padding: 6px 11px;
	text-transform: uppercase;
	z-index: 1;
}

/* Badges PRE-ORDER */
.badge-pre {
	position: absolute;
	top: 24px;
	left: 6px;
	background: #737373;
	border: 1px solid #FFF;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	border-radius: 6px;
	padding: 6px 11px;
	text-transform: uppercase;
	z-index: 1;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background-color: #5577bb;
	width: 12px;
	height: 12px;
}

/* BESTSELLING */
.bestselling-section {
	max-width: 1300px;
	margin: 0 auto;
	padding: 60px 20px;
}

.bestselling-section h2 {
	color: #3756A8;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-align: center;
}

/* PET FREINDLY */
.pet-freindly {
	max-width: 100%;
	margin: 0 auto;
	padding: 50px 20px;
}

.border-pet {
	border: 2px solid white;
	border-radius: 32px;
	box-sizing: border-box;
	background-color: rgb(255, 255, 255);
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.header-text {
	text-align: center;
	color: #3756A8;
	font-size: 26px;
	margin-bottom: 40px;
	font-weight: 400;
}

.feature-title {
	text-align: center;
	color: #3756A8;
	font-size: 26px;
	font-weight: 600;
	margin-top: 20px;
	letter-spacing: 2px;
}

.features-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 2px;
	margin-bottom: 60px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.feature-item {
	text-align: center;
	flex: 0 0 auto;
	width: 234px;
}

.icon-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-icon {
	height: 197px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}


.feature-description {
	font-size: 16px;
	color: #3756A8;
	margin-top: 5px;
}

.video-section {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.video-placeholder {
	width: 100%;
	height: 350px;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	margin-top: 65px;
}

/* COLLECTION */
.shop-collection {
	max-width: 100%;
	margin: 0 auto;
	padding: 50px 20px;
	background-color: #f7f6f6de;
	margin-bottom: 30px;
}

.section-title {
	text-align: center;
	color: #3756A8;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

.collections-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto 30px;
	justify-items: center;
}

.collection-item {
	width: 100%;
	max-width: none;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.collection-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.collection-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.shop-all {
	margin-left: auto;
}

.shop-all-button {
	text-align: center;
	margin-top: 40px;
}

.shop-all-button button {
	background-color: #3756A8;
	color: white;
	border: none;
	padding: 10px 30px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 3px 10px rgba(91, 127, 169, 0.3);
}

.shop-all-button button:hover {
	background-color: rgb(101, 130, 205);
	transform: scale(1.05);
}

.shop-all-button button:active {
	transform: scale(0.98);
}

.action-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 10px 0;
	width: 100%;
    margin-top: 20px;
}

/* ----- Prev Button ----- */
.btn-prev {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	background: white url('https://cdc.sbdsapp.com/images/maison/icon/angle-left.png') center / 14px no-repeat;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.btn-prev:hover {
	border-color: #9ca3af;
	background-color: #f9fafb;
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/angle-left.png');
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
}

/* ----- Next Button ----- */
.btn-next {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	background: white url('https://cdc.sbdsapp.com/images/maison/icon/angle-right.png') center / 14px no-repeat;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.btn-next:hover {
	border-color: #9ca3af;
	background-color: #f9fafb;
	background-image: url('https://cdc.sbdsapp.com/images/maison/icon/angle-right.png');
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
}

/* ----- Shop All Link ----- */
.shop-all a {
	font-size: 18px;
	color: #3756A8;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
}

.shop-all a::after {
	content: '>';
	font-size: 12px;
}

/* ======= RESPONSIVE SCREEN ========*/

@media (max-width: 1200px) {
	.item-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.collections-container {
		grid-template-columns: repeat(4, 1fr);
	}

	.logo-img {
		height: 80px;
		width: auto;
	}
}

@media (max-width: 1024px) {
	.nav-menu {
		gap: 1.5rem;
	}

	.nav-icons {
		gap: 0.5rem;
	}

	.nav-menu a {
		font-size: 15px;
	}

	.carousel-track {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.features-container {
		gap: 30px;
	}

	.feature-item {
		width: 140px;
	}

	.feature-icon {
		width: 80px;
		height: 80px;
	}

	.logo-img {
		height: 60px;
		width: auto;
	}

	.nav-icons img {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 900px) {
	.item-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.collections-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.collection-image {
		height: 240px;
	}

	.nav-menu a {
		font-size: 14px;
	}

	.nav-icons img {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 768px) {

	.nav-bottom {
		position: relative;
		padding: 0.8rem 1rem;
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 105px;
		flex-direction: column;
		background: linear-gradient(to bottom, #fce4ec 0%, #f8d7e5 100%);
		width: 100%;
		text-align: center;
		transition: left 0.3s ease;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
		padding: 2rem 0;
		gap: 0;
		z-index: 999;
		max-height: calc(100vh - 105px);
		overflow-y: auto;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		width: 100%;
		padding: 1.2rem 0;
		border-bottom: 1px solid rgba(45, 62, 95, 0.1);
	}

	.nav-menu a {
		font-size: 16px;
		display: block;
		width: 100%;
		padding: 0.5rem;
	}

	.nav-icons {
		gap: 1.2rem;
	}

	.logo {
		font-size: 1.2rem;
	}

	.logo-sub {
		font-size: 0.85rem;
	}

	.banner-container {
		height: 350px;
	}

	.banner-nav {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.banner-nav.prev {
		left: 10px;
	}

	.banner-nav.next {
		right: 10px;
	}

	.banner-dots {
		bottom: 15px;
		gap: 8px;
	}

	.banner-dot {
		width: 10px;
		height: 10px;
	}

	.social-icons {
		gap: 15px;
	}

	.social-icon {
		width: 45px;
		height: 45px;
	}

	.social-icon img {
		width: 24px;
		height: 24px;
	}

	.footer-text {
		font-size: 11px;
	}

	.features-container {
		flex-wrap: wrap;
		gap: 40px 30px;
	}

	.feature-item {
		width: 130px;
	}

	.video-placeholder {
		height: 250px;
	}

	.carousel-track {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.carousel-container {
		padding: 0 40px;
	}

	.collections-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.collection-image {
		height: 200px;
	}

	.recommended-section h2 {
		font-size: 20px;
	}

	.new-arrivals-subtitle {
		font-size: 20px;
	}

	.new-arrivals-section h2 {
		font-size: 24px;
	}

	.new-arrivals-label {
		font-size: 20px;
	}

	.bestselling-section h2 {
		font-size: 20px;
	}

	.header-text {
		font-size: 20px;
	}

	.section-title {
		font-size: 20px;
	}

	nav-menu a {
		font-size: 14px;
	}

	.logo-img {
		height: 60px;
		width: auto;
	}

	.nav-icons img {
		width: 20px;
		height: 20px;
	}
	
	.banner-nav{
		top: 30%;
	}

}

@media (max-width: 600px) {
	.item-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.item-card {
		max-width: 100%;
		padding: 12px;
		border-radius: 16px;
	}

	.recommended-section h2 {
		font-size: 18px;
		margin-bottom: 25px;
	}

	.shop-all {
		text-align: center;
	}

	.hamburger {
		display: block;
	}
}

@media (max-width: 480px) {

	.nav-bottom {
		padding: 0.7rem 0.8rem;
	}

	.logo {
		font-size: 1rem;
	}

	.logo-sub {
		font-size: 0.75rem;
	}

	.nav-icons {
		gap: 0.8rem;
	}

	.hamburger span {
		width: 22px;
		height: 2.5px;
	}

	.nav-menu {
		top: 95px;
		max-height: calc(100vh - 95px);
	}

	.nav-menu li {
		padding: 1rem 0;
	}

	.nav-menu a {
		font-size: 0.95rem;
	}

	.banner-container {
		height: 250px;
	}

	.banner-nav {
		width: 30px;
		height: 30px;
		font-size: 0.9rem;
	}

	.banner-dots {
		bottom: 10px;
		gap: 6px;
	}

	.banner-dot {
		width: 8px;
		height: 8px;
		border: 1px solid white;
	}

	.features-container {
		gap: 30px 20px;
	}

	.feature-item {
		width: 110px;
	}

	.feature-icon {
		width: 70px;
		height: 70px;
	}

	.feature-description {
		font-size: 10px;
	}

	.carousel-track {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.section-title {
		font-size: 22px;
	}

	.section-subtitle {
		font-size: 14px;
	}

	.collections-container {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.collection-image {
		height: 220px;
	}

	.shop-collection {
		padding: 30px 15px;
	}

	.section-title {
		font-size: 22px;
		margin-bottom: 30px;
	}
}

@media (max-width: 360px) {
	.logo {
		font-size: 0.9rem;
	}

	.logo-sub {
		font-size: 0.7rem;
	}

	.nav-icons {
		gap: 0.6rem;
	}

}

/* ลบส่วนเดิมออก และแทนที่ด้วยโค้ดข้างล่าง */

/* ========== ANIMATIONS ========== */
@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.notification-popup {
	animation: slideInRight 0.3s ease;
}

/* ========== LOADING DISPLAY ========== */
#loading-display {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

#loading-display.active {
    display: flex;
}

#loading-display .spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3756A8;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

/* ========== NOTIFICATION POPUP ========== */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', 'Anuphan', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.notification-popup.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.notification-popup.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.notification-popup.warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.notification-popup.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* ========== PAYMENT METHODS ========== */
.payment-card {
    cursor: pointer;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.payment-card:hover {
    border-color: #3756A8;
    box-shadow: 0 2px 8px rgba(55,86,168,0.15);
}

.payment-card.active {
    border-color: #3756A8 !important;
    background: #f8faff;
}

.payment-card.active .fa-check-circle {
    color: #4CAF50 !important;
}

.payment-card:not(.active) .payment-details {
    display: none !important;
}

label:has(input:checked) {
    border: 2px solid #3756A8 !important;
    background: white !important;
}

label:has(input[type="radio"]) {
    cursor: pointer;
    transition: all 0.2s;
}

label:has(input[type="radio"]):hover {
    border-color: #3756A8 !important;
    background: #f8faff !important;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .notification-popup {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .notification-popup {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

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