body {
	font-family: 'Montserrat', sans-serif;
	color: #333;
	background-color: #fff;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
}
.btn-primary {
	background-color: #1a3a5f;
	border-color: #1a3a5f;
	padding: 12px 30px;
	border-radius: 0;
	transition: all 0.3s ease;
}
.btn-primary:hover {
	background-color: #d4a017;
	border-color: #d4a017;
	transform: translateY(-2px);
}
.navbar {
	transition: background 0.4s ease, padding 0.4s ease;
	padding: 20px 0;
}
.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	padding: 10px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-link, .navbar.scrolled .navbar-brand {
	color: #1a3a5f !important;
}
.navbar-brand {
	font-weight: 700;
	font-size: clamp(1rem,2.5vw,1.5rem) !important;
	color: #fff !important;
}
.nav-link {
	color: #fff !important;
	font-weight: 600;
	margin-left: 20px;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
}
.hero-slider {
	height: 100vh;
	width: 100%;
}
.slide-inner {
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.animate-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}
.swiper-slide-active .animate-up {
	opacity: 1;
	transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
	font-size: 2.2rem;
}
.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #d4a017;
}

.product-img-container {
	position: relative;
	overflow: hidden;
	height: 350px;
}
.product-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 58, 95, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.product-card-wrapper:hover .product-overlay {
	opacity: 1;
}
.product-card-wrapper:hover img {
	transform: scale(1.1);
}
.card {
	transition: transform 0.3s ease;
}
.product-card-wrapper:hover .card {
	transform: translateY(-10px);
}

.philosophy-details summary {
	list-style: none;
	outline: none;
}
.philosophy-details summary::-webkit-details-marker {
	display: none;
}
.img-frame {
	position: relative;
	border: 15px solid #fff;
	outline: 1px solid #ddd;
}
.canvas-overlay {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
}

.word-break {
	word-break: break-all;
}

#cart-items-container .cart-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
}
.cart-item-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	margin-right: 20px;
	border-radius: 4px;
}
.cart-item-info {
	flex-grow: 1;
}
.cart-item-qty {
	width: 60px;
	margin: 0 15px;
}

@media (max-width: 1200px) {
	.navbar {
		background: #1a3a5f !important;
		padding: 10px 0;
	}
	.nav-link {
		margin: 10px 0;
	}
	.hero-slider h1 {
		font-size: 2.5rem;
	}
}
@media (max-width: 768px) {
	.hero-slider h1 {
		font-size: 1.8rem;
	}
	.section-title {
		font-size: 1.6rem;
	}
	.product-img-container {
		height: 300px;
	}
}/* Main container positioning and spacing */
.rightsCloudWrap {
    margin-top: 25px;
    padding: 0 20px;
    color: #000; /* Light text for dark theme */
    font-family: 'Inter', sans-serif; /* Standard clean font */
}

/* Moderate sizes for headings to keep them compact */
.rightsCloudWrap h1 {
    font-size: 22px;
    margin: 18px 0 12px;
    font-weight: 600;
    color: #000;
}

.rightsCloudWrap h2 {
    font-size: 19px;
    margin: 16px 0 10px;
    font-weight: 600;
    color: #000;
}

.rightsCloudWrap h3 {
    font-size: 17px;
    margin: 14px 0 8px;
    font-weight: 500;
    color: #000;
}

.rightsCloudWrap h4 {
    font-size: 15px;
    margin: 12px 0 6px;
    font-weight: 500;
    color: #000;
}

.rightsCloudWrap h5 {
    font-size: 14px;
    margin: 10px 0 5px;
    font-weight: 500;
    color: #000;
}

/* Standard paragraph styling */
.rightsCloudWrap p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000; /* Slightly dimmed for better readability */
}

/* List styling */
.rightsCloudWrap ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.rightsCloudWrap li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #000;
    line-height: 1.5;
}


.navbar-toggler{
	filter: invert(1);
	--webkit-filter: invert(1);
}

.navbar.scrolled {
	background: #1a3a5f;
	padding:10px 0;
	box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand span {
	color:#f4f7fa !important;
}

