/* ==========================================================================
   Vasantham & Co — website theme
   Loaded after css/style.css. Presentation only: no markup IDs, form names
   or scripts depend on anything in this file.
   ========================================================================== */

:root {
	--vc-ink: #1c1433;          /* night sky */
	--vc-ink-2: #2b2150;
	--vc-gold: #eaa61a;         /* marigold flame */
	--vc-gold-deep: #b87d05;
	--vc-gold-soft: #fdf3dc;
	--vc-red: #c4122f;          /* kumkum red */
	--vc-surface: #f6f5fa;
	--vc-line: #e5e2ef;
	--vc-text: #241f35;
	--vc-muted: #625c77;
	--vc-white: #ffffff;
	--vc-radius-lg: 18px;
	--vc-radius: 12px;
	--vc-radius-sm: 8px;
	--vc-shadow: 0 1px 2px rgba(28, 20, 51, .06), 0 10px 30px rgba(28, 20, 51, .08);
	--vc-shadow-lift: 0 2px 4px rgba(28, 20, 51, .08), 0 18px 40px rgba(28, 20, 51, .14);
	--vc-font: 'Hind', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--vc-display: 'Marcellus', Georgia, 'Times New Roman', serif;
	--vc-ease: cubic-bezier(.2, .7, .2, 1);
	/* Static starfield used on dark bands (pure CSS, no image request) */
	--vc-stars:
		radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.55) 50%, transparent 51%),
		radial-gradient(1px 1px at 68% 14%, rgba(255,255,255,.45) 50%, transparent 51%),
		radial-gradient(1.5px 1.5px at 84% 62%, rgba(234,166,26,.7) 50%, transparent 51%),
		radial-gradient(1px 1px at 36% 74%, rgba(255,255,255,.4) 50%, transparent 51%),
		radial-gradient(1.5px 1.5px at 52% 38%, rgba(255,255,255,.35) 50%, transparent 51%),
		radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,.5) 50%, transparent 51%),
		radial-gradient(1px 1px at 6% 80%, rgba(234,166,26,.55) 50%, transparent 51%);
}

/* ---------- Base ---------- */
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
	font-family: var(--vc-font) !important;
	font-size: 16px;
	line-height: 1.6;
	color: var(--vc-text);
	background: var(--vc-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--vc-font); color: var(--vc-ink); line-height: 1.25; }
a { color: var(--vc-ink-2); transition: color .2s var(--vc-ease); }
a:hover, a:focus { color: var(--vc-gold-deep); }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 3px solid var(--vc-gold); outline-offset: 2px; }
::selection { background: var(--vc-gold); color: var(--vc-ink); }

.vc-display { font-family: var(--vc-display); font-weight: 400; letter-spacing: .005em; color: var(--vc-ink); }

/* ---------- Buttons ---------- */
.vc-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 46px; padding: 10px 24px;
	border-radius: 999px; border: 2px solid transparent;
	font: 600 16px/1.2 var(--vc-font); text-decoration: none !important;
	cursor: pointer; white-space: nowrap;
	transition: background-color .2s var(--vc-ease), color .2s var(--vc-ease), border-color .2s var(--vc-ease), transform .2s var(--vc-ease), box-shadow .2s var(--vc-ease);
}
.vc-btn:active { transform: translateY(1px); }
.vc-btn--gold { background: var(--vc-gold); color: var(--vc-ink) !important; box-shadow: 0 6px 16px rgba(234, 166, 26, .35); }
.vc-btn--gold:hover, .vc-btn--gold:focus { background: #f4b42e; color: var(--vc-ink) !important; box-shadow: 0 8px 22px rgba(234, 166, 26, .45); }
.vc-btn--ghost { background: transparent; border-color: var(--vc-ink); color: var(--vc-ink) !important; }
.vc-btn--ghost:hover, .vc-btn--ghost:focus { background: var(--vc-ink); color: var(--vc-white) !important; }
.vc-btn--light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--vc-white) !important; }
.vc-btn--light:hover, .vc-btn--light:focus { background: var(--vc-white); color: var(--vc-ink) !important; }

