/* =========================================================
   Ovino theme — main stylesheet
   ========================================================= */

@font-face {
	font-family: 'Nexa';
	src: url('../fonts/nexa/nexa-book.woff2') format('woff2'),
		url('../fonts/nexa/nexa-book.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nexa';
	src: url('../fonts/nexa/nexa-regular.woff2') format('woff2'),
		url('../fonts/nexa/nexa-regular.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nexa';
	src: url('../fonts/nexa/nexa-bold.woff2') format('woff2'),
		url('../fonts/nexa/nexa-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nexa';
	src: url('../fonts/nexa/nexa-heavy.woff2') format('woff2'),
		url('../fonts/nexa/nexa-heavy.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--blue: #20579c;
	--blue-dark: #163f75;
	--green: #0d9e4b;
	--green-dark: #0a8640;
	--text: #1c1f26;
	--text-muted: #5b6472;
	--bg-hero: #f5f3ef;
	--bg-mint: #eaf9f1;
	--bg-footer: #f4f7fc;
	--bg-footer-dark: #eceff4;
	--border-light: #e7e9ee;
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 10px;
	--container-width: 1200px;
	--font-heading: 'Nexa', 'Segoe UI', sans-serif;
	--font-body: 'Nexa', 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 .5em;
	color: var(--text);
}
.py-5 {
    margin-bottom: 20px;
}
p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--blue);
	color: #fff;
	padding: .75em 1.25em;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
}

.container {
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: 24px;
}

.text-blue { color: var(--blue); }
.text-green { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	transition: transform .15s ease, box-shadow .15s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--green {
	background: var(--green);
	color: #fff;
	box-shadow: 0 10px 24px -8px rgba(13, 158, 75, .55);
}

.btn--green:hover {
	background: var(--green-dark);
	color: #fff;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 16px;
	gap: 24px;
}

.site-branding img {
	max-height: 42px;
	width: auto;
	display: block;
}

.main-navigation .primary-menu {
	display: flex;
	gap: 36px;
}

.main-navigation .primary-menu a {
	font-weight: 600;
	color: var(--text);
	font-size: 1rem;
}

.main-navigation .primary-menu a:hover,
.main-navigation .primary-menu .current-menu-item > a {
	color: var(--blue);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.site-header__accent {
	height: 4px;
	background: linear-gradient(90deg, #bfe0f7, #8fc7ee 45%, #f3d9d2);
}

/* =========================================================
   Hero slider
   ========================================================= */
.hero-slider {
	position: relative;
	background: var(--bg-hero);
}

.hero-slider__viewport {
	overflow: hidden;
}

.hero-slider__track {
	display: flex;
	transition: transform .5s ease;
}

.hero-slider__slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	align-items: center;
	gap: 40px;
	padding-block: 64px 40px;
}

.hero__heading {
	font-size: clamp(2rem, 4vw, 2.85rem);
	color: var(--blue);
	text-transform: uppercase;
	margin-bottom: .5em;
}

.hero__text {
	font-size: 1.15rem;
	color: var(--blue-dark);
	font-weight: 600;
	max-width: 30em;
}

.hero__text p {
	margin: 0;
}

.hero__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.hero-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-bottom: 24px;
}

.hero-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #d3d6dc;
	cursor: pointer;
	transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.hero-slider__dot.is-active {
	background: var(--blue);
	width: 22px;
	border-radius: 6px;
}

/* =========================================================
   We Believe / Good Mood Food
   ========================================================= */
.believe {
	background: linear-gradient(180deg, #fff 55%, var(--bg-mint) 100%);
	padding-block: 80px;
}

.believe__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px;
}

.believe__kicker {
	font-weight: 800;
	margin-bottom: .25em;
}

.believe__heading {
	font-size: clamp(2.2rem, 4vw, 3rem);
	line-height: 1.05;
	margin-bottom: .4em;
}

.believe__subtext {
	font-weight: 700;
	color: var(--text);
	margin-bottom: 2em;
}

.believe__kids {
	max-width: 380px;
}

.believe__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.believe__item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: center;
	position: relative;
}

.believe__item-media {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4 / 3.1;
}

.believe__item-media::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-md);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
}

.believe__item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.believe__item:not(:last-child) .believe__item-media::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: 2px;
	height: 56px;
	border-left: 2px dashed #9fb7d9;
	z-index: 1;
}

.believe__item-body h3 {
	font-size: 1.4rem;
	margin-bottom: .35em;
}

.believe__item-body p {
	color: var(--text-muted);
	max-width: 32em;
}

/* =========================================================
   Our Story
   ========================================================= */
.story {
	padding-block: 90px 100px;
	text-align: center;
	border-top: 1px solid var(--border-light);
}

.story__logo {
	margin-inline: auto;
	max-height: 64px;
	width: auto;
	margin-bottom: 28px;
}

.story__kicker {
	color: var(--blue);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: .3em;
}

