:root { --ink:      #1F1B16; --ink-2:    #4A3F33; --muted:    #8B7B6A; --cream:    #F7F1E3; --cream-2:  #EFE6D0; --paper:    #FFFFFF; --biscuit:  #C8804C; --biscuit-dark: #A66535;
--sage:     #6B8E5A; --sage-dark:#4F6C42;
--line:     #E4D9BF; --wa:       #25D366; --wa-dark:  #128C7E; --f-display: "Fraunces", "Georgia", serif;
--f-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--f-hand:    "Caveat", cursive; --wrap:     1160px;
--gap:      clamp(1rem, 2vw, 1.75rem);
--pad-y:    clamp(3.5rem, 8vw, 6.5rem);
--radius:   14px;
--radius-lg:22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--cream);
color: var(--ink);
font-family: var(--f-body);
font-size: 17px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--biscuit-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--ink); color: var(--cream); padding: .5rem .75rem; z-index: 100; } h1, h2, h3, h4 {
font-family: var(--f-display);
font-weight: 600;
color: var(--ink);
line-height: 1.1;
letter-spacing: -0.01em;
margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-family: var(--f-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-2); }
.eyebrow {
display: inline-block;
font-family: var(--f-body);
font-size: .78rem;
font-weight: 600;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--biscuit-dark);
padding-bottom: .35rem;
border-bottom: 1px solid var(--biscuit);
margin-bottom: 1.25rem;
}
.hand {
font-family: var(--f-hand);
font-size: 1.4rem;
color: var(--sage-dark);
line-height: 1;
} .btn {
display: inline-flex; align-items: center; gap: .55rem;
font-family: var(--f-body);
font-weight: 600;
font-size: .95rem;
padding: .8rem 1.35rem;
border-radius: 999px;
border: 1.5px solid var(--ink);
background: var(--ink);
color: var(--cream);
text-decoration: none;
transition: transform .15s ease, background .15s ease, color .15s ease;
cursor: pointer;
}
.btn:hover { transform: translateY(-1px); background: var(--biscuit-dark); border-color: var(--biscuit-dark); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #fff; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; } .site-header {
position: sticky; top: 0; z-index: 20;
background: rgba(247,241,227,.9);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--line);
}
.header-inner {
display: flex; align-items: center; justify-content: space-between;
padding: .9rem 0;
gap: 1.5rem;
}
.brand { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; color: var(--ink); }
.brand__paw { font-size: 1.4rem; transform: translateY(2px); }
.brand__name { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.01em; }
.brand__sub  { font-family: var(--f-hand); color: var(--sage-dark); font-size: 1.05rem; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-weight: 500; color: var(--ink); text-decoration: none; font-size: .96rem; position: relative; }
.nav a:not(.btn):hover { color: var(--biscuit-dark); }
.nav a.is-active:not(.btn)::after {
content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
height: 2px; background: var(--biscuit);
}
.nav__cta { margin-left: .5rem; }
.nav-toggle { display: none; }
@media (max-width: 800px) {
.nav-toggle {
display: inline-flex; flex-direction: column; justify-content: space-between;
width: 28px; height: 20px; background: none; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav {
position: fixed; inset: 64px 0 auto 0;
background: var(--cream); padding: 1.5rem;
flex-direction: column; align-items: flex-start; gap: 1.25rem;
border-bottom: 1px solid var(--line);
transform: translateY(-120%); transition: transform .3s ease;
}
.nav.is-open { transform: translateY(0); }
.nav__cta { margin-left: 0; }
} section { padding: var(--pad-y) 0; }
.section-shift { background: var(--cream-2); } .hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-grid {
display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1.5rem; }
.hero h1 span { color: var(--biscuit-dark); }
.hero-copy .lead { max-width: 32ch; margin: 1rem 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-note { display: flex; align-items: center; gap: .6rem; margin-top: 1.5rem; color: var(--muted); font-size: .9rem; }
.hero-note::before { content: ""; width: 40px; height: 1px; background: var(--muted); }
.hero-visual {
position: relative;
aspect-ratio: 4/5;
background: linear-gradient(135deg, var(--biscuit) 0%, var(--biscuit-dark) 100%);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 30px 60px -30px rgba(31,27,22,.35);
}
.hero-visual__label {
position: absolute; top: 1.5rem; left: 1.5rem;
background: var(--cream); padding: .5rem .85rem;
border-radius: 999px;
font-family: var(--f-hand); color: var(--ink); font-size: 1.1rem;
}
.hero-visual__paw {
position: absolute; inset: 0;
display: grid; place-items: center;
font-size: clamp(6rem, 14vw, 10rem);
color: rgba(255,255,255,.25);
}
.hero-visual__caption {
position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
color: var(--cream); font-family: var(--f-display); font-size: 1.05rem; line-height: 1.35;
background: rgba(31,27,22,.35); padding: .75rem 1rem; border-radius: 12px;
}
@media (max-width: 800px) {
.hero-grid { grid-template-columns: 1fr; }
} .trust-strip {
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
padding: 1.25rem 0;
background: var(--cream);
}
.trust-strip ul {
list-style: none; padding: 0; margin: 0;
display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem;
font-family: var(--f-body); font-size: .88rem; letter-spacing: .04em; color: var(--ink-2);
}
.trust-strip li::before { content: "🐾  "; } .section-head { max-width: 46rem; margin-bottom: 3rem; }
.products-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.products-grid--single { grid-template-columns: minmax(0, 520px); }
@media (max-width: 800px) { .products-grid { grid-template-columns: 1fr; } }
.recipe-card {
background: var(--paper);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 2rem 2rem 1.75rem;
display: flex; flex-direction: column;
transition: transform .2s ease, box-shadow .2s ease;
position: relative;
text-decoration: none;
color: var(--ink);
}
a.recipe-card:hover .recipe-card__name { color: var(--biscuit-dark); }
.recipe-card p { color: var(--ink-2); }
.recipe-card:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -20px rgba(31,27,22,.15); }
.recipe-card__index {
position: absolute; top: 1.25rem; right: 1.5rem;
font-family: var(--f-display); font-weight: 800;
font-size: 1.5rem; color: var(--line);
}
.recipe-card__name { font-size: 1.9rem; margin-bottom: .35rem; }
.recipe-card__tag  { color: var(--sage-dark); font-family: var(--f-hand); font-size: 1.25rem; margin-bottom: 1.25rem; }
.recipe-card__ingr {
font-size: .85rem; color: var(--muted);
border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
padding: 1rem 0; margin: 1rem 0 1.5rem;
}
.recipe-card__ingr strong { color: var(--ink-2); letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; display: block; margin-bottom: .35rem; }
.recipe-card__foot {
margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
padding-top: .5rem;
}
.recipe-card__price { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; } .product-hero {
display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
align-items: center;
padding-top: clamp(2.5rem, 5vw, 4rem);
}
.product-hero__visual {
aspect-ratio: 1/1;
background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
border-radius: var(--radius-lg);
display: grid; place-items: center;
font-size: clamp(6rem, 14vw, 10rem); color: rgba(255,255,255,.28);
position: relative;
}
.product-hero--liver .product-hero__visual {
background: linear-gradient(135deg, var(--biscuit) 0%, var(--biscuit-dark) 100%);
}
.product-hero__weight {
position: absolute; bottom: 1.25rem; left: 1.25rem;
background: var(--cream); color: var(--ink);
padding: .45rem .85rem; border-radius: 999px;
font-size: .82rem; font-weight: 600; letter-spacing: .06em;
}
@media (max-width: 800px) { .product-hero { grid-template-columns: 1fr; } }
.product-meta {
display: flex; gap: 1.5rem; margin: 1.5rem 0;
padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
font-size: .92rem;
}
.product-meta div strong { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.ingredients-list { padding: 0; list-style: none; margin: 1rem 0 1.5rem; }
.ingredients-list li {
padding: .55rem 0; border-bottom: 1px dashed var(--line);
display: flex; align-items: center; gap: .75rem;
}
.ingredients-list li::before {
content: "🌾"; font-size: .95rem;
}
.product-cta {
background: var(--ink); color: var(--cream);
padding: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg);
display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
}
.product-cta h3 { color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.product-cta p  { color: rgba(247,241,227,.75); margin: 0; }
.product-cta .btn--wa { justify-self: end; }
@media (max-width: 700px) {
.product-cta { grid-template-columns: 1fr; }
.product-cta .btn--wa { justify-self: start; }
} .story-grid {
display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem);
align-items: start;
}
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }
.story-visual {
aspect-ratio: 3/4;
background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
border-radius: var(--radius-lg);
position: relative;
}
.story-visual__quote {
position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
font-family: var(--f-hand); color: var(--cream); font-size: 1.4rem; line-height: 1.3;
}
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 800px) { .process { grid-template-columns: 1fr; } }
.process-step { padding: 1.5rem; border-left: 2px solid var(--biscuit); background: var(--paper); border-radius: 0 var(--radius) var(--radius) 0; }
.process-step__num { font-family: var(--f-display); font-weight: 800; color: var(--biscuit-dark); font-size: 1.1rem; letter-spacing: .05em; }
.process-step h3 { font-size: 1.25rem; margin: .35rem 0 .5rem; }
.process-step p { margin: 0; color: var(--ink-2); font-size: .95rem; } .contact-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
background: var(--paper);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 2rem;
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.contact-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.contact-card li { padding: .65rem 0; border-bottom: 1px dashed var(--line); }
.contact-card li:last-child { border-bottom: 0; }
.contact-card li strong { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; } .big-cta {
background: var(--ink); color: var(--cream);
border-radius: var(--radius-lg);
padding: clamp(2.5rem, 6vw, 4.5rem);
text-align: center;
}
.big-cta h2 { color: var(--cream); }
.big-cta p { color: rgba(247,241,227,.75); max-width: 40ch; margin: 1rem auto 2rem; } .site-footer {
background: var(--cream-2);
border-top: 1px solid var(--line);
padding: 4rem 0 1.5rem;
margin-top: 4rem;
}
.footer-grid {
display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem;
padding-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__name { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; margin: .5rem 0 .35rem; }
.footer-brand__note { color: var(--muted); font-size: .9rem; margin: 0; max-width: 30ch; }
.footer-col h4 { margin-bottom: .85rem; color: var(--ink-2); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .3rem 0; }
.footer-col a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--biscuit-dark); }
.footer-cta p { color: var(--ink-2); font-size: .9rem; margin: 0 0 1rem; }
.footer-bottom {
border-top: 1px solid var(--line);
padding-top: 1.5rem;
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
font-size: .82rem; color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-note { max-width: 40ch; } @media (prefers-reduced-motion: reduce) {
* { animation: none !important; transition: none !important; }
html { scroll-behavior: auto; }
}  .health-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (max-width: 800px) { .health-grid { grid-template-columns: 1fr; } }
.health-card {
background: var(--paper); border: 1px solid var(--line);
border-radius: var(--radius-lg); padding: 2rem;
position: relative;
}
.health-card__num {
position: absolute; top: 1.25rem; right: 1.5rem;
font-family: var(--f-display); font-weight: 800;
font-size: 1.4rem; color: var(--line);
}
.health-card h3 { font-size: 1.5rem; margin-bottom: .75rem; color: var(--biscuit-dark); }
.health-card p { margin: 0; color: var(--ink-2); } .ingredient-pills {
list-style: none; padding: 0; margin: 0;
display: flex; flex-wrap: wrap; gap: .6rem;
}
.ingredient-pills li {
background: var(--paper); border: 1px solid var(--line);
border-radius: 999px; padding: .55rem 1.1rem;
font-size: .92rem; color: var(--ink);
} .promise-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 700px) { .promise-grid { grid-template-columns: 1fr; } }
.promise {
border-left: 2px solid var(--sage);
padding: 1rem 1.25rem; background: var(--paper);
border-radius: 0 var(--radius) var(--radius) 0;
}
.promise h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.promise p { margin: 0; color: var(--ink-2); font-size: .95rem; } .plans-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
margin-top: 3rem;
}
@media (max-width: 800px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
background: var(--paper); border: 1.5px solid var(--line);
border-radius: var(--radius-lg);
padding: 2.5rem 2rem 2rem;
display: flex; flex-direction: column;
position: relative;
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -20px rgba(31,27,22,.15); border-color: var(--biscuit); }
.plan-card__badge {
position: absolute; top: -12px; left: 2rem;
background: var(--biscuit); color: var(--cream);
padding: .3rem .85rem; border-radius: 999px;
font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.plan-card:nth-child(2) .plan-card__badge { background: var(--sage-dark); }
.plan-card__name { font-size: 1.55rem; margin: 0 0 1rem; }
.plan-card__price { display: flex; align-items: baseline; gap: .35rem; margin: 0 0 1rem; }
.plan-card__amt { font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; color: var(--ink); }
.plan-card__unit { color: var(--muted); font-size: 1rem; }
.plan-card__lead { color: var(--ink-2); margin-bottom: 1.25rem; }
.plan-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.plan-card__features li {
padding: .6rem 0; border-top: 1px dashed var(--line);
color: var(--ink); font-size: .95rem;
display: flex; align-items: center; gap: .6rem;
}
.plan-card__features li::before {
content: "✓"; color: var(--sage-dark); font-weight: 700;
}
.plan-card .btn { margin-top: auto; align-self: flex-start; } .cat-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.cat-card {
background: var(--paper); border: 1px solid var(--line);
border-radius: var(--radius-lg); overflow: hidden;
text-decoration: none; color: var(--ink);
display: flex; flex-direction: column;
position: relative;
transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -20px rgba(31,27,22,.15); }
.cat-card__index {
position: absolute; top: 1rem; right: 1.25rem;
font-family: var(--f-display); font-weight: 800;
font-size: 1.1rem; color: var(--cream);
background: rgba(31,27,22,.5); border-radius: 999px;
width: 32px; height: 32px; display: grid; place-items: center;
z-index: 2;
}
.cat-card__img {
aspect-ratio: 4/3;
background: linear-gradient(135deg, var(--biscuit) 0%, var(--biscuit-dark) 100%);
background-size: cover; background-position: center;
}
.cat-card__img--fallback {
display: grid; place-items: center;
font-size: 3.5rem; color: rgba(255,255,255,.35);
}
.cat-card:nth-child(3n+2) .cat-card__img--fallback {
background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}
.cat-card:nth-child(3n) .cat-card__img--fallback {
background: linear-gradient(135deg, #C97B4A 0%, #7A9B6E 100%);
}
.cat-card__body { padding: 1.5rem; }
.cat-card__body h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.cat-card__body p { margin: 0 0 .75rem; color: var(--muted); font-size: .9rem; }
.cat-card__more { color: var(--biscuit-dark); font-weight: 600; font-size: .9rem; } .sub-teaser {
background: var(--ink); color: var(--cream);
border-radius: var(--radius-lg);
padding: clamp(2rem, 5vw, 3.5rem);
display: grid; grid-template-columns: 2fr 1fr; align-items: center; gap: 2rem;
}
.sub-teaser h2 { color: var(--cream); }
.sub-teaser p { color: rgba(247,241,227,.75); margin: 1rem 0 1.5rem; }
.sub-teaser__visual {
font-size: clamp(4rem, 10vw, 7rem);
text-align: center; opacity: .8;
}
@media (max-width: 700px) { .sub-teaser { grid-template-columns: 1fr; } .sub-teaser__visual { display:none; } } .blog-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem;
}
.blog-card {
background: var(--paper); border: 1px solid var(--line);
border-radius: var(--radius-lg); overflow: hidden;
text-decoration: none; color: var(--ink);
display: flex; flex-direction: column;
transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -20px rgba(31,27,22,.15); }
.blog-card__thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { color: var(--muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.blog-card__title { font-size: 1.25rem; margin: .5rem 0 .5rem; }
.blog-card__excerpt { color: var(--ink-2); font-size: .95rem; margin: 0 0 .75rem; }
.blog-card__more { color: var(--biscuit-dark); font-weight: 600; font-size: .9rem; } .post-single { }
.post-single h1 { font-size: clamp(2rem, 4vw, 3rem); }
.post-meta { color: var(--muted); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.post-content { font-size: 1.05rem; }
.post-content p, .post-content ul, .post-content ol { margin-bottom: 1.2em; }
.post-content h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }
.post-content h3 { font-size: 1.3rem; margin: 1.5rem 0 .5rem; }
.post-content ul, .post-content ol { padding-left: 1.4rem; }
.post-content a { color: var(--biscuit-dark); }
.post-content img { border-radius: var(--radius); margin: 1rem 0; }
.post-nav {
display: flex; justify-content: space-between; gap: 2rem;
margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.post-nav__link { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); max-width: 45%; }
.post-nav__link--next { text-align: right; margin-left: auto; }
.post-nav__dir { color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.post-nav__title { font-family: var(--f-display); font-weight: 600; margin-top: .25rem; }
.pagination-wrap { text-align: center; margin-top: 3rem; }
.pagination-wrap .page-numbers {
display: inline-block; padding: .5rem .85rem; margin: 0 .15rem;
border-radius: 8px; text-decoration: none; color: var(--ink);
border: 1px solid var(--line);
}
.pagination-wrap .page-numbers.current { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pagination-wrap .page-numbers:hover:not(.current) { background: var(--cream-2); } .wc-section { padding: var(--pad-y) 0; }
.woocommerce ul.products,
.woocommerce-page ul.products {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 2rem !important;
padding: 0 !important; margin: 0 !important;
list-style: none !important;
}
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .woocommerce ul.products { grid-template-columns: 1fr !important; } }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
background: var(--paper) !important;
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 1.5rem !important;
margin: 0 !important; width: auto !important;
text-align: left !important;
display: flex !important; flex-direction: column;
transition: transform .2s ease, box-shadow .2s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(31,27,22,.15); }
.woocommerce ul.products li.product a { text-decoration: none; color: var(--ink); }
.woocommerce ul.products li.product img {
margin: 0 0 1rem !important;
border-radius: var(--radius);
aspect-ratio: 1/1; object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
font-family: var(--f-display) !important;
font-size: 1.15rem !important; font-weight: 600 !important;
padding: 0 !important; margin: .25rem 0 .5rem !important;
line-height: 1.3;
}
.woocommerce ul.products li.product .price {
color: var(--biscuit-dark) !important;
font-weight: 600; font-size: 1rem !important;
margin: 0 0 1rem !important;
min-height: 1.4em;
}
.woocommerce ul.products li.product .price del { color: var(--muted) !important; opacity: .7; margin-right: .35rem; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .btn {
margin-top: auto !important;
display: inline-flex !important; align-items: center; gap: .5rem;
background: var(--wa) !important; color: #fff !important;
border: 1.5px solid var(--wa) !important;
padding: .7rem 1.1rem !important; border-radius: 999px !important;
font-family: var(--f-body) !important; font-weight: 600 !important;
font-size: .9rem !important;
text-transform: none !important; letter-spacing: 0 !important;
align-self: flex-start;
}
.woocommerce ul.products li.product .button:hover { background: var(--wa-dark) !important; border-color: var(--wa-dark) !important; }
.woocommerce ul.products li.product .onsale {
background: var(--biscuit) !important; color: var(--cream) !important;
border-radius: 999px !important; padding: .3rem .7rem !important;
font-size: .7rem !important; letter-spacing: .06em !important;
min-height: auto !important; min-width: auto !important;
top: 1rem !important; left: 1rem !important; right: auto !important;
line-height: 1 !important;
} .woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 800px) { .woocommerce div.product { grid-template-columns: 1fr; } }
.woocommerce div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; margin: 0 !important; }
.woocommerce div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; }
.woocommerce div.product .product_title {
font-family: var(--f-display) !important;
font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
font-weight: 700 !important;
margin-bottom: .5rem !important;
}
.woocommerce div.product .price {
color: var(--biscuit-dark) !important;
font-family: var(--f-display) !important;
font-size: 1.75rem !important; font-weight: 600 !important;
margin: 0 0 1.5rem !important;
}
.woocommerce div.product .price del { color: var(--muted) !important; font-size: 1.2rem; opacity: .6; margin-right: .5rem; }
.woocommerce-product-details__short-description { color: var(--ink-2); font-size: 1.05rem; margin: 1.5rem 0; }
.woocommerce div.product .product_meta { font-size: .85rem; color: var(--muted); padding-top: 1rem; border-top: 1px dashed var(--line); }
.woocommerce div.product .woocommerce-tabs { margin-top: 3rem; grid-column: 1 / -1; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line) !important; padding: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
background: none !important; border: 0 !important;
padding: 0 !important; margin: 0 1.5rem 0 0 !important;
border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
padding: .75rem 0 !important;
font-family: var(--f-body) !important; font-weight: 600 !important;
color: var(--ink-2) !important;
border-bottom: 2px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
color: var(--biscuit-dark) !important;
border-bottom-color: var(--biscuit);
}
.woocommerce div.product .woocommerce-tabs .panel { padding: 2rem 0 !important; background: none !important; border: 0 !important; }
.dedot-enquire-box { margin: 1.5rem 0; }
.dedot-enquire { display: inline-flex !important; align-items: center; gap: .55rem; }
.dedot-enquire-note { color: var(--muted); font-size: .88rem; margin: .75rem 0 0; max-width: 40ch; } .dedot-cat-chips {
display: flex; flex-wrap: wrap; gap: .5rem;
margin: 0 0 2rem;
}
.chip {
padding: .5rem 1rem; border-radius: 999px;
background: var(--paper); border: 1px solid var(--line);
color: var(--ink); text-decoration: none;
font-size: .88rem; font-weight: 500;
transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { background: var(--cream-2); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); } .woocommerce .woocommerce-breadcrumb { display: none; }
.woocommerce .woocommerce-result-count { color: var(--muted); font-size: .85rem; margin-bottom: 1rem; }
.woocommerce .woocommerce-ordering { margin-bottom: 1rem; }
.woocommerce .woocommerce-ordering select {
padding: .5rem .75rem; border-radius: 8px; border: 1px solid var(--line);
font-family: var(--f-body); background: var(--paper);
} .woocommerce .woocommerce-notices-wrapper .woocommerce-message { background: var(--sage) !important; color: #fff !important; }  .brand--img { gap: 0; padding: .25rem 0; }
.brand__logo { height: 50px; width: auto; display: block; }
@media (max-width: 500px) { .brand__logo { height: 40px; } }
.footer-brand__logo { height: 55px; width: auto; display: block; margin-bottom: .75rem; } .woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce .related > ul.products,
.woocommerce .upsells > ul.products,
.woocommerce .cross-sells > ul.products,
.wc-block-grid__products,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5,
ul.products.columns-6 {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 2rem !important;
padding: 0 !important;
margin: 0 !important;
list-style: none !important;
width: 100% !important;
float: none !important;
} .woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
content: none !important;
display: none !important;
} .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last,
.woocommerce-page ul.products li.product.first,
.woocommerce-page ul.products li.product.last {
width: auto !important;
max-width: 100% !important;
margin: 0 !important;
padding: 1.5rem !important;
float: none !important;
clear: none !important;
list-style: none !important;
box-sizing: border-box;
} @media (max-width: 900px) {
.woocommerce ul.products,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4 {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}
@media (max-width: 560px) {
.woocommerce ul.products,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4 {
grid-template-columns: 1fr !important;
}
} .woocommerce .related,
.woocommerce .upsells {
grid-column: 1 / -1;
margin-top: 4rem;
}
.woocommerce .related > h2,
.woocommerce .upsells > h2 {
font-family: var(--f-display);
font-size: 1.8rem;
margin-bottom: 1.5rem;
} .woocommerce ul.products li.product .wd-buttons,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product .wd-hover-content { display: none !important; } .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
display: block;
width: 100%;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link img,
.woocommerce ul.products li.product > a img {
width: 100% !important;
height: auto !important;
aspect-ratio: 1/1;
object-fit: cover;
}.cycloneslider-template-dark{
position:relative;
margin-bottom: 30px;
outline: none;
}
.cycloneslider-template-dark .cycloneslider-slides{
position:relative;
overflow:hidden;
}
.cycloneslider-template-dark .cycloneslider-slide{
text-align: center;
width: 100%; display: none; background: #fff; }
.cycloneslider-template-dark .cycle-slide{
display: block; }
.cycloneslider-template-dark div[data-cycle-dynamic-height="off"] .cycloneslider-slide-image{
height: 100%; }
.cycloneslider-template-dark .cycloneslider-slide:first-child, .cycloneslider-template-dark .cycle-sentinel + .cycloneslider-slide{ display: block;
}
.cycloneslider-template-dark .cycloneslider-slide img{
display:block;
margin:0 auto;
padding:0;
max-width:100%;
border:0;
}
.cycloneslider-template-dark.cycloneslider-width-full .cycloneslider-slide img{
width:100%;
}
.cycloneslider-template-dark .cycloneslider-slide iframe, .cycloneslider-template-dark .cycloneslider-slide object,
.cycloneslider-template-dark .cycloneslider-slide embed {
position: absolute;
left: 0;
top: 0;
width: 100% !important; height: 100% !important; }
.cycloneslider-template-dark .cycloneslider-slide-youtube,
.cycloneslider-template-dark .cycloneslider-slide-vimeo{
background: #000;
}
.cycloneslider-template-dark .cycloneslider-slide-custom{
min-height: 100%;
}
.cycloneslider-template-dark div[data-cycle-dynamic-height="on"] .cycloneslider-slide-custom {
min-height: 100px; }
.cycloneslider-template-dark .cycloneslider-slide-testimonial{
font-style: italic;
}
.cycloneslider-template-dark .cycloneslider-slide-testimonial blockquote{
margin-bottom: 0;
}
.cycloneslider-template-dark .cycloneslider-slide-testimonial p{
margin: 0;
}
.cycloneslider-template-dark .cycloneslider-slide-testimonial .cycloneslider-testimonial-author{
text-align: right;
font-style: normal;
}
.rtl .cycloneslider-template-dark .cycloneslider-slide-testimonial .cycloneslider-testimonial-author{
text-align: left;
}
.cycloneslider-template-dark .cycloneslider-slide-testimonial .cycloneslider-testimonial-author a{
text-decoration: none;
} .cycloneslider-template-dark .cycloneslider-prev,
.cycloneslider-template-dark .cycloneslider-next,
.cycloneslider-template-dark .cycloneslider-pager span {
cursor:pointer;
}
.cycloneslider-template-dark .cycloneslider-prev,
.cycloneslider-template-dark .cycloneslider-next{
position:absolute;
top:50%;
z-index:501;
display: block;
margin-top:-15px;
width:30px;
height:30px;
background: #000;
opacity: 0.6;
-webkit-transition: all 0.5s ;
-moz-transition: all 0.5s ;
-ms-transition: all 0.5s ;
-o-transition: all 0.5s ;
transition: all 0.5s ;
}
.cycloneslider-template-dark .cycloneslider-prev:hover,
.cycloneslider-template-dark .cycloneslider-next:hover{
opacity: 1;
}
.cycloneslider-template-dark .cycloneslider-prev.disabled,
.cycloneslider-template-dark .cycloneslider-next.disabled{
display: none;
}
.cycloneslider-template-dark .arrow{
position: absolute;
top: 50%;
left: 50%;
margin-top: -6px;
width: 0;
height: 0;
}
.cycloneslider-template-dark .cycloneslider-prev{
left:0;
}
.rtl .cycloneslider-template-dark .cycloneslider-prev{
left:auto;
right:0;
}
.cycloneslider-template-dark .cycloneslider-prev .arrow{
margin-left: -4px;
border-top: 6px solid transparent;
border-right: 6px solid #fff;
border-bottom: 6px solid transparent;
}
.rtl .cycloneslider-template-dark .cycloneslider-prev .arrow{
margin-left: -2px;
border: 0;
border-top: 6px solid transparent;
border-left: 6px solid #fff;
border-bottom: 6px solid transparent;
}
.cycloneslider-template-dark .cycloneslider-next{
right:0;
}
.rtl .cycloneslider-template-dark .cycloneslider-next{
right:auto;
left:0;
}
.cycloneslider-template-dark .cycloneslider-next .arrow{
margin-left: -2px;
border-top: 6px solid transparent;
border-left: 6px solid #fff;
border-bottom: 6px solid transparent;
}
.rtl .cycloneslider-template-dark .cycloneslider-next .arrow{
margin-left: -4px;
border: 0;
border-top: 6px solid transparent;
border-right: 6px solid #fff;
border-bottom: 6px solid transparent;
} .cycloneslider-template-dark .cycloneslider-pager{
position:absolute;
bottom:-22px;
left:0;
z-index:100;
width: 100%;
height: 12px;
text-align: center;
}
.cycloneslider-template-dark .cycloneslider-pager span {
display: inline-block;
margin: 0 4px;
width: 12px;
height: 12px;
background: #333;
vertical-align: top;
font-size: 0;
line-height: 0;
-webkit-box-shadow: 1px 1px 2px 0px #000;
box-shadow: 1px 1px 2px 0px #000;
}
.ie7 .cycloneslider-template-dark .cycloneslider-pager span{
zoom: 1; *display: inline; }
.cycloneslider-template-dark .cycloneslider-pager span.cycle-pager-active {
background-color: #ccc;
} .cycloneslider-template-dark .cycloneslider-caption{
position:absolute;
top:0;
left:0;
z-index:500;
max-width:60%;
margin: 15% 30px;
text-align: left;
}
.rtl .cycloneslider-template-dark .cycloneslider-caption{
text-align: right;
left: auto;
right:0;
}
.cycloneslider-template-dark .cycloneslider-caption-title,
.cycloneslider-template-dark .cycloneslider-caption-description,
.cycloneslider-template-dark .cycloneslider-caption-more{
display: none;
float: left;
clear: both;
margin-bottom:1px;
background: #000;
padding:10px;
opacity: 0.8;
}
.rtl .cycloneslider-template-dark .cycloneslider-caption-title,
.rtl .cycloneslider-template-dark .cycloneslider-caption-description,
.rtl .cycloneslider-template-dark .cycloneslider-caption-more{
float: right;
}
.cycloneslider-template-dark .cycloneslider-caption-title{
color:#fff;
opacity: 0.7;
font-size:24px;
line-height:1.2;
}
.cycloneslider-template-dark .cycloneslider-caption-description{
color:#FC3;
font-size:12px;
line-height:1.5;
}
.cycloneslider-template-dark .cycloneslider-caption-more{
color:#fff;
font-size:10px;
text-decoration: none;
text-transform: uppercase;
line-height:1.5;
}
.cycloneslider-template-dark .cycloneslider-caption-more:hover{
color: #FC3;
} @media (max-width: 960px) {
.cycloneslider-template-dark .cycloneslider-caption{
max-width: 100%;
}
}
@media (max-width: 480px) {
.cycloneslider-template-dark .cycloneslider-caption{
display: none;
}
}.cycloneslider-template-default{
position:relative;
}
.cycloneslider-template-default .cycloneslider-slides{
position:relative;
overflow:hidden;
}
.cycloneslider-template-default .cycloneslider-slide{
text-align: center;
width: 100%; display: none; }
.cycloneslider-template-default div[data-cycle-dynamic-height="off"] .cycloneslider-slide-image{
height: 100%; }
.cycloneslider-template-default .cycloneslider-slide:first-child, .cycloneslider-template-default .cycle-sentinel + .cycloneslider-slide{ display: block;
}
.cycloneslider-template-default .cycloneslider-slide img{
display:block;
margin:0 auto;
padding:0;
max-width:100%;
border:0;
}
.cycloneslider-template-default.cycloneslider-width-full .cycloneslider-slide img{
width:100%;
}
.cycloneslider-template-default .cycloneslider-slide iframe, .cycloneslider-template-default .cycloneslider-slide object,
.cycloneslider-template-default .cycloneslider-slide embed {
position: absolute;
left: 0;
top: 0;
width: 100% !important; height: 100% !important; }
.cycloneslider-template-default .cycloneslider-slide-youtube,
.cycloneslider-template-default .cycloneslider-slide-vimeo{
background: #000;
}
.cycloneslider-template-default .cycloneslider-slide-custom{
min-height: 100%;
background: #fff;
}
.cycloneslider-template-default div[data-cycle-dynamic-height="on"] .cycloneslider-slide-custom{
min-height: 100px; } .cycloneslider-template-default .cycloneslider-prev,
.cycloneslider-template-default .cycloneslider-next,
.cycloneslider-template-default .cycloneslider-pager span {
cursor:pointer;
}
.cycloneslider-template-default .cycloneslider-prev,
.cycloneslider-template-default .cycloneslider-next{
position:absolute;
top:50%;
z-index:501;
display: block;
margin-top:-22px;
width:26px;
height:44px;
background: url(//dedot.in/wp-content/plugins/cyclone-slider/templates/default/images/sprite-arrows.png) no-repeat;
opacity: 0;
-webkit-transition: all 0.5s ;
-moz-transition: all 0.5s ;
-ms-transition: all 0.5s ;
-o-transition: all 0.5s ;
transition: all 0.5s ;
}
.cycloneslider-template-default .cycloneslider-prev{
left:10px;
background-position:0 0;
}
.rtl .cycloneslider-template-default .cycloneslider-prev{
left:auto;
right:10px;
background-position:-29px 0;
}
.cycloneslider-template-default .cycloneslider-next{
right:10px;
background-position:-29px 0;
}
.rtl .cycloneslider-template-default .cycloneslider-next{
right:auto;
left:10px;
background-position:0 0;
}
.cycloneslider-template-default:hover .cycloneslider-prev,
.cycloneslider-template-default:hover .cycloneslider-next{
opacity: 0.4;
}
.cycloneslider-template-default .cycloneslider-prev:hover,
.cycloneslider-template-default .cycloneslider-next:hover{
opacity: 1;
}
.cycloneslider-template-default .cycloneslider-prev.disabled,
.cycloneslider-template-default .cycloneslider-next.disabled{
display: none;
} .cycloneslider-template-default .cycloneslider-pager{
position:absolute;
z-index:200;
top:20px;
right:20px;
}
.rtl .cycloneslider-template-default .cycloneslider-pager{
right: auto;
left:20px;
}
.cycloneslider-template-default .cycloneslider-pager span {
display: inline-block;
margin: 0 3px;
width: 12px;
height: 12px;
border-radius: 6px;
background: #333;
vertical-align: top;
font-size: 0;
line-height: 0;
}
.ie7 .cycloneslider-template-default .cycloneslider-pager span{
zoom: 1; *display: inline; }
.cycloneslider-template-default .cycloneslider-pager span.cycle-pager-active {
background-color: #ccc;
} .cycloneslider-template-default .cycloneslider-caption{
position:absolute;
left:0;
bottom:0;
width:100%;
z-index:99;
background: url(//dedot.in/wp-content/plugins/cyclone-slider/templates/default/images/bg-caption.png);
color:#fff;
text-align: left;
}
.rtl .cycloneslider-template-default .cycloneslider-caption{
text-align: right;
}
.cycloneslider-template-default .cycloneslider-caption-title{
padding:10px 20px 5px 20px;
font-size:22px;
line-height:1;
margin-bottom:0;
}
.cycloneslider-template-default .cycloneslider-caption-description{
padding:0 20px 15px 20px;
line-height:1.5;
font-size:12px;
}.cycloneslider-template-standard{
position:relative;
margin-bottom: 30px;
outline: none;
}
.cycloneslider-template-standard .cycloneslider-slides{
position:relative;
overflow:hidden;
}
.cycloneslider-template-standard .cycloneslider-slide{
text-align: center;
width: 100%; display: none; background: #fff; }
.cycloneslider-template-standard .cycle-slide{
display: block; }
.cycloneslider-template-standard div[data-cycle-hide-non-active="false"] .cycloneslider-slide{
opacity: 0; }
.cycloneslider-template-standard div[data-cycle-dynamic-height="off"] .cycloneslider-slide-image{
height: 100%; }
.cycloneslider-template-standard .cycloneslider-slide:first-child, .cycloneslider-template-standard .cycle-sentinel + .cycloneslider-slide{ display: block;
}
.cycloneslider-template-standard .cycloneslider-slide img{
display:block;
margin:0 auto;
padding:0;
max-width:100%;
border:0;
}
.cycloneslider-template-standard.cycloneslider-width-full .cycloneslider-slide img{
width:100%;
}
.cycloneslider-template-standard .cycloneslider-slide iframe, .cycloneslider-template-standard .cycloneslider-slide object,
.cycloneslider-template-standard .cycloneslider-slide embed {
position: absolute;
left: 0;
top: 0;
width: 100% !important; height: 100% !important; }
.cycloneslider-template-standard .cycloneslider-slide-youtube,
.cycloneslider-template-standard .cycloneslider-slide-vimeo{
background: #000;
}
.cycloneslider-template-standard .cycloneslider-slide-custom {
min-height: 100%;
}
.cycloneslider-template-standard div[data-cycle-dynamic-height="on"] .cycloneslider-slide-custom{
min-height: 100px; }
.cycloneslider-template-standard .cycloneslider-slide-testimonial{
font-style: italic;
}
.cycloneslider-template-standard .cycloneslider-slide-testimonial blockquote{
margin-bottom: 0;
}
.cycloneslider-template-standard .cycloneslider-slide-testimonial p{
margin: 0;
}
.cycloneslider-template-standard .cycloneslider-slide-testimonial .cycloneslider-testimonial-author{
text-align: right;
font-style: normal;
}
.rtl .cycloneslider-template-standard .cycloneslider-slide-testimonial .cycloneslider-testimonial-author{
text-align: left;
}
.cycloneslider-template-standard .cycloneslider-slide-testimonial .cycloneslider-testimonial-author a{
text-decoration: none;
} .cycloneslider-template-standard .cycloneslider-prev,
.cycloneslider-template-standard .cycloneslider-next,
.cycloneslider-template-standard .cycloneslider-pager span {
cursor:pointer;
}
.cycloneslider-template-standard .cycloneslider-prev,
.cycloneslider-template-standard .cycloneslider-next{
position:absolute;
top:50%;
z-index:501;
display: block;
margin-top:-12px;
width:24px;
height:24px;
border-radius: 40px;
background: #fefefe;
opacity: 0;
-webkit-transition: all 0.5s ;
-moz-transition: all 0.5s ;
-ms-transition: all 0.5s ;
-o-transition: all 0.5s ;
transition: all 0.5s ;
-webkit-box-shadow: 1px 1px 2px 0px #333333;
box-shadow: 1px 1px 2px 0px #333333;
}
.cycloneslider-template-standard:hover .cycloneslider-prev,
.cycloneslider-template-standard:hover .cycloneslider-next{
opacity: 0.4;
}
.cycloneslider-template-standard .cycloneslider-prev:hover,
.cycloneslider-template-standard .cycloneslider-next:hover{
opacity: 1;
}
.cycloneslider-template-standard .cycloneslider-prev.disabled,
.cycloneslider-template-standard .cycloneslider-next.disabled{
display: none;
}
.cycloneslider-template-standard .arrow{
position: absolute;
top: 50%;
left: 50%;
margin-top: -6px;
width: 0;
height: 0;
}
.cycloneslider-template-standard .cycloneslider-prev{
left:10px;
}
.rtl .cycloneslider-template-standard .cycloneslider-prev{
left:auto;
right:10px;
}
.cycloneslider-template-standard .cycloneslider-prev .arrow{
margin-left: -4px;
border-top: 6px solid transparent;
border-right: 6px solid #333;
border-bottom: 6px solid transparent;
}
.rtl .cycloneslider-template-standard .cycloneslider-prev .arrow{
margin-left: -2px;
border: 0;
border-top: 6px solid transparent;
border-left: 6px solid #333;
border-bottom: 6px solid transparent;
}
.cycloneslider-template-standard .cycloneslider-next{
right:10px;
}
.rtl .cycloneslider-template-standard .cycloneslider-next{
right:auto;
left:10px;
}
.cycloneslider-template-standard .cycloneslider-next .arrow{
margin-left: -2px;
border-top: 6px solid transparent;
border-left: 6px solid #333;
border-bottom: 6px solid transparent;
}
.rtl .cycloneslider-template-standard .cycloneslider-next .arrow{
margin-left: -4px;
border: 0;
border-top: 6px solid transparent;
border-right: 6px solid #333;
border-bottom: 6px solid transparent;
} .cycloneslider-template-standard .cycloneslider-pager{
position:absolute;
bottom:-22px;
left:0;
z-index:100;
width: 100%;
height: 12px;
text-align: center;
}
.cycloneslider-template-standard .cycloneslider-pager span {
display: inline-block;
margin: 0 3px;
width: 12px;
height: 12px;
border-radius: 6px;
background: #333;
vertical-align: top;
font-size: 0;
line-height: 0;
-webkit-box-shadow: 1px 1px 2px 0px #333333;
box-shadow: 1px 1px 2px 0px #333333;
}
.ie7 .cycloneslider-template-standard .cycloneslider-pager span{
zoom: 1; *display: inline; }
.cycloneslider-template-standard .cycloneslider-pager span.cycle-pager-active {
background-color: #ccc;
} .cycloneslider-template-standard .cycloneslider-caption{
position:absolute;
bottom:0;
left:0;
z-index:500;
width:100%;
background: #222;
color:#fff;
opacity: 0.7;
text-align: left;
}
.rtl .cycloneslider-template-standard .cycloneslider-caption{
text-align: right;
}
.cycloneslider-template-standard .cycloneslider-caption-title{
margin-bottom:0;
padding:10px 20px 5px 20px;
font-size:22px;
line-height:1;
}
.cycloneslider-template-standard .cycloneslider-caption-description{
padding:0 20px 15px 20px;
font-size:12px;
line-height:1.5;
} .mfp-title span {
line-height: 1.8;
}
.mfp-title small {
line-height: 1.3;
}.cycloneslider-template-thumbnails{
position:relative;
}
.cycloneslider-template-thumbnails .cycloneslider-slides{
position:relative;
overflow:hidden;
}
.cycloneslider-template-thumbnails .cycloneslider-slide{
text-align: center;
width: 100%; display: none; background: #fff; }
.cycloneslider-template-thumbnails .cycle-slide{
display: block; }
.cycloneslider-template-thumbnails div[data-cycle-dynamic-height="off"] .cycloneslider-slide-image{
height: 100%; }
.cycloneslider-template-thumbnails .cycloneslider-slide:first-child, .cycloneslider-template-thumbnails .cycle-sentinel + .cycloneslider-slide{ display: block;
}
.cycloneslider-template-thumbnails .cycloneslider-slide img{
display:block;
margin:0 auto;
padding:0;
max-width:100%;
border:0;
}
.cycloneslider-template-thumbnails.cycloneslider-width-full .cycloneslider-slide img{
width:100%;
}
.cycloneslider-template-thumbnails .cycloneslider-slide iframe, .cycloneslider-template-thumbnails .cycloneslider-slide object,
.cycloneslider-template-thumbnails .cycloneslider-slide embed {
position: absolute;
left: 0;
top: 0;
width: 100% !important; height: 100% !important; }
.cycloneslider-template-thumbnails .cycloneslider-slide-youtube,
.cycloneslider-template-thumbnails .cycloneslider-slide-vimeo{
background: #000;
}
.cycloneslider-template-thumbnails .cycloneslider-slide-custom{
min-height: 100%;
}
.cycloneslider-template-thumbnails div[data-cycle-dynamic-height="on"] .cycloneslider-slide-custom{
min-height: 100px; } .cycloneslider-template-thumbnails .cycloneslider-prev,
.cycloneslider-template-thumbnails .cycloneslider-next,
.cycloneslider-template-thumbnails .cycloneslider-pager span {
cursor:pointer;
}
.cycloneslider-template-thumbnails .cycloneslider-prev,
.cycloneslider-template-thumbnails .cycloneslider-next{
position:absolute;
top:50%;
z-index:501;
display: block;
margin-top:-22px;
width:26px;
height:44px;
background: url(//dedot.in/wp-content/plugins/cyclone-slider/templates/thumbnails/images/sprite-arrows.png) no-repeat;
opacity: 0;
-webkit-transition: all 0.5s ;
-moz-transition: all 0.5s ;
-ms-transition: all 0.5s ;
-o-transition: all 0.5s ;
transition: all 0.5s ;
}
.cycloneslider-template-thumbnails .cycloneslider-prev{
left:10px;
background-position:0 0;
}
.rtl .cycloneslider-template-thumbnails .cycloneslider-prev{
left:auto;
right:10px;
background-position:-29px 0;
}
.cycloneslider-template-thumbnails .cycloneslider-next{
right:10px;
background-position:-29px 0;
}
.rtl .cycloneslider-template-thumbnails .cycloneslider-next{
right:auto;
left:10px;
background-position:0 0;
}
.cycloneslider-template-thumbnails:hover .cycloneslider-prev,
.cycloneslider-template-thumbnails:hover .cycloneslider-next{
opacity: 0.4;
}
.cycloneslider-template-thumbnails .cycloneslider-prev:hover,
.cycloneslider-template-thumbnails .cycloneslider-next:hover{
opacity: 1;
}
.cycloneslider-template-thumbnails .cycloneslider-prev.disabled,
.cycloneslider-template-thumbnails .cycloneslider-next.disabled{
display: none;
} .cycloneslider-template-thumbnails .cycloneslider-caption{
position:absolute;
left:0;
bottom:0;
width:100%;
z-index:99;
background: url(//dedot.in/wp-content/plugins/cyclone-slider/templates/thumbnails/images/bg-caption.png);
color:#fff;
text-align: left;
}
.rtl .cycloneslider-template-thumbnails .cycloneslider-caption{
text-align: right;
}
.cycloneslider-template-thumbnails .cycloneslider-caption-title{
padding:10px 20px 5px 20px;
font-size:22px;
line-height:1;
margin-bottom:0;
}
.cycloneslider-template-thumbnails .cycloneslider-caption-description{
padding:0 20px 15px 20px;
line-height:1.5;
font-size:12px;
} .cycloneslider-template-thumbnails.cycloneslider-thumbnails{
margin: 0;
padding:15px 0;
text-align:center;
}
.cycloneslider-template-thumbnails.cycloneslider-thumbnails ul{
margin: 0;
padding: 0;
list-style: none;
}
.cycloneslider-template-thumbnails.cycloneslider-thumbnails li{
list-style:none inside;
display:inline-block;
min-width:40px;
height:40px;
margin:5px;
padding: 0;
border:2px solid #ccc;
cursor:pointer;
vertical-align:top;
box-sizing: content-box;
overflow: hidden;
}
.ie7 .cycloneslider-template-thumbnails.cycloneslider-thumbnails li{
zoom: 1; *display: inline; }
.cycloneslider-template-thumbnails.cycloneslider-thumbnails li.current{
border-color:#333;
}
.cycloneslider-template-thumbnails.cycloneslider-thumbnails .thumb-custom{
background:#fefefe;
height:100%;
font-size:9px;
color:#BBBBBB;
}
.cycloneslider-template-thumbnails.cycloneslider-thumbnails img{
border-radius:0;
}
.ie8 .cycloneslider-template-thumbnails.cycloneslider-thumbnails img{
width: 40px;
}