/* ---------- Top bar ---------- */
.vc-topbar { background: var(--vc-ink); background-image: var(--vc-stars); color: rgba(255,255,255,.86); font-size: 14px; }
.vc-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.vc-topbar p { margin: 0; }
.vc-topbar__note strong { color: var(--vc-gold); font-weight: 600; margin-left: 4px; }
.vc-topbar__links { display: flex; gap: 22px; }
.vc-topbar__links a { color: rgba(255,255,255,.86); text-decoration: none; }
.vc-topbar__links a:hover { color: var(--vc-gold); }
.vc-topbar__links .fa { margin-right: 6px; color: var(--vc-gold); }

/* ---------- Header / navigation ---------- */
.vc-header {
	position: -webkit-sticky; position: sticky; top: 0; z-index: 1030;
	background: rgba(255,255,255,.97);
	border-bottom: 1px solid var(--vc-line);
	padding: 0 !important;
	transition: box-shadow .25s var(--vc-ease);
}
.vc-header.is-scrolled { box-shadow: 0 6px 24px rgba(28, 20, 51, .1); }
.vc-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.vc-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.vc-brand__logo { height: 60px; width: auto; max-width: 240px; object-fit: contain; }

.vc-nav { display: flex; align-items: center; gap: 28px; }
.vc-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.vc-nav__list a {
	position: relative; display: block; padding: 10px 14px;
	font-weight: 500; font-size: 16px; color: var(--vc-ink); text-decoration: none;
}
.vc-nav__list a::after {
	content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
	background: var(--vc-gold); border-radius: 2px;
	transform: scaleX(0); transform-origin: left; transition: transform .25s var(--vc-ease);
}
.vc-nav__list a:hover, .vc-nav__list a:focus { color: var(--vc-ink); }
.vc-nav__list a:hover::after, .vc-nav__list a.is-active::after { transform: scaleX(1); }
.vc-nav__list a.is-active { font-weight: 600; }

.vc-nav-toggle {
	display: none; width: 46px; height: 46px; padding: 12px 11px;
	border: 1px solid var(--vc-line); border-radius: var(--vc-radius-sm); background: var(--vc-white);
	flex-direction: column; justify-content: space-between; cursor: pointer;
}
.vc-nav-toggle span { display: block; height: 2px; width: 100%; background: var(--vc-ink); border-radius: 2px; transition: transform .25s var(--vc-ease), opacity .2s; }
.vc-nav-toggle:not(.collapsed) span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.vc-nav-toggle:not(.collapsed) span:nth-child(2) { opacity: 0; }
.vc-nav-toggle:not(.collapsed) span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 992px) {
	/* Bootstrap's collapse only applies on small screens */
	.vc-nav.collapse { display: flex !important; height: auto !important; visibility: visible; }
}
@media (max-width: 991px) {
	.vc-header__inner { min-height: 70px; flex-wrap: wrap; gap: 0; }
	.vc-brand__logo { height: 48px; max-width: 190px; }
	.vc-nav-toggle { display: flex; }
	.vc-nav { flex-basis: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; }
	.vc-nav.in { display: flex; }
	.vc-nav.collapsing { display: flex; }
	.vc-nav__list { flex-direction: column; align-items: stretch; padding: 8px 0; border-top: 1px solid var(--vc-line); }
	.vc-nav__list a { padding: 13px 4px; border-bottom: 1px solid var(--vc-surface); }
	.vc-nav__list a::after { left: 4px; right: auto; width: 28px; bottom: 6px; }
	.vc-nav__cta { margin: 8px 0 18px; }
}
@media (max-width: 575px) {
	.vc-topbar__mail { display: none; }
	.vc-topbar { font-size: 13px; }
}

/* Old header classes that may remain on legacy pages */
.min-prch { display: none; }

