.tp-blog-list-thumb img {
	object-fit: contain;
}

.shipping-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;

	.section {
		background: #f8f9fa;
		border-radius: 12px;
		padding: 30px;
		margin-bottom: 25px;
		border-left: 5px solid #007bff;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.section h2 {
		color: #007bff;
		font-size: 1.8rem;
		margin-bottom: 15px;
		font-weight: 600;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.icon {
		font-size: 1.5rem;
	}

	.shipping-options {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 20px;
		margin: 20px 0;
	}

	.shipping-option {
		background: white;
		padding: 20px;
		border-radius: 8px;
		border: 2px solid #e9ecef;
		transition: all 0.3s ease;
	}

	.shipping-option:hover {
		border-color: #007bff;
		transform: translateY(-2px);
		box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
	}

	.option-title {
		font-weight: 600;
		color: #007bff;
		font-size: 1.2rem;
		margin-bottom: 8px;
	}

	.option-time {
		color: #28a745;
		font-weight: 500;
		margin-bottom: 8px;
	}

	.option-description {
		color: #666;
		font-size: 0.9rem;
	}

	.highlight-box {
		background: linear-gradient(135deg, #28a745, #20c997);
		color: white;
		padding: 20px;
		border-radius: 10px;
		margin: 20px 0;
		text-align: center;
		font-weight: 500;
	}

	.info-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 15px;
		margin: 20px 0;
	}

	.info-item {
		background: white;
		padding: 15px;
		border-radius: 8px;
		border-left: 4px solid #17a2b8;
	}

	.info-item h4 {
		color: #17a2b8;
		margin-bottom: 8px;
		font-size: 1.1rem;
	}

	.restriction-item {
		background: white;
		padding: 15px;
		border-radius: 8px;
		border-left: 4px solid #dc3545;
		margin-bottom: 15px;
	}

	.restriction-item h4 {
		color: #dc3545;
		margin-bottom: 8px;
	}

	.tracking-steps {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px;
		margin: 20px 0;
	}

	.step {
		flex: 1;
		min-width: 200px;
		text-align: center;
		background: white;
		padding: 20px;
		border-radius: 10px;
		border: 2px solid #e9ecef;
	}

	.step-number {
		background: #007bff;
		color: white;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 10px;
		font-weight: 600;
	}

	.payment-methods {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin: 20px 0;
	}

	.payment-method {
		background: white;
		padding: 15px 20px;
		border-radius: 8px;
		border: 2px solid #e9ecef;
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 500;
	}
}

