/* ==========================================================================
   Rohiq Smart Menu — Frontend Styles  v1.8.0
   Premium maroon & gold theme — ultra-premium mobile-first design
   ========================================================================== */

/* ---------- Design Tokens ---------- */
.rohiq-menu {
	/* Dark theme */
	--rm-maroon:       #7a0c0c;
	--rm-maroon-deep:  #5a0808;
	--rm-maroon-mid:   #8f1010;
	--rm-maroon-dark:  #3d0505;
	--rm-bg:           #6b0c0c;
	--rm-bg-alt:       #7e0f0f;
	--rm-card-bg:      #f5ead8;
	--rm-card-bg2:     #ede0c8;
	--rm-gold:         #c9983a;
	--rm-gold-light:   #e8c06a;
	--rm-gold-pale:    #f2d88a;
	--rm-text-dark:    #1a0a00;
	--rm-text-mid:     #4a2a10;
	--rm-text-muted:   #7a5530;
	--rm-veg:          #2d8c4e;
	--rm-nonveg:       #c0392b;
	--rm-white:        #fff;
	--rm-sticky-offset: 0px;

	/* Accent passthrough from settings */
	--rohiq-accent:    var(--rm-gold);
	--rohiq-sticky-offset: var(--rm-sticky-offset);

	background: linear-gradient(160deg, var(--rm-maroon) 0%, var(--rm-maroon-deep) 60%, #3a0606 100%);
	color: var(--rm-gold-light);
	font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
	padding: calc(24px + var(--rm-sticky-offset, 0px)) 0 calc(80px + env(safe-area-inset-bottom, 0px));
	position: relative;
	box-sizing: border-box;
	min-height: 100vh;
}
.rohiq-menu *, .rohiq-menu *::before, .rohiq-menu *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Subtle damask/circular pattern overlay on the dark background */
.rohiq-menu::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		radial-gradient(ellipse 180px 180px at 20% 30%, rgba(255,255,255,.025) 0%, transparent 70%),
		radial-gradient(ellipse 240px 240px at 80% 70%, rgba(255,255,255,.02) 0%, transparent 70%),
		radial-gradient(ellipse 120px 120px at 60% 15%, rgba(255,255,255,.015) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.rohiq-menu > * { position: relative; z-index: 1; }

/* ============================================================
   MOBILE HEADER (visible only on mobile)
   ============================================================ */
.rohiq-mobile-header {
	display: none;
}
@media (max-width: 768px) {
	.rohiq-mobile-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		position: sticky;
		top: var(--rm-sticky-offset, 0px);
		z-index: 50;
		background: linear-gradient(135deg, var(--rm-maroon-deep) 0%, var(--rm-maroon-dark) 100%);
		border-bottom: 1px solid rgba(201,162,75,.25);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.rohiq-mobile-header__back {
		width: 38px; height: 38px;
		border-radius: 50%;
		border: 1.5px solid rgba(201,152,58,.4);
		background: rgba(255,255,255,.06);
		display: flex; align-items: center; justify-content: center;
		color: var(--rm-gold-light);
		cursor: pointer;
		transition: all .2s ease;
		text-decoration: none;
	}
	.rohiq-mobile-header__back:hover { border-color: var(--rm-gold); background: rgba(201,152,58,.15); }

	.rohiq-mobile-header__title-wrap {
		display: flex;
		align-items: center;
		gap: 8px;
		border: 1.5px solid rgba(201,152,58,.4);
		border-radius: 30px;
		padding: 6px 18px;
		background: rgba(255,255,255,.04);
		backdrop-filter: blur(6px);
	}
	.rohiq-mobile-header__logo {
		width: 22px; height: 22px;
		border-radius: 50%;
		object-fit: cover;
		display: block;
	}
	.rohiq-mobile-header__name {
		font-family: 'Cormorant Garamond', serif;
		font-weight: 600;
		font-size: 14px;
		letter-spacing: .18em;
		text-transform: uppercase;
		color: var(--rm-gold-light);
	}

	.rohiq-mobile-header__bag {
		width: 38px; height: 38px;
		border-radius: 10px;
		background: linear-gradient(135deg, var(--rm-gold-light), var(--rm-gold));
		display: flex; align-items: center; justify-content: center;
		color: var(--rm-maroon-dark);
		cursor: pointer;
		border: none;
		box-shadow: 0 4px 12px rgba(201,152,58,.5);
	}
}

/* ============================================================
   SEARCH BAR — decorative brace style
   ============================================================ */
.rohiq-menu__toolbar {
	padding: 12px 16px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto 20px;
}
.rohiq-menu__search {
	position: relative;
	flex: 1 1 260px;
	max-width: 100%;
}
.rohiq-menu__search-brace {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	color: var(--rm-gold);
	font-size: 26px;
	line-height: 1;
	font-weight: 300;
	pointer-events: none;
	opacity: .9;
}
.rohiq-menu__search-brace--left { left: 8px; }
.rohiq-menu__search-brace--right { right: 8px; }
.rohiq-menu__search svg {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--rm-gold);
	opacity: .8;
}
.rohiq-menu__search-input {
	width: 100%;
	background: rgba(90,8,8,.7);
	border: 1.5px solid rgba(201,152,58,.35);
	color: var(--rm-gold-light);
	padding: 13px 36px 13px 54px;
	border-radius: 30px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
	transition: border-color .2s ease, background .2s ease;
	letter-spacing: .02em;
}
.rohiq-menu__search-input:focus {
	border-color: var(--rm-gold);
	background: rgba(100,10,10,.85);
}
.rohiq-menu__search-input::placeholder { color: rgba(232,192,106,.55); }

/* Gold divider line under search */
.rohiq-search-divider {
	height: 2px;
	margin: 10px 16px 0;
	background: linear-gradient(90deg, transparent, var(--rm-gold) 20%, var(--rm-gold-pale) 50%, var(--rm-gold) 80%, transparent);
	border-radius: 2px;
	opacity: .6;
}

/* ============================================================
   VEG FILTER CHIPS
   ============================================================ */
.rohiq-menu__vegfilter { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 16px; }
.rohiq-chip {
	background: rgba(90,8,8,.6);
	border: 1.5px solid rgba(201,152,58,.3);
	color: rgba(232,192,106,.75);
	padding: 9px 18px;
	border-radius: 30px;
	font-family: inherit;
	font-size: 13px;
	letter-spacing: .02em;
	display: inline-flex; align-items: center; gap: 6px;
	cursor: pointer;
	transition: all .2s ease;
}
.rohiq-chip:hover { color: var(--rm-gold-light); border-color: var(--rm-gold); }
.rohiq-chip.is-active {
	background: linear-gradient(135deg, var(--rm-gold-light), var(--rm-gold));
	border-color: transparent;
	color: var(--rm-maroon-dark);
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(201,152,58,.4);
}

.rohiq-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.rohiq-dot--veg    { background: var(--rm-veg);    box-shadow: 0 0 0 2px rgba(45,140,78,.25); }
.rohiq-dot--nonveg { background: var(--rm-nonveg); box-shadow: 0 0 0 2px rgba(192,57,43,.25); }

/* ============================================================
   TABS
   ============================================================ */
.rohiq-menu__tabs {
	position: sticky;
	top: var(--rm-sticky-offset, 0px);
	z-index: 10;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 16px 16px;
	max-width: 1100px;
	margin: 0 auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(180deg, rgba(90,8,8,.97) 78%, rgba(90,8,8,0));
	backdrop-filter: blur(8px);
}
.rohiq-menu__tabs::-webkit-scrollbar { display: none; }
.rohiq-tab {
	flex: none;
	background: transparent;
	border: 1.5px solid rgba(201,152,58,.3);
	color: rgba(232,192,106,.7);
	padding: 10px 20px;
	border-radius: 30px;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.rohiq-tab:hover { color: var(--rm-gold-light); border-color: var(--rm-gold); }
.rohiq-tab.is-active {
	background: linear-gradient(135deg, var(--rm-gold-light), var(--rm-gold));
	border-color: transparent;
	color: var(--rm-maroon-dark);
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(201,152,58,.45);
}

/* ============================================================
   SECTIONS — "STARTERS", "SOUP", etc.
   ============================================================ */
.rohiq-menu__sections { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.rohiq-section {
	display: block;
	margin-bottom: 32px;
	scroll-margin-top: calc(var(--rm-sticky-offset, 0px) + 90px);
}
.rohiq-section:last-child { margin-bottom: 0; }
.rohiq-section.is-revealed { animation: rohiqFade .5s ease; }
@keyframes rohiqFade {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Section title — ALL CAPS GOLD e.g. "STARTERS" */
.rohiq-section__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 14px;
	padding: 10px 0 4px;
}
.rohiq-section__rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,152,58,.4), transparent); }
.rohiq-section__title {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 4vw, 22px);
	letter-spacing: .2em;
	text-transform: uppercase;
	margin: 0;
	white-space: nowrap;
	color: var(--rm-gold-light);
}
.rohiq-section__desc { color: rgba(232,192,106,.6); margin: 0 0 14px; font-size: 13px; }