/* ---------- Page banners (inner pages) ---------- */
.sub-menu-title {
	position: relative; display: flex; align-items: flex-end;
	min-height: clamp(150px, 20vw, 260px); padding: 0 !important;
	background-color: var(--vc-ink); isolation: isolate;
}
.sub-menu-title::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(28,20,51,.05) 0%, rgba(28,20,51,.72) 100%);
}
.sub-menu-title ul {
	position: static !important; transform: none !important;
	width: 100%; max-width: 1170px; margin: 0 auto !important; padding: 0 15px 22px !important;
	text-align: left !important;
}
.sub-menu-title ul li { font-size: 15px; font-weight: 500; color: var(--vc-white); padding: 0 10px 0 0 !important; }
.sub-menu-title ul li:last-child { font-family: var(--vc-display); font-size: clamp(26px, 3.4vw, 38px); display: block; padding-top: 2px !important; line-height: 1.2; }
.sub-menu-title ul li a { color: rgba(255,255,255,.82); text-decoration: none; }
.sub-menu-title ul li a:hover { color: var(--vc-gold); }
.sub-menu-title ul li a:first-child:after { content: "" !important; }
#sub-banner ul { position: static; transform: none; }

/* ---------- Announcement (admin-controlled marquee text) ---------- */
marquee {
	display: block; margin: 0; padding: 11px 0;
	background: var(--vc-gold-soft); color: var(--vc-ink);
	border-bottom: 1px solid #f3e1b3; font-weight: 500; font-size: 15px;
}
.announcement { background: var(--vc-gold-soft); }
.announcement .row, marquee { margin-left: 0; margin-right: 0; }