.story__heading {
	font-size: clamp(2rem, 4vw, 2.6rem);
	margin-bottom: .5em;
}

.story__text {
	max-width: 46em;
	margin-inline: auto;
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 48px;
}

.story__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	gap: 14px;
	max-width: 900px;
	margin-inline: auto;
	text-align: left;
}

.story__grid-item {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.story__grid-item--top { grid-column: 1; grid-row: 1; }
.story__grid-item--bottom { grid-column: 1; grid-row: 2; }
.story__grid-item--tall { grid-column: 2; grid-row: 1 / span 2; }

/* =========================================================
   App download banner
   ========================================================= */
.app-download {
	padding-bottom: 90px;
}

.app-download__card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	background: linear-gradient(120deg, #eef4fb 30%, #dbe8f6 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 340px;
	padding: 48px 56px;
	gap: 24px;
}

.app-download__content h2 {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin-bottom: .4em;
}

.app-download__content p {
	color: var(--text-muted);
	max-width: 30em;
	margin-bottom: 1.75em;
}

.app-download__media {
	justify-self: end;
	max-width: 340px;
}

/* Store badges (official badge artwork from assets/icons/) */
.store-badges {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.store-badge {
	display: inline-flex;
}

.store-badge img {
	height: 44px;
	width: auto;
	display: block;
}

.store-badges--sm .store-badge img {
	height: 34px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: var(--bg-footer);
}

.app-cta-strip {
	border-bottom: 1px solid var(--border-light);
}

.app-cta-strip__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-block: 28px;
	flex-wrap: wrap;
}

.app-cta-strip__logo img {
	max-height: 40px;
}

.app-cta-strip__label {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text);
	margin-right: auto;
}

.footer-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-block: 44px;
}

.footer-col__title {
	font-weight: 800;
	color: var(--text);
	margin-bottom: 14px;
}

.footer-col__title--caps {
	text-transform: uppercase;
	font-size: .82rem;
	letter-spacing: .04em;
	color: var(--blue-dark);
}

.footer-col__title--follow {
	margin-top: 28px;
}

.footer-address {
	color: var(--text-muted);
	margin-bottom: 1em;
}

.footer-contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	margin-bottom: .5em;
}

.footer-contact-line__icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.footer-contact-line a:hover {
	color: var(--blue);
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu a {
	color: var(--text-muted);
}

.footer-menu a:hover {
	color: var(--blue);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 14px;
}

.social-links__item {
	color: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity .15s ease;
}

.social-links__item:hover {
	opacity: .75;
}

.social-links__item svg {
	width: 26px;
	height: 26px;
}

.footer-bottom {
	background: var(--bg-footer-dark);
}

.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding-block: 18px;
	font-size: .9rem;
	color: var(--text-muted);
}

.footer-bottom__inner p {
	margin: 0;
}

/* =========================================================
   Generic page / post content
   ========================================================= */
.page-content {
	padding-block: 25px;
}

.page-article__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	color: var(--blue);
}

.page-article__meta {
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: .5em;
}