/* ============================================================
   SUBCATEGORY ACCORDION ROWS (mobile) — "Chinese Veg", "Chinese Non-Veg"
   On mobile these are collapsible accordion rows inside a rounded group.
   On desktop they show as flat grid.
   ============================================================ */
.rohiq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
	margin: 0 0 24px;
}

/* ============================================================
   MENU ITEM CARDS — Beige/cream cards with image on right
   ============================================================ */
.rohiq-card.rohiq-pending { opacity: 0; transform: translateY(16px); }
.rohiq-card.rohiq-visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

.rohiq-card {
	position: relative;
	border-radius: 16px;
	height: 100%;
}
.rohiq-card:hover .rohiq-card__flip { transform: translateY(-3px); }

.rohiq-card__flip {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: flat !important;
	perspective: none !important;
	transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

.rohiq-card__face {
	background: linear-gradient(160deg, var(--rm-card-bg) 0%, var(--rm-card-bg2) 100%);
	border: 1.5px solid rgba(201,152,58,.3);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color .3s ease, box-shadow .3s ease;
}
.rohiq-card:hover .rohiq-card__face {
	border-color: rgba(201,152,58,.6);
	box-shadow: 0 16px 40px -16px rgba(0,0,0,.5);
}

/* FRONT face — horizontal layout: text left, image right */
.rohiq-card__face--front {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	opacity: 1; transform: scale(1); z-index: 2;
}

/* Text area */
.rohiq-card__body {
	flex: 1;
	padding: 14px 12px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Image area — right side */
.rohiq-card__media {
	position: relative;
	width: 105px;
	flex: none;
	background: #d4c2a0;
	overflow: hidden;
	border-radius: 0 14px 14px 0;
}
.rohiq-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.rohiq-card:hover .rohiq-card__media img { transform: scale(1.06); }

.rohiq-card__media-placeholder {
	width: 100%; height: 100%;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 6px;
	color: var(--rm-text-muted);
	background: repeating-linear-gradient(135deg, #e8d8b8, #e8d8b8 8px, #d8c8a8 8px, #d8c8a8 16px);
}
.rohiq-card__media-placeholder span { font-size: 10px; letter-spacing: .04em; text-transform: uppercase; opacity: .6; }

/* Badge — Chef's Pick */
.rohiq-badge {
	position: absolute;
	top: 8px; left: 8px;
	background: linear-gradient(135deg, var(--rm-gold-light), var(--rm-gold));
	color: var(--rm-maroon-dark);
	font-size: 10px; font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 20px;
	z-index: 3;
	box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Title row: veg dot + name */
.rohiq-card__title-row { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 4px; }
.rohiq-card__title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.25;
	color: var(--rm-text-dark);
	flex: 1;
}
.rohiq-spicy { font-size: 12px; flex: none; margin-top: 2px; }

.rohiq-card__desc {
	color: var(--rm-text-mid);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	flex: 1;
}

/* Prices */
.rohiq-card__prices { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 6px; }
.rohiq-price { display: flex; align-items: baseline; gap: 4px; font-family: 'Jost', sans-serif; }
.rohiq-price em   { font-style: normal; color: var(--rm-text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.rohiq-price strong { color: var(--rm-text-dark); font-size: 17px; font-weight: 800; }

/* Bottom row: heart + share + Add button */
.rohiq-card__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
}
.rohiq-card__icon-btn {
	width: 30px; height: 30px;
	border-radius: 50%;
	border: 1.5px solid rgba(100,30,10,.2);
	background: rgba(255,255,255,.5);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	color: var(--rm-text-muted);
	transition: all .2s ease;
	flex: none;
}
.rohiq-card__icon-btn:hover { border-color: var(--rm-gold); color: var(--rm-gold); background: rgba(201,152,58,.1); }

.rohiq-order-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-left: auto;
	padding: 8px 14px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--rm-maroon-mid), var(--rm-maroon-deep));
	color: #fff;
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(90,8,8,.4);
	transition: all .2s ease;
}
.rohiq-order-btn:hover { background: linear-gradient(135deg, var(--rm-maroon), var(--rm-maroon-dark)); box-shadow: 0 6px 16px rgba(90,8,8,.6); }
.rohiq-order-btn:active { transform: scale(.97); }

/* BACK face */
.rohiq-card__face--back {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px 18px;
	gap: 6px;
	background: linear-gradient(160deg, var(--rm-card-bg) 0%, var(--rm-card-bg2) 100%);
	opacity: 0; transform: scale(.97);
	pointer-events: none; z-index: 1;
	transition: opacity .35s ease, transform .35s ease;
}
.rohiq-card.is-flipped .rohiq-card__face--front { opacity: 0; transform: scale(1.02); pointer-events: none; z-index: 1; }
.rohiq-card.is-flipped .rohiq-card__face--back  { opacity: 1; transform: scale(1);    pointer-events: auto; z-index: 2; }

.rohiq-flip-back {
	position: absolute;
	top: 10px; left: 10px;
	width: 32px; height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(100,30,10,.25);
	background: rgba(255,255,255,.4);
	color: var(--rm-text-mid);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: all .2s ease;
}
.rohiq-flip-back:hover { border-color: var(--rm-gold); color: var(--rm-maroon); }

.rohiq-card__back-title {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600; font-size: 20px;
	color: var(--rm-text-dark); margin-top: 4px;
}
.rohiq-card__back-price { color: var(--rm-maroon); font-size: 15px; font-weight: 700; }
.rohiq-card__back-sub   { color: var(--rm-text-muted); font-size: 12px; margin: 2px 0 12px; }

.rohiq-order-options { display: flex; gap: 10px; width: 100%; }
.rohiq-order-option {
	flex: 1;
	display: flex; flex-direction: column; align-items: center;
	gap: 5px; padding: 10px 6px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 12px; font-weight: 500; letter-spacing: .02em;
	border: 1.5px solid rgba(100,30,10,.2);
	background: rgba(255,255,255,.4);
	transition: all .2s ease;
}
.rohiq-order-option:hover { transform: translateY(-2px); background: rgba(255,255,255,.6); }
.rohiq-order-option--whatsapp { color: #25a244; }
.rohiq-order-option--whatsapp:hover { border-color: #25a244; }
.rohiq-order-option--call { color: var(--rm-maroon); }
.rohiq-order-option--call:hover { border-color: var(--rm-maroon); }

/* ============================================================
   MISC
   ============================================================ */
.rohiq-card.is-hidden { display: none; }
.rohiq-menu__noresults { text-align: center; color: rgba(232,192,106,.6); padding: 40px 0; }
.rohiq-menu-empty      { color: rgba(232,192,106,.6); text-align: center; padding: 40px 0; }

/* ============================================================
   DESKTOP OVERRIDES  (≥769px — restore classic dark grid look)
   ============================================================ */
@media (min-width: 769px) {
	.rohiq-menu {
		background: radial-gradient(120% 140% at 50% -10%, #1b1a17 0%, #0b0b0c 55%);
		--rm-card-bg: #17171a;
		--rm-card-bg2: #121214;
		color: #f2ede3;
	}

	.rohiq-card__face {
		background: linear-gradient(180deg, #17171a, #121214);
		border-color: rgba(255,255,255,.08);
	}
	.rohiq-card__face--front { flex-direction: column; }
	.rohiq-card__media {
		width: 100%;
		border-radius: 14px 14px 0 0;
		aspect-ratio: 4 / 3;
		height: auto;
	}
	.rohiq-card__body { padding: 16px 16px 18px; gap: 0; }
	.rohiq-card__title { font-size: 20px; color: #f2ede3; }
	.rohiq-card__desc  { font-size: 13px; color: #a8a29a; margin: 6px 0 12px; }
	.rohiq-price strong { color: #c9a24b; font-size: 16px; }
	.rohiq-price em     { color: #a8a29a; }
	.rohiq-section__title { color: transparent; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: clamp(28px,4vw,40px); letter-spacing: .01em; background: linear-gradient(180deg,#fff,#c9a24b 160%); -webkit-background-clip: text; background-clip: text; }
	.rohiq-menu__search-input { background: #141416; border-color: rgba(255,255,255,.08); color: #f2ede3; }
	.rohiq-menu__search-input:focus { border-color: #c9a24b; }
	.rohiq-menu__search-input::placeholder { color: #a8a29a; }
	.rohiq-menu__search-brace { display: none; }
	.rohiq-menu__search svg { left: 14px; color: #a8a29a; }
	.rohiq-menu__search-input { padding-left: 38px; }
	.rohiq-search-divider { display: none; }
	.rohiq-chip  { background: #141416; border-color: rgba(255,255,255,.08); color: #a8a29a; }
	.rohiq-chip.is-active { background: #c9a24b; color: #17130a; }
	.rohiq-order-btn { background: linear-gradient(135deg, #e7c874, #c9a24b 70%); color: #201a0a; padding: 11px 16px; width: 100%; margin-top: 14px; border-radius: 30px; font-size: 13px; box-shadow: 0 8px 18px -8px rgba(201,162,75,.55); }
	.rohiq-card__actions { display: none; }
	.rohiq-card__prices { margin-top: auto; }
	.rohiq-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin: 24px 0 52px; }
	.rohiq-mobile-header { display: none !important; }
	.rohiq-menu { padding: calc(48px + var(--rm-sticky-offset,0px)) 20px 64px; }
	.rohiq-menu__toolbar { padding: 0; }
	.rohiq-menu__sections { padding: 0; }
	.rohiq-menu__vegfilter { padding: 0; }
}

/* ============================================================
   MOBILE OVERRIDES (≤768px)
   ============================================================ */
@media (max-width: 768px) {
	.rohiq-menu {
		padding-top: 0;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: calc(80px + env(safe-area-inset-bottom, 12px));
	}
	.rohiq-menu__toolbar { padding: 14px 16px 0; gap: 10px; }
	.rohiq-menu__vegfilter { padding: 10px 16px 0; }
	.rohiq-menu__sections { padding: 0 12px; }
	.rohiq-grid { grid-template-columns: 1fr; gap: 10px; margin: 10px 0 18px; }
	.rohiq-section { margin-bottom: 20px; }
	.rohiq-section__head { padding: 8px 0 2px; margin-bottom: 10px; }
	.rohiq-card__face--front { flex-direction: row; }
	.rohiq-card__media { width: 110px; border-radius: 0 14px 14px 0; aspect-ratio: unset; height: auto; }
}

@media (max-width: 480px) {
	.rohiq-card__media { width: 95px; }
	.rohiq-card__title { font-size: 17px; font-weight: 700; }
	.rohiq-card__desc  { font-size: 13px;  font-weight: 500; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.rohiq-card, .rohiq-section.is-revealed,
	.rohiq-card.rohiq-visible, .rohiq-card__flip,
	.rohiq-card--today::after { animation: none !important; transition: none !important; }
	.rohiq-card.rohiq-pending { opacity: 1; transform: none; }
}

/* ============================================================
   TODAY'S SPECIALS SECTION
   ============================================================ */
.rohiq-today {
	padding: 72px 20px;
	overflow: hidden;
	position: relative;
}
.rohiq-today::before {
	content: '';
	position: absolute;
	top: -20%; left: 50%;
	width: 900px; height: 900px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(201,162,75,.16) 0%, rgba(201,162,75,0) 65%);
	pointer-events: none;
	z-index: 0;
}
.rohiq-today__inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.rohiq-today__header { text-align: center; margin-bottom: 44px; }
.rohiq-today__eyebrow {
	display: flex; align-items: center; justify-content: center;
	gap: 14px;
	color: var(--rm-gold); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
	margin-bottom: 18px; font-family: 'Jost', sans-serif;
}
.rohiq-today__eyebrow-line { width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--rm-gold)); }
.rohiq-today__eyebrow-line:last-child { background: linear-gradient(90deg, var(--rm-gold), transparent); }
.rohiq-today__heading {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600; font-style: italic;
	font-size: clamp(38px, 6vw, 60px);
	line-height: 1.1; margin: 0 0 10px;
	background: linear-gradient(180deg, #fff, var(--rm-gold) 170%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.rohiq-today__sub { color: rgba(242,237,227,.6); font-size: 15px; }
.rohiq-today__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
	gap: 28px; margin-bottom: 48px;
}
.rohiq-card--today { box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.rohiq-card--today .rohiq-card__face--front { flex-direction: column; }
.rohiq-card--today .rohiq-card__media { width: 100%; border-radius: 14px 14px 0 0; aspect-ratio: 5 / 4; height: auto; }
.rohiq-card--today .rohiq-card__face { border-color: rgba(201,162,75,.28); }
.rohiq-card--today::after {
	content: ''; position: absolute; inset: -1px;
	border-radius: 15px; border: 1px solid rgba(201,162,75,.35);
	pointer-events: none;
	animation: rohiqGlow 3.2s ease-in-out infinite;
}
@keyframes rohiqGlow { 0%,100% { opacity:.35; } 50% { opacity:.85; } }
.rohiq-card--today .rohiq-card__title { font-size: 22px; }

.rohiq-today__cta { display: flex; justify-content: center; }
.rohiq-today__explore {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 34px; border-radius: 30px;
	background: transparent; border: 1.5px solid var(--rm-gold);
	color: var(--rm-gold); font-family: 'Jost', sans-serif;
	font-size: 14px; font-weight: 600; letter-spacing: .04em;
	text-transform: uppercase; text-decoration: none;
	transition: all .3s ease;
}
.rohiq-today__explore:hover { background: var(--rm-gold); color: #201a0a; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(201,162,75,.6); }
.rohiq-today__explore svg { transition: transform .3s ease; }
.rohiq-today__explore:hover svg { transform: translateX(3px); }

@media (max-width: 640px) {
	.rohiq-today { padding: 52px 16px; }
	.rohiq-today__grid { grid-template-columns: 1fr; gap: 16px; }
	.rohiq-today__heading { font-size: 32px; }
	.rohiq-today__explore { width: 100%; justify-content: center; padding: 14px 20px; }
}