/* ---------- Generic sections & headings used across pages ---------- */
.vc-section { padding: clamp(56px, 7vw, 96px) 0; }
.vc-section--tint { background: var(--vc-surface); }
.vc-heading { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.vc-heading h2 { font-family: var(--vc-display); font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 12px; }
.vc-heading p { color: var(--vc-muted); margin: 0; font-size: 17px; }
.vc-label { display: inline-block; font-weight: 600; font-size: 15px; color: var(--vc-gold-deep); margin-bottom: 10px; }

.sub-container { padding: clamp(40px, 5vw, 72px) 0; }
.sub-container p { color: var(--vc-muted); font-size: 17px; line-height: 1.75; }
.rose { font-family: var(--vc-display); font-weight: 400 !important; color: var(--vc-ink) !important; line-height: 1.2 !important; font-size: clamp(26px, 3.2vw, 38px); margin: 18px 0 20px; }
.rose span { display: inline-block; font-family: var(--vc-font); font-size: 15px !important; color: var(--vc-gold-deep) !important; font-weight: 600 !important; margin-bottom: 6px; }
.rose i { font-style: normal; }
.txt-rose { color: var(--vc-muted) !important; font-size: 16px !important; font-weight: 500 !important; }
.txt-black { font-family: var(--vc-display); font-size: clamp(26px, 3vw, 34px); color: var(--vc-ink); margin-bottom: 4px; }
.txt-black strong { font-weight: 400; }
hr { border-top-color: var(--vc-line); }

/* ---------- Home: hero carousel ---------- */
.vc-hero { background: var(--vc-ink); }
.vc-hero .carousel-inner > .item > img { width: 100%; height: auto; display: block; }
.vc-hero .carousel-control {
	width: 48px; height: 48px; top: 50%; margin-top: -24px; bottom: auto;
	border-radius: 50%; background: rgba(28,20,51,.55) !important; opacity: 1; text-shadow: none;
	display: flex; align-items: center; justify-content: center; font-size: 26px;
	transition: background-color .2s;
}
.vc-hero .carousel-control.left { left: 18px; }
.vc-hero .carousel-control.right { right: 18px; }
.vc-hero .carousel-control:hover, .vc-hero .carousel-control:focus { background: var(--vc-gold) !important; color: var(--vc-ink); }
.vc-hero .carousel-indicators { bottom: 12px; margin-bottom: 0; }
.vc-hero .carousel-indicators li { width: 26px; height: 4px; margin: 0 3px; border: 0; border-radius: 2px; background: rgba(255,255,255,.5); }
.vc-hero .carousel-indicators .active { width: 26px; height: 4px; margin: 0 3px; background: var(--vc-gold); }
@media (max-width: 767px) {
	.vc-hero .carousel-control { width: 38px; height: 38px; margin-top: -19px; font-size: 20px; }
	.vc-hero .carousel-control.left { left: 8px; }
	.vc-hero .carousel-control.right { right: 8px; }
}

/* ---------- Home: about ---------- */
.vc-about__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.vc-about__media { margin: 0; position: relative; }
.vc-about__media img { position: relative; z-index: 1; display: block; margin: 0 auto; }
.vc-about__media::before {
	content: ""; position: absolute; inset: 8% 4%; border-radius: 50%;
	background: radial-gradient(closest-side, rgba(234,166,26,.22), rgba(234,166,26,0));
}
.vc-about__copy h2 { font-family: var(--vc-display); font-size: clamp(30px, 3.8vw, 46px); margin: 0 0 20px; line-height: 1.15; }
.vc-about__copy p { color: var(--vc-muted); font-size: 17px; line-height: 1.75; max-width: 62ch; }
.vc-facts { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--vc-line); }
.vc-facts li { padding: 16px 16px 0 0; color: var(--vc-muted); font-size: 15px; line-height: 1.4; }
.vc-facts strong { display: block; font-family: var(--vc-display); font-weight: 400; font-size: 24px; color: var(--vc-ink); margin-bottom: 2px; }
.vc-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Home: ways to order ---------- */
.vc-ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.vc-way {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 36px 28px 32px; background: var(--vc-white); border: 1px solid var(--vc-line);
	border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow);
	transition: transform .3s var(--vc-ease), box-shadow .3s var(--vc-ease);
}
.vc-way:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow-lift); }
.vc-way__media { height: 220px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.vc-way__media img { max-height: 220px; width: auto; }
.vc-way h3 { font-family: var(--vc-display); font-size: 28px; margin: 0 0 8px; }
.vc-way p { color: var(--vc-muted); margin: 0 0 22px; max-width: 36ch; }
.vc-way--dark { background: var(--vc-ink); background-image: var(--vc-stars); border-color: var(--vc-ink); }
.vc-way--dark h3 { color: var(--vc-white); }
.vc-way--dark p { color: rgba(255,255,255,.75); }

.vc-showcase { margin: 0 auto 48px; text-align: center; }
.vc-showcase img { display: inline-block; max-width: min(100%, 760px); }
.vc-poster { margin: 0; }
.vc-poster img { display: block; width: 100%; border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow); }

/* ---------- Home: testimonials ---------- */
.vc-quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.vc-quote {
	margin: 0; padding: 30px 30px 26px; background: var(--vc-white);
	border: 1px solid var(--vc-line); border-radius: var(--vc-radius-lg);
	display: flex; flex-direction: column; justify-content: space-between;
}
.vc-quote blockquote { margin: 0 0 20px; padding: 0; border: 0; font-size: 17px; line-height: 1.7; color: var(--vc-text); }
.vc-quote blockquote::before { content: "\201C"; display: block; font-family: var(--vc-display); font-size: 56px; line-height: .8; color: var(--vc-gold); margin-bottom: 6px; }
.vc-quote figcaption { font-weight: 600; color: var(--vc-ink); font-size: 15px; }
.vc-quote figcaption span { display: block; font-weight: 400; color: var(--vc-muted); }

@media (max-width: 991px) {
	.vc-about__grid { grid-template-columns: 1fr; }
	.vc-about__media img { max-height: 360px; width: auto; }
}
@media (max-width: 767px) {
	.vc-ways, .vc-quotes { grid-template-columns: 1fr; }
	.vc-facts { grid-template-columns: 1fr; }
	.vc-facts li { display: flex; gap: 10px; align-items: baseline; padding: 12px 0 0; }
	.vc-facts strong { display: inline; font-size: 20px; }
	.vc-way__media, .vc-way__media img { height: auto; max-height: 180px; }
}