.story-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	line-height: 1.8;
	color: #2c3e50;
	font-family: 'Noto Sans Bengali', sans-serif;


	.story-header {
		text-align: center;
		margin-bottom: 60px;
	}

	.story-header h2 {
		font-size: 2.5rem;
		color: #8B4513;
		margin-bottom: 20px;
		font-weight: 700;
	}

	.story-divider {
		width: 80px;
		height: 3px;
		background: linear-gradient(90deg, #8B4513, #CD853F);
		margin: 0 auto;
	}

	.story-grid {
		display: grid;
		gap: 50px;
	}

	.story-card {
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
	}

	.story-card h4 {
		font-size: 1.5rem;
		color: #8B4513;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
	}

	.story-card h4 span {
		margin-right: 15px;
	}

	.story-card p {
		font-size: 1.1rem;
		text-align: justify;
		margin-bottom: 20px;
	}

	.story-card p:last-child {
		margin-bottom: 0;
	}

	.center-card {
		text-align: center;
	}

	.center-card h4 {
		justify-content: center;
	}

	.highlight-text {
		font-weight: 600;
		color: #8B4513;
	}

	/* Background Gradients */
	.card-1 {
		background: linear-gradient(135deg, #f8f4e6, #fff8dc);
	}

	.card-2 {
		background: linear-gradient(135deg, #fdf6e3, #f7f3e9);
	}

	.card-3 {
		background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
	}

	.card-4 {
		background: linear-gradient(135deg, #f5f5dc, #faf0e6);
	}

	.card-5 {
		background: linear-gradient(135deg, #e8f5e8, #f0fff0);
	}

}

/* Responsive Design */
@media (max-width: 768px) {
	.story-section {
		.story-grid {
			grid-template-columns: 1fr;
			gap: 30px;
		}

		.story-header h2 {
			font-size: 2rem;
		}

		.story-card h4 {
			font-size: 1.3rem;
		}

		.story-card p {
			font-size: 1rem;
		}
	}
}

/* Career Section Styling */
.careers-section {
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 20px;
	padding: 40px;
	position: relative;
	overflow: hidden;

	.careers-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 5px;
		background: linear-gradient(90deg, #ff6b35, #f7931e, #00b894);
	}

	h3 {
		font-size: 2.5rem;
		color: #2d3436;
		margin-bottom: 25px;
		text-align: center;
		position: relative;
		font-weight: 700;
	}

	h3::after {
		content: '';
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%);
		width: 80px;
		height: 3px;
		background: linear-gradient(90deg, #ff6b35, #f7931e);
		border-radius: 2px;
	}

	h4 {
		font-size: 1.5rem;
		color: #00b894;
		margin-top: 35px;
		margin-bottom: 20px;
		font-weight: 600;
		border-left: 4px solid #00b894;
		padding-left: 15px;
	}

	p {
		font-size: 1.1rem;
		margin-bottom: 20px;
		text-align: justify;
		line-height: 1.8;
		color: #555;
	}

	.intro-paragraph {
		font-size: 1.2rem;
		color: #2d3436;
		text-align: center;
		margin-bottom: 30px;
		padding: 20px;
		background: linear-gradient(135deg, #dff9fb 0%, #c7ecee 100%);
		border-radius: 15px;
		border-left: 5px solid #00b894;
	}

	ul {
		list-style: none;
		padding-left: 0;
	}

	li {
		margin-bottom: 15px;
		padding: 15px;
		background: #f8f9fa;
		border-radius: 10px;
		border-left: 4px solid #ff6b35;
		transition: all 0.3s ease;
		position: relative;
	}

	li:hover {
		transform: translateX(10px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	li strong {
		color: #2d3436;
		font-weight: 600;
		display: block;
		margin-bottom: 8px;
		font-size: 1.1rem;
	}

	.job-openings li {
		border-left-color: #00b894;
		background: linear-gradient(135deg, #d1f2eb 0%, #a3e4d7 100%);
	}

	.job-openings li strong {
		color: #00b894;
	}

	.values-list li {
		border-left-color: #f7931e;
		background: linear-gradient(135deg, #fef9e7 0%, #fcf4dd 100%);
	}

	.values-list li strong {
		color: #f7931e;
	}

	.call-to-action {
		margin-top: 40px;
		text-align: center;
		padding: 30px;
		background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
		color: white;
		border-radius: 15px;
		box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
	}

	.call-to-action p {
		color: white;
		font-size: 1.2rem;
		margin-bottom: 15px;
	}

	.apply-btn {
		display: inline-block;
		background: white;
		color: #ff6b35;
		padding: 15px 30px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: 600;
		font-size: 1.1rem;
		transition: all 0.3s ease;
		margin-top: 15px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.apply-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	}

	.highlight {
		color: #00b894;
		font-weight: 600;
	}


	.icon {
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-right: 10px;
		vertical-align: middle;
	}

	.company-stats {
		display: flex;
		justify-content: space-around;
		margin: 30px 0;
		padding: 20px;
		background: #f8f9fa;
		border-radius: 15px;
	}

	.stat-item {
		text-align: center;
	}

	.stat-number {
		font-size: 2rem;
		font-weight: 700;
		color: #00b894;
		display: block;
	}

	.stat-label {
		font-size: 0.9rem;
		color: #666;
		margin-top: 5px;
	}
}


@media (max-width: 768px) {
	.careers-section {
		padding: 20px;
		margin: 10px;

		h3 {
			font-size: 2rem;
		}

		h4 {
			font-size: 1.3rem;
		}

		p,
		li {
			font-size: 1rem;
		}
	}
}


@media (max-width: 600px) {
	.careers-section {
		.company-stats {
			flex-direction: column;
			gap: 15px;
		}
	}
}


/* Cookie Policy Section Styles */
.cookie-policy-section {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;

	.cookie-policy-section h3 {
		color: #2c3e50;
		border-bottom: 3px solid #3498db;
		padding-bottom: 10px;
		margin-bottom: 20px;
		font-size: 24px;
		font-weight: 600;
	}

	.cookie-policy-section h4 {
		color: #34495e;
		margin-top: 25px;
		margin-bottom: 15px;
		font-size: 18px;
		font-weight: 500;
		padding-left: 10px;
		border-left: 4px solid #3498db;
	}

	.cookie-policy-section p {
		margin-bottom: 15px;
		text-align: justify;
		padding: 0 10px;
	}

	.cookie-list {
		background-color: #f8f9fa;
		border: 1px solid #e9ecef;
		border-radius: 5px;
		padding: 15px;
		margin: 15px 0;
	}

	.cookie-item {
		margin-bottom: 15px;
		padding: 10px;
		background-color: white;
		border-radius: 4px;
	}

	.cookie-name {
		font-weight: bold;
		color: #2c3e50;
		font-size: 16px;
	}

	.cookie-description {
		margin-top: 5px;
		color: #555;
		font-size: 14px;
	}

	.important-note {
		background-color: #fff3cd;
		border: 1px solid #ffeaa7;
		border-radius: 5px;
		padding: 15px;
		margin: 20px 0;
		color: #856404;
	}

	.compliance-info {
		background-color: #e8f5e8;
		border: 1px solid #c3e6c3;
		border-radius: 5px;
		padding: 15px;
		margin: 20px 0;
		color: #2d5016;
	}
}

.return-policy-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 10px;

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
		position: relative;
		z-index: 1;
	}

	.return-title {
		text-align: center;
		font-size: 3rem;
		font-weight: 700;
		color: #2c3e50;
		margin-bottom: 20px;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		position: relative;
	}

	.return-title::after {
		content: '';
		position: absolute;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		width: 120px;
		height: 4px;
		background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
		border-radius: 2px;
	}

	.intro-text {
		text-align: center;
		font-size: 1.2rem;
		color: #555;
		max-width: 800px;
		margin: 40px auto 60px;
		line-height: 1.8;
		background: #f8f9fa;
		padding: 30px;
		border-radius: 15px;
		border: 1px solid rgba(0, 0, 0, 0.08);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	}

	.policy-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 30px;
		margin-bottom: 40px;
	}

	.policy-card {
		background: #ffffff;
		border-radius: 20px;
		padding: 35px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
		border: 1px solid rgba(0, 0, 0, 0.05);
		transition: all 0.4s ease;
		position: relative;
		overflow: hidden;
	}

	.policy-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 5px;
		background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
		background-size: 300% 100%;
		animation: gradientMove 3s ease-in-out infinite;
	}

	.policy-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	}

	.policy-card h3 {
		font-size: 1.5rem;
		font-weight: 600;
		color: #2c3e50;
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.policy-card h3 i {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #667eea, #764ba2);
		color: white;
		border-radius: 50%;
		font-size: 1rem;
	}

	.policy-card p {
		color: #555;
		line-height: 1.7;
		font-size: 1rem;
	}

	.policy-card ul,
	.policy-card ol {
		margin-left: 0;
		padding-left: 0;
		list-style: none;
	}

	.policy-card li {
		position: relative;
		padding: 12px 0 12px 35px;
		color: #555;
		line-height: 1.6;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		transition: all 0.3s ease;
	}

	.policy-card li:last-child {
		border-bottom: none;
	}

	.policy-card li:hover {
		background: rgba(102, 126, 234, 0.05);
		padding-left: 40px;
		border-radius: 8px;
	}

	.policy-card ul li::before {
		content: '✓';
		position: absolute;
		left: 8px;
		top: 50%;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		background: linear-gradient(135deg, #4ecdc4, #44a08d);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		font-weight: bold;
	}

	.policy-card ol li::before {
		content: counter(step-counter);
		counter-increment: step-counter;
		position: absolute;
		left: 8px;
		top: 50%;
		transform: translateY(-50%);
		width: 24px;
		height: 24px;
		background: linear-gradient(135deg, #ff6b6b, #ee5a24);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		font-weight: bold;
	}

	.policy-card ol {
		counter-reset: step-counter;
	}

	.not-acceptable ul li::before {
		content: '✗';
		background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	}

	.note {
		background: #ffffff;
		border-radius: 15px;
		padding: 25px;
		text-align: center;
		font-size: 1rem;
		color: #2c3e50;
		border-left: 5px solid #3498db;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
		border: 1px solid rgba(0, 0, 0, 0.05);
		position: relative;
		overflow: hidden;
	}

	.note::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background: linear-gradient(90deg, #3498db, #2980b9);
	}

	.note i {
		color: #3498db;
		font-size: 1.2rem;
		margin-right: 8px;
	}

	strong {
		color: #2c3e50;
		font-weight: 600;
	}

	/* Animation for cards */
	.policy-card {
		opacity: 0;
		transform: translateY(50px);
		animation: fadeInUp 0.8s ease forwards;
	}

	.policy-card:nth-child(1) {
		animation-delay: 0.1s;
	}

	.policy-card:nth-child(2) {
		animation-delay: 0.2s;
	}

	.policy-card:nth-child(3) {
		animation-delay: 0.3s;
	}

	.policy-card:nth-child(4) {
		animation-delay: 0.4s;
	}

	.intro-text {
		opacity: 0;
		animation: fadeIn 1s ease 0.5s forwards;
	}
}

.return-policy-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,');
	opacity: 0.3;
	pointer-events: none;
}

@keyframes gradientMove {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}


/* Responsive Design */
@media (max-width: 768px) {
	.return-policy-section {
		.return-title {
			font-size: 2rem;
		}

		.intro-text {
			font-size: 1rem;
			padding: 20px;
			margin: 30px auto 40px;
		}

		.policy-grid {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		.policy-card {
			padding: 25px;
		}

		.policy-card h3 {
			font-size: 1.3rem;
		}
	}
}


@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@keyframes fadeIn {
	to {
		opacity: 1;
	}
}


/* ========Hero Slider One======= */

.tp-slider-content>span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 25px;
    height: 40px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #FFD700;
    margin-bottom: 15px;
}

.tp-slider-title {
    animation-delay: .5s;
    animation-duration: 1s;
    color: var(--tp-common-white);
    font-family: var(--primary-font);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tp-slider-content p {
    animation-delay: .7s;
    font-family: var(--tp-ff-oregano);
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.tp-slider-content p > span {
    background: #FFD700;
    color: #006A4E;
    padding: 2px 8px;
    height: 30px;
    border-radius: 15px;
    font-weight: 700;
    margin: 0;
    border: none;
    font-size: 17px;
}
.tp-slider-btn .tp-btn {
    animation-delay: .9s;
    animation-duration: 1s;
    padding: 10px 30px;
    line-height: 52px;
    height: 50px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: var(--tp-yellow-2);
    color: var(--tp-green-dark);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
  
  &:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    &::before {
    left: 100%;
}
}
}


.bb-shop-detail .bb-shop-banner-overlay {
    background-color: rgb(0 0 0 / 76%);
}