.page-article__thumbnail {
	margin: 24px 0 32px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.entry-content h2,
.entry-content h3 {
	color: var(--blue-dark);
}

.entry-content a {
	color: var(--blue);
	text-decoration: underline;
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.page-article__footer {
	margin-top: 32px;
}

.archive-header {
	margin-bottom: 40px;
}

.archive-header__title {
	color: var(--blue);
}

.post-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
}

.post-card {
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.post-card__thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card__meta {
	color: var(--text-muted);
	font-size: .85rem;
	margin-bottom: .5em;
}

.post-card__title {
	font-size: 1.2rem;
	margin-bottom: .5em;
}

.post-card__title a:hover {
	color: var(--blue);
}

.post-card__excerpt {
	color: var(--text-muted);
	flex: 1;
}

.post-card__link {
	color: var(--green);
	font-weight: 700;
	margin-top: 12px;
	display: inline-block;
}

.comments-area {
	margin-top: 56px;
	border-top: 1px solid var(--border-light);
	padding-top: 40px;
}

.comment-list {
	margin-bottom: 32px;
}

.comment-list li {
	margin-bottom: 24px;
}

.comment-respond input:not([type="submit"]),
.comment-respond textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	margin-bottom: 16px;
}

.comment-respond .form-submit input {
	background: var(--green);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
}

.error-404 {
	text-align: center;
	padding-block: 100px;
}

.error-404 h1 {
	color: var(--blue);
	font-size: 2.4rem;
}

.error-404 p {
	color: var(--text-muted);
	max-width: 34em;
	margin-inline: auto 1.5em;
}

.content-box {
    padding: 30px;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
}

table {
width: 100%;
border-collapse: collapse;
border: 0;
}

table th, table td {
border: 1px solid #ccc;
padding: 10px 0px 10px 10px;
text-align: left;
vertical-align: top;
}

table th {
background-color: #c2e5b5;
}

table tr:nth-child(even) {
background-color: #f9f9f9;
}
td.licno {
width: 150px;
}


/* Original artwork ratio: 1171 x 387 */
.page-id-38 p{
    margin:0px;
}

.unitlabel {
    position: relative;
    width: 100%;
    height: 33vw;
    min-height: 300px;
    overflow: hidden;
    background: #fff;
}

/* =====================================================
DS GROUP LOGO
===================================================== */

.ds-logo {
position: absolute;
left: 1.0%;
top: 0;
width: 13%;
height: 37%;
}

.ds-logo img {
width: 100%;
height: 100%;
display: block;
object-fit: contain;
}


/* =====================================================
MANUFACTURER DETAILS
===================================================== */

.manufacturer {
position: absolute;
left: 16.05%;
top: 0;
width: 83%;
}

.manufactured-by {
font-size: clamp(16px, 3.65vw, 25px);
line-height: 1.08;
font-weight: 400;
white-space: nowrap;
}

.company-name {
font-size: clamp(16px, 3.58vw, 22px);
line-height: 1.12;
font-weight: 700;
white-space: nowrap;
}

.address {
font-size: clamp(15px, 3.5vw, 20px);
line-height: 1.23;
font-weight: 400;
white-space: nowrap;
}


/* =====================================================
LEFT LICENCE NUMBER
===================================================== */

.licence-left {
position: absolute;
left: 0.85%;
top: 52.5%;
font-size: clamp(15px, 3.5vw, 20px);
line-height: 1.15;
font-weight: 400;

white-space: nowrap;
}


/* =====================================================
REGISTERED OFFICE
===================================================== */

.registered-office {
    position: absolute;
    left: 16%;
    top: 50%;
    font-size: clamp(15px, 3.5vw, 20px);
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}


/* =====================================================
FSSAI LOGO + LICENSE
===================================================== */

.fssai-section {
    position: absolute;
    left: 45%;
    top: 42%;
    width: 37%;
    text-align: center;
}

.fssai-logo {
width: 135px;
max-width: 35%;
height: auto;

display: block;
margin: 0 auto;
}

.fssai-license {
margin-top: -2px;
font-size: clamp(15px, 3.4vw, 20px);
line-height: 1.15;
font-weight: 400;
white-space: nowrap;
}

        
.headerBanner {
    width: 100%;
    overflow: hidden;
}

.headerBanner img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}



/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.believe__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.believe__kids {
		max-width: 320px;
	}

	.footer-columns {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 991px) {
    .headerBanner img {
        height: 220px;
    }
}
@media (max-width: 860px) {
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--border-light);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
	}

	.main-navigation.is-open {
		max-height: 320px;
	}

	.main-navigation .primary-menu {
		flex-direction: column;
		gap: 0;
		padding: 8px 24px 20px;
	}

	.main-navigation .primary-menu li {
		border-top: 1px solid var(--border-light);
	}

	.main-navigation .primary-menu a {
		display: block;
		padding: 14px 0;
	}

	.menu-toggle {
		display: flex;
	}

	.site-header {
		position: relative;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding-block: 40px 24px;
		text-align: center;
	}

	.hero__text {
		margin-inline: auto;
	}

	.hero__media {
		order: -1;
	}

	.believe__item {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.believe__item-media {
		max-width: 320px;
		margin-inline: auto;
	}

	.believe__item:not(:last-child) .believe__item-media::before {
		display: none;
	}

	.story__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.story__grid-item--tall,
	.story__grid-item--top,
	.story__grid-item--bottom {
		grid-column: 1;
		grid-row: auto;
		aspect-ratio: 4 / 3;
	}

	.app-download__card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 36px 28px;
	}

	.app-download__content p {
		margin-inline: auto 1.75em;
	}

	.store-badges {
		justify-content: center;
	}

	.app-download__media {
		justify-self: center;
		max-width: 240px;
	}

	.footer-columns {
		grid-template-columns: 1fr;
	}

	.app-cta-strip__inner {
		justify-content: center;
		text-align: center;
	}

	.app-cta-strip__label {
		margin-right: 0;
		width: 100%;
	}

	.footer-bottom__inner {
		justify-content: center;
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    box-sizing: border-box;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
  }

  td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
  }
    td.licno {
        width: 100%;
    }
  table th, table td {
    padding: 35px 0px 10px 10px !important;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: bold;
    white-space: normal;
    box-sizing: border-box;
  }
   .content-box h3 {
      font-size: 17px !important;
  }
  
    .unitlabel {
       height: 500px;
        min-height: 500px;
    }
    
    .fssai-logo {
        width: 12vw;
        max-width: 135px;
    }
    
     .headerBanner img {
        height: 180px;
    }
    
}  


@media screen and (max-width: 480px) {
    .unitlabel {
        height: auto;
        min-height: 600px;
        padding: 20px;
    }
    .headerBanner img {
        height: 150px;
    }
}