/* ---------- Gift boxes (product cards) ---------- */
.sub-product { background: var(--vc-surface) !important; padding: 24px 0 64px !important; }
.product-item {
	margin-top: 28px; padding: 14px 14px 6px; background: var(--vc-white);
	border: 1px solid var(--vc-line); border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow);
	transition: transform .3s var(--vc-ease), box-shadow .3s var(--vc-ease);
}
.product-item:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow-lift); }
.pi-img-wrapper { border-radius: var(--vc-radius); overflow: hidden; background: var(--vc-surface); }
.pi-img-wrapper img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; transition: transform .6s var(--vc-ease); }
.product-item:hover .pi-img-wrapper img { transform: scale(1.04); }
.pi-img-wrapper div {
	display: flex !important; align-items: center; justify-content: center;
	background: rgba(28,20,51,.55) !important; opacity: 0; transition: opacity .3s var(--vc-ease) !important;
}
.product-item:hover > .pi-img-wrapper > div, .pi-img-wrapper div:focus-within { opacity: 1; }
.pi-img-wrapper div .btn {
	top: auto !important; margin: 0 !important; padding: 11px 22px !important;
	border: 0 !important; border-radius: 999px; background: var(--vc-gold) !important; color: var(--vc-ink) !important;
	font-weight: 600; text-transform: none !important; font-size: 15px !important;
}
.product-item h3 { margin: 16px 4px 10px; text-transform: none; }
.product-item h3 a { font-family: var(--vc-display); font-weight: 400 !important; font-size: 24px !important; color: var(--vc-ink) !important; }
.product-item h3 a:hover { color: var(--vc-gold-deep) !important; }
@media (hover: none) {
	.pi-img-wrapper div { position: static !important; opacity: 1; background: none !important; padding: 12px 0 0; height: auto !important; }
	.pi-img-wrapper { overflow: visible; background: none; }
	.pi-img-wrapper img { border-radius: var(--vc-radius); }
	.product-item:hover { transform: none; }
}

/* ---------- Price lists / box contents tables ---------- */
.price-chart { margin-bottom: 24px; }
.table-txt th, .fixed_headers thead, .fixed_headers-2 thead { background: var(--vc-ink) !important; color: var(--vc-white) !important; }
.table-txt th { font-size: 14px !important; font-weight: 600; letter-spacing: .02em; border: 0 !important; padding: 13px 10px !important; }
.fixed_headers, .fixed_headers-2 { border-radius: var(--vc-radius); overflow: hidden; border: 1px solid var(--vc-line); background: var(--vc-white); box-shadow: var(--vc-shadow); }
.fixed_headers td, .fixed_headers-2 td { padding: 10px !important; border-top: 1px solid var(--vc-surface) !important; font-size: 15px; }
.fixed_headers tbody tr:nth-child(even), .fixed_headers-2 tbody tr:nth-child(even) { background-color: var(--vc-surface) !important; }
.fixed_headers tbody tr:hover, .fixed_headers-2 tbody tr:hover { background-color: var(--vc-gold-soft) !important; }
.fixed_headers tbody, .fixed_headers-2 tbody { scrollbar-width: thin; scrollbar-color: var(--vc-gold) transparent; }
.table > thead > tr > th { border-bottom-width: 1px; }

/* ---------- Order page ---------- */
.admin-container { padding: clamp(32px, 5vw, 64px) 0 40px !important; }
.orders-form { margin-top: 24px; }
.orders-form .control-label { font-weight: 600; color: var(--vc-ink); font-size: 15px; margin: 6px 0 8px; }
.orders-form input[type=text], .orders-form .form-control, .orders-form textarea, .contact-form input[type=text], .contact-form textarea, .contact-form .form-control {
	height: 46px; border: 1px solid #d7d3e3 !important; border-radius: var(--vc-radius-sm) !important;
	background: var(--vc-white) !important; box-shadow: none !important; color: var(--vc-text) !important;
	font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.orders-form textarea, .contact-form textarea { height: auto; min-height: 118px; padding-top: 12px !important; resize: vertical; }
.orders-form input:focus, .orders-form textarea:focus, .orders-form select:focus, .contact-form input:focus, .contact-form textarea:focus {
	border-color: var(--vc-gold) !important; box-shadow: 0 0 0 4px rgba(234,166,26,.2) !important; outline: none;
}
.orders-form .form-control::placeholder, .orders-form textarea::placeholder, .contact-form input::placeholder, .contact-form textarea::placeholder { color: #8b86a0 !important; opacity: 1; }
.orders-form .check-icon { top: 15px; opacity: .55; pointer-events: none; }
.selectobx .select .select-wrapper { border: 1px solid #d7d3e3 !important; border-radius: var(--vc-radius-sm); background: var(--vc-white); }
.selectobx .select .select-wrapper select { height: 44px; font-size: 15px !important; padding: 8px 40px 8px 14px !important; }
.selectobx .select .select-wrapper select + i { top: 50% !important; transform: translateY(-50%); color: var(--vc-muted) !important; }
.selectobx label { font-weight: 500; color: var(--vc-muted); font-size: 14px; }

.order-table { margin-top: 28px; }
.order-table > table { width: 100%; }
.tab-bg { background: var(--vc-ink) !important; border-radius: var(--vc-radius) !important; }
.tab-bg th { color: var(--vc-white); font-weight: 600; font-size: 14px; padding: 14px 15px !important; }
.tab-bg tr th:first-child { border-radius: var(--vc-radius) 0 0 var(--vc-radius) !important; }
.tab-bg tr th:last-child { border-radius: 0 var(--vc-radius) var(--vc-radius) 0 !important; }

#accordion .panel { border: 1px solid var(--vc-line) !important; border-radius: var(--vc-radius) !important; box-shadow: none; overflow: hidden; }
#accordion .panel-default { margin-top: 16px; }
#accordion .panel-heading { background: var(--vc-ink-2) !important; border: 0; }
#accordion .panel-heading .panel-title > a { font-size: 15px !important; font-weight: 600; padding: 13px 20px 13px 64px !important; color: var(--vc-white) !important; text-decoration: none; letter-spacing: .01em; }
#accordion .panel-heading .panel-title > a:before, #accordion .panel-heading .panel-title > a.collapsed:before {
	width: 46px !important; height: 100% !important; line-height: 46px !important; top: 0 !important;
	background: var(--vc-gold) !important; color: var(--vc-ink) !important;
}
#accordion .panel-body { color: var(--vc-text) !important; padding: 0 0 4px !important; }
#accordion .panel-body .table > tbody > tr > td { padding: 10px 12px; border-top: 1px solid var(--vc-surface); font-size: 14px !important; color: var(--vc-text); }
#accordion .panel-body .table > tbody > tr:hover > td { background: var(--vc-gold-soft); }
#accordion .panel-body .table > tbody > tr:last-child > td { background: var(--vc-surface); border-top: 1px solid var(--vc-line); }

.order-table .input-group { display: inline-flex; align-items: stretch; }
.order-table .input-group .form-control.input-number { height: 36px; width: 54px !important; text-align: center; border-radius: 0 !important; border-left: 0 !important; border-right: 0 !important; padding: 4px; background: var(--vc-white) !important; }
.order-table .btn-number { width: 36px; height: 36px; padding: 0; border: 1px solid #d7d3e3; box-shadow: none; line-height: 34px; font-size: 11px; }
.order-table .btn-number.btn-danger { background: var(--vc-white); color: var(--vc-ink); border-radius: var(--vc-radius-sm) 0 0 var(--vc-radius-sm) !important; }
.order-table .btn-number.btn-danger:hover { background: var(--vc-surface); }
.order-table .btn-number.btn-success { background: var(--vc-gold); color: var(--vc-ink); border-color: var(--vc-gold); border-radius: 0 var(--vc-radius-sm) var(--vc-radius-sm) 0 !important; }
.order-table .btn-number.btn-success:hover { background: #f4b42e; }
.order-table .btn-number[disabled] { opacity: .4; }

.orange.button1, .orange.button1.btn, input.orange.button1 {
	display: block; width: auto !important; min-width: 220px; margin: 28px auto 0 !important;
	padding: 14px 40px !important; border: 0 !important; border-radius: 999px !important;
	background: var(--vc-gold) !important; color: var(--vc-ink) !important;
	font: 600 17px/1.2 var(--vc-font) !important; text-transform: none !important; text-shadow: none !important;
	box-shadow: 0 8px 22px rgba(234,166,26,.4);
}
.orange.button1:hover, .orange.button1:focus { background: #f4b42e !important; color: var(--vc-ink) !important; border: 0 !important; }

/* Running totals: desktop side panel */
.order_bg {
	top: auto !important; bottom: 24px; right: 24px; width: auto !important; min-width: 250px;
	padding: 18px 22px 8px !important; border-radius: var(--vc-radius-lg) !important;
	background: var(--vc-ink) !important; background-image: var(--vc-stars) !important;
	box-shadow: 0 18px 40px rgba(28,20,51,.35); z-index: 1020; font-size: 15px !important;
}
.order_bg p, .order_bg_mbl p { margin: 0 0 10px; display: flex; justify-content: space-between; gap: 16px; }
.order_bg p:last-of-type, .order_bg_mbl p:last-of-type { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.18); font-weight: 600; color: var(--vc-gold); font-size: 17px; }
/* Running totals: mobile sticky bar */
.order_bg_mbl {
	position: -webkit-sticky !important; position: sticky !important; bottom: 0; z-index: 1020;
	margin: 12px 0 0; padding: 14px 20px 6px !important;
	background: var(--vc-ink) !important; border-radius: var(--vc-radius-lg) var(--vc-radius-lg) 0 0;
	box-shadow: 0 -10px 30px rgba(28,20,51,.25); font-size: 15px !important;
}
.order_bg_mbl p { justify-content: space-between !important; text-align: left !important; }

/* Bank details / terms panel */
.yellow-panner {
	margin: 24px 0 64px !important; padding: 32px 28px !important;
	background: var(--vc-surface) !important; border: 1px solid var(--vc-line) !important; border-radius: var(--vc-radius-lg) !important;
}
.yellow-panner h3 { font-family: var(--vc-display); font-size: 26px; margin: 0 0 18px; }
.yellow-panner p, .yellow-panner li { color: var(--vc-text); font-size: 15px; line-height: 1.8; }
.yellow-panner .col-md-6 + .col-md-6 { border-left: 1px solid var(--vc-line); }
@media (max-width: 991px) { .yellow-panner .col-md-6 + .col-md-6 { border-left: 0; border-top: 1px solid var(--vc-line); margin-top: 16px; padding-top: 16px; } }

@media (max-width: 767px) {
	.tab-bg th { font-size: 12px; padding: 12px 6px !important; }
	#accordion .panel-body .table > tbody > tr > td { padding: 9px 6px; }
	.order-table .input-group .form-control.input-number { width: 42px !important; }
	.order-table .btn-number { width: 30px; }
}

/* ---------- Contact page ---------- */
.contact-form { background: var(--vc-white) !important; border: 1px solid var(--vc-line); border-radius: var(--vc-radius-lg) !important; box-shadow: var(--vc-shadow); padding: 28px 18px !important; }
.contact-form h3, .ft-m20 { font-family: var(--vc-display); font-size: 28px; color: var(--vc-ink); margin: 0 15px 16px; }
.contact-form input[type=text], .contact-form textarea { padding-left: 48px !important; }
.address-list li { display: block; overflow-wrap: anywhere; padding: 14px 0; border-bottom: 1px solid var(--vc-line); color: var(--vc-muted); font-size: 16px; }
.btn-2 { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 30px; border: 0; border-radius: 999px; background: var(--vc-gold); color: var(--vc-ink); font-weight: 600; font-size: 16px; }
.btn-2:hover { background: #f4b42e; }
.sub-container iframe { border-radius: var(--vc-radius-lg); margin-top: 32px; display: block; }

/* ---------- Footer ---------- */
.vc-footer { background: var(--vc-ink); background-image: var(--vc-stars); color: rgba(255,255,255,.78); padding: 64px 0 0; font-size: 15px; }
.vc-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px; padding-bottom: 44px; }
.vc-footer h3 { color: var(--vc-white); font-family: var(--vc-display); font-size: 21px; margin: 0 0 18px; }
.vc-footer__logo { display: inline-block; margin-bottom: 18px; }
.vc-footer__logo img { max-height: 90px; width: auto; max-width: 240px; object-fit: contain; }
.vc-footer__logo.has-plate { background: var(--vc-white); padding: 12px 16px; border-radius: var(--vc-radius); }
.vc-footer__logo.has-plate img { max-height: 64px; }
.vc-footer__brand p { max-width: 34ch; margin: 0; line-height: 1.7; }
.vc-footer__links, .vc-footer__contact { list-style: none; margin: 0; padding: 0; }
.vc-footer__links li { margin-bottom: 8px; }
.vc-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.vc-footer a:hover, .vc-footer a:focus { color: var(--vc-gold); }
.vc-footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; line-height: 1.6; }
.vc-footer__contact .fa { color: var(--vc-gold); width: 16px; text-align: center; margin-top: 5px; flex-shrink: 0; }
.vc-footer__contact strong { color: var(--vc-white); font-weight: 600; }
.vc-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.vc-footer__bottom p { margin: 0; font-size: 14px; color: rgba(255,255,255,.6); }
.vc-footer__social { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: inline-flex; align-items: center; justify-content: center; }
.vc-footer__social:hover { border-color: var(--vc-gold); }
@media (max-width: 991px) { .vc-footer__grid { grid-template-columns: 1fr 1fr; } .vc-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 575px) { .vc-footer__grid { grid-template-columns: 1fr; gap: 28px; } .vc-footer { padding-top: 48px; } }

/* Back to top */
.back-to-top {
	width: 46px; height: 46px; padding: 0 !important; border-radius: 50% !important;
	background: var(--vc-ink) !important; border: 0 !important; color: var(--vc-gold) !important;
	display: none; align-items: center; justify-content: center; font-size: 20px; line-height: 46px;
	text-align: center; box-shadow: 0 8px 22px rgba(28,20,51,.3);
}
.back-to-top:hover, .back-to-top:focus { background: var(--vc-gold) !important; color: var(--vc-ink) !important; }
#back-to-top + .tooltip { display: none !important; } /* the old back-to-top tooltip had no text */

/* ---------- Accessibility & motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.wow { visibility: visible !important; }
}

/* Bootstrap 3 adds clearfix ::before/::after to .container; they must not
   become items when a container is used as a flex or grid box. */
.vc-topbar__inner::before, .vc-topbar__inner::after,
.vc-header__inner::before, .vc-header__inner::after,
.vc-about__grid::before, .vc-about__grid::after { content: none !important; display: none !important; }

/* Legacy pages wrap the announcement in a .row placed outside any container;
   remove its negative margins so the page never scrolls sideways. */
body > .row { margin-left: 0; margin-right: 0; }

/* Order form polish */
.selectobx .select-wrapper .form-control { border: 0 !important; height: 44px; box-shadow: none !important; }
.order-table .btn-number.btn-danger { border-color: #bdb7cf; }
.order-table .btn-number[disabled] { opacity: .55; }
