:root {
    --red-900: #73060b;
    --red-800: #8f0f14;
    --red-700: #b51218;
    --red-600: #cb181f;
    --cream-100: #fffaf6;
    --cream-200: #fff2ea;
    --cream-300: #f8e5d8;
    --white: #ffffff;
    --ink-900: #18131a;
    --ink-700: #504752;
    --ink-500: #766d77;
    --gold: #ffc84a;
    --mint: #dff7ef;
    --shadow-soft: 0 18px 40px rgba(115, 6, 11, 0.12);
    --shadow-strong: 0 28px 60px rgba(115, 6, 11, 0.18);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shell: 1240px;
    --header-offset: 104px;
    --font-display: 'DM Sans', sans-serif;
    --font-script: 'Lobster Two', cursive;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(255, 232, 219, 0.85), transparent 28%),
        linear-gradient(180deg, #fffaf8 0%, #fff7f4 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
    background: transparent;
}

::selection {
    background: rgba(203, 24, 31, 0.18);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--red-700), var(--red-900));
    border-radius: 999px;
}

.shell {
    width: min(var(--shell), calc(100% - 32px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red-700);
}

.main-header {
    position: relative;
    z-index: 1000;
    padding: 18px 0;
    background: var(--red-900);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 0 max(16px, 4%);
}

.brand-logo {
    height: 52px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

.brand-logo:hover {
    transform: scale(1.03);
}

.footer-logo {
    height: 52px;
    width: auto;
    border-radius: 10px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color var(--transition), transform var(--transition), color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--gold);
    color: var(--red-900);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: 46px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--red-900);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(255, 200, 74, 0.3);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--white);
    color: var(--red-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-quote:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .btn-quote {
        padding: 8px 16px;
        height: 38px;
        font-size: 0.85rem;
    }
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.search-input {
    width: 0;
    opacity: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    transition: width var(--transition), opacity var(--transition);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.search-box.open .search-input {
    width: 170px;
    opacity: 1;
}

.action-btn,
.mobile-menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transition: transform var(--transition), background-color var(--transition);
}

.action-btn:hover,
.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    background: var(--gold);
    color: var(--ink-900);
    font-size: 0.7rem;
    font-weight: 800;
}

.mobile-menu-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 600ms ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(115, 6, 11, 0.16);
}

.btn-primary {
    background: var(--white);
    color: var(--red-700);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    background: var(--ink-900);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(24, 19, 26, 0.18);
}

.btn-light {
    background: var(--white);
    color: var(--red-700);
}

.btn-try {
    width: 100%;
    background: linear-gradient(90deg, var(--red-700), var(--red-900));
    color: var(--white);
}

.hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: var(--red-600);
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(2px);
}

.hero-decor-one {
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-decor-two {
    left: -100px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 56px;
}

.hero-kicker {
    font-family: var(--font-script);
    font-size: 2rem;
    color: #ffe0e0;
    margin-bottom: 14px;
}

.hero-title {
    max-width: 700px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 570px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 34px 0;
    flex-wrap: wrap;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
}

.highlight-card {
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.highlight-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.highlight-card span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    position: relative;
}

.hero-image-shell {
    position: relative;
    padding: 34px;
    border-radius: 42px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 58%);
}

.hero-image-shell::before {
    content: '';
    position: absolute;
    inset: 10% 14% auto;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    z-index: -1;
}

.hero-main-image {
    width: min(100%, 500px);
    margin: 0 auto;
    filter: drop-shadow(0 28px 42px rgba(77, 4, 8, 0.32));
    animation: floatY 5.5s ease-in-out infinite;
}

.hero-video-wrapper,
.hero-image-wrapper {
    width: 100%;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-video,
.hero-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink-900);
    box-shadow: var(--shadow-strong);
    font-weight: 700;
}

.hero-badge i {
    color: var(--red-700);
}

.hero-badge-top {
    top: 18%;
    right: -18px;
}

.hero-badge-bottom {
    left: -22px;
    bottom: 16%;
}

.trust-strip {
    position: relative;
    margin-top: -36px;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    color: var(--ink-900);
    font-weight: 700;
}

.trust-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--red-700);
    background: rgba(203, 24, 31, 0.09);
}

section {
    padding: 88px 0;
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-intro h2,
.choose-copy h2,
.story-copy h2,
.newsletter-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 14px 0 14px;
}

.section-intro p,
.choose-copy p,
.story-copy p,
.newsletter-copy p {
    color: var(--ink-700);
    font-size: 1.02rem;
    max-width: 62ch;
}

.categories-section {
    padding: 92px 0;
    background: radial-gradient(circle at bottom right, rgba(255, 238, 229, 0.5), transparent 40%), #fffaf6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.category-card {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    text-align: left;
    width: 100%;
    display: block;
}

.category-card-inner {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px 24px 24px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 24, 31, 0.05);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    position: relative;
}

/* Active and hover states */
.category-card:hover .category-card-inner,
.category-card.active .category-card-inner {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--red-700);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.category-card.active .category-card-inner {
    box-shadow: 0 14px 35px rgba(203, 24, 31, 0.12), inset 0 0 0 1.5px var(--red-700);
}

/* Image styling - border-free wrapper */
.category-img-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: transform var(--transition);
}

.category-img-bg {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 24, 31, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    transition: transform var(--transition);
    z-index: 1;
}

.category-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: transform 450ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    mix-blend-mode: multiply;
    border: none;
    outline: none;
}

/* Floating animation on hover */
.category-card:hover .category-image {
    transform: scale(1.12);
}

.category-card:hover .category-img-bg {
    transform: scale(1.3);
}

.category-card.active .category-image {
    animation: floatVisual 2s ease-in-out infinite alternate;
}

@keyframes floatVisual {
    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.12);
    }
}

/* Info container */
.category-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red-700);
    background: rgba(203, 24, 31, 0.06);
    padding: 4px 10px;
    border-radius: 99px;
}

.category-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink-900);
    transition: color var(--transition);
    display: block;
}

.category-card:hover .category-name,
.category-card.active .category-name {
    color: var(--red-700);
}

.category-desc {
    font-size: 0.9rem;
    color: var(--ink-700);
    line-height: 1.4;
    display: block;
}

.category-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-500);
    margin-top: 4px;
    transition: color var(--transition), transform var(--transition);
}

.category-card:hover .category-action-link,
.category-card.active .category-action-link {
    color: var(--red-700);
}

.category-card:hover .category-action-link i {
    transform: translateX(4px);
}

.category-action-link i {
    transition: transform var(--transition);
}

.flavours-section {
    background-image: url('images/bg%20product.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.flavour-card {
    min-width: 0;
}

.flavour-card-inner {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(203, 24, 31, 0.05);
    background: #ffffff;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.flavour-card:hover .flavour-card-inner {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.flavour-card[data-id="strawberry"] .flavour-info {
    background: linear-gradient(180deg, #fff3f6 0%, #ffe8ed 100%);
}

.flavour-card[data-id="chocolate"] .flavour-info {
    background: linear-gradient(180deg, #faf0e7 0%, #f5e5d4 100%);
}

.flavour-card[data-id="mango"] .flavour-info {
    background: linear-gradient(180deg, #fff7df 0%, #ffefbf 100%);
}

.flavour-card[data-id="pistachio"] .flavour-info {
    background: linear-gradient(180deg, #f3f8e7 0%, #e6f0c9 100%);
}

.flavour-card[data-id="mint"] .flavour-info {
    background: linear-gradient(180deg, #eafaf4 0%, #d6f3e7 100%);
}

.flavour-card[data-id="cookies"] .flavour-info {
    background: linear-gradient(180deg, #f8f5f2 0%, #eee7e1 100%);
}

.flavour-img-box {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid rgba(203, 24, 31, 0.03);
    position: relative;
}

.flavour-img-box img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform var(--transition);
}

.flavour-card:hover .flavour-img-box img {
    transform: translateY(-4px) scale(1.03);
}


.flavour-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flavour-tag {
    display: inline-block;
    margin-bottom: 6px;
    padding: 6px 12px;
    margin-left: -12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--red-700);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.flavour-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.flavour-copy {
    color: var(--ink-700);
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.flavour-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    border-top: 1px solid rgba(203, 24, 31, 0.08);
    padding-top: 12px;
}

.flavour-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--red-700);
}

.flavour-highlights span i {
    font-size: 0.8rem;
    opacity: 0.85;
}

.flavours-action {
    margin-top: 34px;
    text-align: center;
}

.choose-section {
    background:
        radial-gradient(circle at left center, rgba(255, 206, 170, 0.2), transparent 24%),
        linear-gradient(180deg, #fff8f0 0%, #fff3eb 100%);
}

.choose-layout,
.story-layout,
.newsletter-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.choose-visual img {
    border-radius: 36px;
    mask-image: radial-gradient(circle, black 65%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle, black 65%, transparent 95%);
    transition: transform var(--transition), filter var(--transition);
    filter: drop-shadow(0 14px 28px rgba(115, 6, 11, 0.06));
}

.choose-visual img:hover {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 20px 36px rgba(115, 6, 11, 0.1));
}

.choose-visual {
    position: relative;
}

.choose-visual::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 74, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.choose-points {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.choose-points article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(203, 24, 31, 0.04);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.choose-points article:hover {
    transform: translateX(8px);
    border-color: rgba(203, 24, 31, 0.12);
    box-shadow: var(--shadow-strong);
    background: #ffffff;
}

.choose-points i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(203, 24, 31, 0.08) 0%, rgba(203, 24, 31, 0.02) 100%);
    border: 1px solid rgba(203, 24, 31, 0.08);
    color: var(--red-700);
    font-size: 1.25rem;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.choose-points article:hover i {
    transform: rotate(15deg) scale(1.05);
    background: var(--red-700);
    color: var(--white);
    border-color: var(--red-700);
}

.choose-points h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink-900);
}

.choose-points p {
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

.story-section {
    --gold-premium: #e5c187;
    background-image: url('images/BOUT%20NEW%20W.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0;
    position: relative;
}

.story-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.story-spacer {
    height: 100%;
    min-height: 400px;
}

.story-copy {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.story-branding {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.story-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-premium);
    line-height: 1;
}

.story-est {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-premium);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
}

.story-est::before,
.story-est::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(229, 193, 135, 0.4);
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.1;
    text-transform: uppercase;
}

.story-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.story-separator i {
    color: var(--gold);
    font-size: 0.7rem;
}

.story-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.75;
    color: #ffffff !important;
    margin-bottom: 22px;
}

.story-action {
    margin: 32px 0 40px;
}

.btn-story {
    background: var(--white);
    color: #7c070c;
    padding: 0 38px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    border: 1px solid var(--gold-premium);
    transition: all var(--transition);
}

.btn-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 193, 135, 0.3);
    background: var(--gold-premium);
    color: #460104;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card i {
    font-size: 1.5rem;
    color: var(--gold-premium);
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275), color var(--transition);
}

.feature-card:hover i {
    transform: scale(1.2) rotate(8deg);
    color: var(--white);
}

.feature-info span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    white-space: nowrap;
}

.newsletter-copy .eyebrow,
.newsletter-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.newsletter-copy h2 {
    color: var(--white);
}

.trust-strip {
    background: #fffaf6;
    padding: 34px 0;
    border-top: 1px solid rgba(203, 24, 31, 0.04);
    border-bottom: 1px solid rgba(203, 24, 31, 0.04);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 99px;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(203, 24, 31, 0.06);
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--red-700);
    transition: transform 400ms ease;
}

.trust-item:hover i {
    transform: rotate(15deg) scale(1.18);
}

.trust-item span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink-800);
}

.testimonials-section {
    background-image: url('images/testimional%20bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.testimonials-left-col {
    position: relative;
}

.testimonials-sets-wrapper {
    position: relative;
    min-height: 520px;
}

.testimonial-set {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96) translateY(15px);
    transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 800ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 800ms;
}

.testimonial-set.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.testimonial-card-bubble {
    padding: 24px 32px;
    position: relative;
    margin-bottom: 30px;
    transition: transform var(--transition), filter var(--transition);
    filter: drop-shadow(0 8px 20px rgba(115, 6, 11, 0.05));
    border: none;
}

.testimonial-card-bubble.bottom-right {
    background: radial-gradient(circle at 100% 100%, transparent 24px, rgba(255, 255, 255, 0.95) 25px);
    border-radius: 24px 24px 0 24px;
}

.testimonial-card-bubble.bottom-left {
    background: radial-gradient(circle at 0% 100%, transparent 24px, rgba(255, 255, 255, 0.95) 25px);
    border-radius: 24px 24px 24px 0;
}

.testimonial-card-bubble:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 14px 28px rgba(115, 6, 11, 0.12));
}

.testimonial-card-bubble.bottom-right:hover {
    background: radial-gradient(circle at 100% 100%, transparent 24px, #ffffff 25px);
}

.testimonial-card-bubble.bottom-left:hover {
    background: radial-gradient(circle at 0% 100%, transparent 24px, #ffffff 25px);
}

.testimonial-card-bubble:last-child {
    margin-bottom: 0;
}

.testimonial-bubble-text {
    font-size: 0.98rem;
    color: var(--ink-700);
    line-height: 1.5;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-bubble-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
}

.pink-avatar {
    background: #f45b84;
}

.blue-avatar {
    background: #4b74ff;
}

.yellow-avatar {
    background: #ee9f24;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--ink-900);
}

.author-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-500);
}

.testimonial-stars-rating {
    color: #f5af00;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.bubble-dot {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-700);
    border: 4px solid #fffdfd;
    box-shadow: 0 4px 10px rgba(115, 6, 11, 0.15);
    transition: transform var(--transition);
}

.testimonial-card-bubble.bottom-right .bubble-dot {
    bottom: -16px;
    right: -16px;
}

.testimonial-card-bubble.bottom-left .bubble-dot {
    bottom: -16px;
    left: -16px;
}

.testimonial-card-bubble:hover .bubble-dot {
    transform: scale(1.15);
}

.testimonials-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
}

.testimonials-eyebrow {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    background: var(--red-700);
    padding: 6px 14px;
    border-radius: 99px;
    box-shadow: 0 4px 10px rgba(203, 24, 31, 0.2);
}

.testimonials-huge-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(115, 6, 11, 0.15);
}

@media (max-width: 900px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-right-col {
        order: -1;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
}

.newsletter-section {
    background:
        radial-gradient(circle at right center, rgba(255, 255, 255, 0.14), transparent 18%),
        linear-gradient(90deg, var(--red-900) 0%, var(--red-700) 100%);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.newsletter-input {
    width: min(420px, 100%);
    min-height: 54px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    border-radius: 999px;
}

.contact-section {
    background-image: url('images/bg%20product.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(203, 24, 31, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-900);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    border: 1px solid rgba(24, 19, 26, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #ffffff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red-700);
    box-shadow: 0 0 0 4px rgba(181, 18, 24, 0.08);
}

.submit-contact-btn {
    width: auto;
    padding: 0 32px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border-radius: 99px;
}

.contact-details-card {
    background: linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.details-branding {
    text-align: center;
    margin-bottom: 28px;
}

.details-logo {
    display: none;
}

.details-branding h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.details-branding p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.details-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0 28px 0;
}

.details-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.details-info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), background-color var(--transition);
}

.details-info-list li:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.08);
}

.details-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.details-info-list li:hover .details-icon {
    background: var(--gold);
    color: var(--red-900);
    transform: scale(1.1) rotate(10deg);
}

.details-info-list strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 2px;
}

.details-info-list a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.details-info-list li:hover a {
    color: var(--gold);
}

.details-info-list span {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
    transition: color var(--transition);
}

.details-info-list li:hover span {
    color: #ffe8cc;
}

@media (max-width: 820px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.main-footer {
    padding: 80px 0 28px;
    background: linear-gradient(180deg, #200c0f 0%, #13080a 100%);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
}

.footer-brand p {
    max-width: 320px;
    margin: 16px 0 22px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--red-900);
    transform: translateY(-3px) scale(1.1);
}

.footer-col h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
}

.footer-col ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-col a:hover {
    color: #ffd8d8;
}

.contact-info-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.contact-info-list i {
    color: #ffb2b2;
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    text-align: center;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 12, 14, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 1400;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fffdfb;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1500;
    box-shadow: -24px 0 60px rgba(21, 12, 14, 0.18);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
    padding: 22px;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(203, 24, 31, 0.08);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.close-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-900);
    background: rgba(203, 24, 31, 0.08);
}

.cart-drawer-items {
    flex: 1;
    overflow: auto;
    padding: 20px 22px;
}

.empty-cart-message {
    height: 100%;
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink-500);
}

.empty-cart-message i {
    display: block;
    margin-bottom: 12px;
    font-size: 3rem;
    color: rgba(203, 24, 31, 0.24);
}

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(203, 24, 31, 0.08);
}

.cart-item-img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff5f2, #fff0eb);
    padding: 8px;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--red-700);
    font-weight: 800;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(203, 24, 31, 0.08);
    color: var(--red-700);
    font-weight: 800;
}

.cart-item-remove {
    color: var(--ink-500);
}

.cart-drawer-footer {
    border-top: 1px solid rgba(203, 24, 31, 0.08);
    background: #fff8f4;
}

.cart-totals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-weight: 800;
}

.checkout-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red-700), var(--red-900));
    color: var(--white);
    font-weight: 700;
}

.wishlist-notification {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 120px);
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--ink-900);
    color: var(--white);
    box-shadow: var(--shadow-strong);
    transition: transform var(--transition);
    z-index: 1600;
}

.wishlist-notification.show {
    transform: translate(-50%, 0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1100px) {

    .hero-layout,
    .choose-layout,
    .story-layout,
    .newsletter-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 32px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description,
    .section-intro,
    .choose-copy p,
    .story-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .newsletter-form {
        justify-content: center;
    }

    .hero-highlights {
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .flavours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-spacer {
        display: none;
    }

    .story-section {
        background-position: center;
        background-image: linear-gradient(rgba(124, 7, 12, 0.85), rgba(124, 7, 12, 0.85)), url('images/BOUT%20NEW%20W.png');
        padding: 80px 0;
    }
}

@media (max-width: 820px) {
    :root {
        --header-offset: 88px;
    }

    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        inset: calc(var(--header-offset) - 10px) 16px auto;
        padding: 18px;
        border-radius: 28px;
        background: rgba(118, 9, 13, 0.97);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu a {
        display: block;
        text-align: center;
    }

    .hero-badge-top {
        right: 0;
    }

    .hero-badge-bottom {
        left: 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --header-offset: 64px;
    }

    .header-container {
        gap: 10px;
        padding: 0 12px;
    }

    .shell {
        width: min(var(--shell), calc(100% - 20px));
    }

    .main-header {
        padding: 10px 0;
    }

    .brand-logo,
    .footer-logo {
        height: 44px;
    }

    .search-box {
        display: none;
    }



    .hero-highlights,
    .trust-grid,
    .categories-grid,
    .flavours-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 12px;
    }

    .footer-brand p {
        margin: 12px 0 16px;
    }

    .hero-badge {
        position: static;
        margin-bottom: 12px;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
    }

    .hero-image-shell {
        padding: 16px;
    }

    .section-intro h2,
    .choose-copy h2,
    .story-copy h2,
    .newsletter-copy h2 {
        font-size: 2rem;
    }

    .story-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input,
    .newsletter-form .btn {
        width: 100%;
    }

    .cart-item {
        grid-template-columns: 64px 1fr auto;
    }

    .cart-item-img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card-inner {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 16px 16px 16px 10px;
    }

    .category-img-wrapper {
        width: 100px;
        height: 100px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .category-image {
        max-width: 100%;
        max-height: 100%;
        position: static;
        width: auto;
        height: auto;
        transform: none;
        border: none;
        outline: none;
    }

    .category-card:hover .category-image {
        transform: scale(1.08);
    }

    .category-card.active .category-image {
        animation: floatVisualMobile 2s ease-in-out infinite alternate;
    }

    .category-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@keyframes floatVisualMobile {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.08);
    }
}

/* ==========================================================================
   ORAS PREMIUM PRELOADER ANIMATIONS & STYLES
   ========================================================================== */

/* 1. Preloader Main Container */
.oras-preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #ffffff 0%, #fff0f3 100%);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), visibility 800ms;
}

.oras-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Lock body scrolling when loader is active */
body.loader-active {
    overflow: hidden !important;
}

/* 2. Soft Swirling Background Cream Gradients */
.preloader-bg-swirls {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}

.swirl {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.swirl-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 222, 228, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    top: -10%;
    left: -10%;
    animation: floatSwirl 18s ease-in-out infinite alternate;
}

.swirl-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 238, 226, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation: floatSwirl 22s ease-in-out infinite alternate-reverse;
}

@keyframes floatSwirl {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(70px, 50px) scale(1.15);
    }
}

/* 3. Center Content Container */
.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
    width: min(400px, 100% - 32px);
}

.icecream-container {
    width: 170px;
    height: 170px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icecream-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 4. Ice Cream SVG Color Schemes & Styling */
.icecream-scoop {
    fill: #ffe3e8;
    /* Soft blush pink strawberry cream */
    stroke: rgba(203, 24, 31, 0.06);
    stroke-width: 1.5;
}

.syrup-drizzle {
    fill: #b51218;
    /* Premium Oras crimson strawberry syrup */
    opacity: 0;
    transform-origin: 100px 50px;
}

.cup-body {
    fill: #fffbf9;
    /* Clean cream ivory cup body */
    stroke: rgba(203, 24, 31, 0.1);
    stroke-width: 2;
}

.cup-rim-front {
    fill: #ffffff;
    stroke: rgba(203, 24, 31, 0.12);
    stroke-width: 2;
}

.cup-rim-back {
    fill: #ebdcd3;
    /* inner cup shadow */
    stroke: rgba(203, 24, 31, 0.08);
    stroke-width: 1.5;
}

.cup-accents {
    stroke: var(--gold);
    /* luxurious gold line accent */
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0.8;
}

/* 5. Toppings */
.topping-dot {
    fill: #cb181f;
    /* bright strawberry dot */
}

.topping-chip {
    fill: #3d0c0e;
    /* rich dark cocoa chip */
}

/* 6. SVG Animation Keyframes */

/* Drop the scoop into cup */
.icecream-scoop-group {
    transform: translateY(-240px);
    animation: dropScoop 1300ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 350ms;
}

@keyframes dropScoop {
    0% {
        transform: translateY(-240px);
    }

    70% {
        transform: translateY(142px);
        /* hits cup front rim */
    }

    85% {
        transform: translateY(137px);
        /* slight bounce */
    }

    100% {
        transform: translateY(140px);
        /* settled inside cup */
    }
}

/* Drizzle flows over scoop */
.syrup-drizzle {
    animation: flowSyrup 950ms ease forwards;
    animation-delay: 1550ms;
}

@keyframes flowSyrup {
    0% {
        opacity: 0;
        transform: scaleY(0.1);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Floating tiny toppings display */
.topping {
    opacity: 0;
    transform-origin: center;
    animation: floatToppings 2600ms ease-out forwards;
    animation-delay: 1650ms;
}

@keyframes floatToppings {
    0% {
        opacity: 0;
        transform: translateY(22px) rotate(0deg);
    }

    30% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.8;
        transform: translateY(0) rotate(15deg);
    }
}

.topping-1 {
    animation-duration: 2100ms;
}

.topping-2 {
    animation-duration: 2500ms;
}

.topping-3 {
    animation-duration: 2300ms;
}

.topping-4 {
    animation-duration: 2700ms;
}

/* 7. Melting Progress Drip Line */
.preloader-progress-bar {
    width: 220px;
    height: 5px;
    background: rgba(203, 24, 31, 0.06);
    border-radius: 99px;
    position: relative;
    overflow: visible;
    margin-top: 10px;
}

.progress-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red-700) 0%, var(--red-900) 100%);
    width: 0%;
    border-radius: 99px;
    animation: fillProgress 2600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.progress-syrup-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--red-900);
    border-radius: 50%;
    top: -2px;
    left: 0%;
    animation: moveDrop 2600ms cubic-bezier(0.4, 0, 0.2, 1) forwards,
        dripDrop 750ms ease-out infinite alternate;
}

@keyframes moveDrop {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dripDrop {
    0% {
        transform: translateY(0) scaleY(1);
        border-radius: 50%;
    }

    100% {
        transform: translateY(5px) scaleY(1.3) scaleX(0.85);
        border-radius: 50% 50% 30% 30%;
    }
}

/* 8. Logo Reveal Details */
.preloader-logo-reveal {
    opacity: 0;
    transform: translateY(10px);
    animation: revealLogo 750ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 2450ms;
}

@keyframes revealLogo {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--red-900);
    letter-spacing: 0.16em;
    margin-bottom: 2px;
    line-height: 1;
}

.loader-logo-sub {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ==========================================================================
   ORAS SCROLL REVEAL CONTENT ANIMATIONS
   ========================================================================== */
.reveal-content {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-content.reveal-left {
    transform: translateX(-80px);
}

.reveal-content.reveal-right {
    transform: translateX(80px);
}

.reveal-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .reveal-content.reveal-left {
        transform: translateX(-40px);
    }

    .reveal-content.reveal-right {
        transform: translateX(40px);
    }
}

/* ==========================================================================
   ORAS PREMIUM ABOUT US PAGE STYLES
   ========================================================================== */

/* About Hero */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--red-900) 0%, var(--red-700) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 200, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.about-hero-content h1 span {
    color: var(--gold);
    font-family: var(--font-script);
    font-weight: 400;
    display: block;
    font-size: clamp(3rem, 6vw, 4.8rem);
    margin-top: 10px;
    text-transform: none;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--cream-200);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* About Intro Story Section */
.about-intro-section {
    padding: 100px 0;
    background: var(--cream-100);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-img-wrapper {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 576px) {
    .about-intro-img-wrapper {
        aspect-ratio: 16 / 9;
    }
}

.about-intro-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 4 / 3;
}

.about-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-intro-img-wrapper:hover .about-intro-img {
    transform: scale(1.05);
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-intro-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--red-900);
    line-height: 1.2;
}

.about-intro-content p {
    font-size: 1.05rem;
    color: var(--ink-700);
    line-height: 1.7;
}

/* Infrastructure Sections */
.infra-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.infra-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.infra-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--red-900);
    margin-top: 10px;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.infra-card {
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--cream-300);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.infra-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red-700), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.infra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold);
}

.infra-card:hover::after {
    transform: scaleX(1);
}

.infra-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(181, 18, 24, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-700);
    font-size: 2.2rem;
    transition: transform 0.5s ease, background-color 0.4s ease, color 0.4s ease;
}

.infra-card:hover .infra-icon-wrapper {
    transform: rotateY(360deg);
    background: var(--red-700);
    color: var(--white);
}

.infra-card h3 {
    font-family: var(--font-display);
    font-size: 1.58rem;
    color: var(--red-900);
    font-weight: 700;
}

.infra-card p {
    font-size: 1.02rem;
    color: var(--ink-700);
    line-height: 1.65;
}

.infra-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.infra-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--ink-700);
}

.infra-features-list li i {
    color: var(--red-700);
    font-size: 1.1rem;
}

/* Certificate Section */
.cert-section {
    padding: 100px 0;
    background: var(--cream-200);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 45px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(115, 6, 11, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(115, 6, 11, 0.15);
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--mint);
    color: #0c6144;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cert-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 60%, #e0a316 100%);
    border: 3px double var(--white);
    box-shadow: 0 4px 12px rgba(224, 163, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cert-card:hover .cert-seal {
    transform: scale(1.15) rotate(15deg);
}

.cert-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--red-900);
    margin-bottom: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cert-authority {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.cert-desc {
    font-size: 0.98rem;
    color: var(--ink-500);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cert-number {
    font-family: monospace;
    font-size: 0.88rem;
    background: var(--cream-100);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px dashed var(--cream-300);
    color: var(--red-700);
    font-weight: 600;
}

/* Partner CTA Section */
.partner-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--red-900) 0%, #4a0306 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 70%, rgba(255, 200, 74, 0.12) 0%, transparent 50%);
}

.partner-cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.partner-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.partner-cta-content p {
    font-size: 1.18rem;
    color: var(--cream-200);
    margin-bottom: 40px;
    line-height: 1.7;
}

.partner-cta-content .btn-primary {
    background: var(--gold);
    color: var(--red-900);
    box-shadow: 0 6px 20px rgba(255, 200, 74, 0.4);
}

.partner-cta-content .btn-primary:hover {
    background: var(--white);
    color: var(--red-900);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* About Why Choose Us Section */
.about-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.about-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .about-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-choose-grid {
        grid-template-columns: 1fr;
    }
}

.about-choose-card {
    background: var(--cream-100);
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-md);
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold);
    background: var(--white);
}

.about-choose-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 200, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-700);
    font-size: 1.8rem;
    transition: transform 0.5s ease, background-color 0.4s ease, color 0.4s ease;
}

.about-choose-card:hover .about-choose-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--red-700);
    color: var(--white);
}

.about-choose-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--red-900);
    font-weight: 700;
}

.about-choose-card p {
    font-size: 0.98rem;
    color: var(--ink-700);
    line-height: 1.65;
}

/* ==========================================================================
   ORAS PREMIUM FLOATING WHATSAPP FLOW WIDGET
   ========================================================================== */

.whatsapp-flow-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-flow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    animation: wa-pulse 2s infinite;
}

.whatsapp-flow-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.floating-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--red-700);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(181, 18, 24, 0.4);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    animation: call-pulse 2s infinite;
}

.floating-call-btn:hover {
    background-color: var(--red-900);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 28px rgba(181, 18, 24, 0.55);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 18, 24, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(181, 18, 24, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 18, 24, 0);
    }
}

.whatsapp-flow-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--ink-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    box-shadow: var(--shadow-soft);
}

.whatsapp-flow-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--ink-900);
}

.floating-call-btn:hover .whatsapp-flow-tooltip,
.whatsapp-flow-btn:hover .whatsapp-flow-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-flow-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 560px;
    max-width: 95%;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(115, 6, 11, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -45%) scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 2000;
}

.whatsapp-flow-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.whatsapp-panel-header {
    padding: 26px 22px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.whatsapp-panel-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(115, 6, 11, 0.85) 0%, rgba(74, 3, 6, 0.95) 100%);
    z-index: 1;
}

.whatsapp-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-panel-logo {
    display: none;
}

.whatsapp-header-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.whatsapp-header-text p {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}

.whatsapp-flow-close {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.8;
    transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-flow-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.whatsapp-panel-body {
    padding: 24px 22px;
    overflow-y: auto;
    flex: 1;
    background: #fffcf9;
    scrollbar-width: thin;
}

.whatsapp-panel-body::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-panel-body::-webkit-scrollbar-thumb {
    background: rgba(115, 6, 11, 0.15);
    border-radius: 99px;
}

.whatsapp-panel-desc {
    font-size: 0.88rem;
    color: var(--ink-700);
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
    text-align: left;
}

.whatsapp-form-group label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--ink-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.whatsapp-form-group input,
.whatsapp-form-group select,
.whatsapp-form-group textarea {
    padding: 11px 15px;
    border: 1px solid rgba(24, 19, 26, 0.12);
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: var(--font-body);
}

.whatsapp-form-group input:focus,
.whatsapp-form-group select:focus,
.whatsapp-form-group textarea:focus {
    border-color: var(--red-700);
    box-shadow: 0 0 0 3px rgba(181, 18, 24, 0.08);
}

.whatsapp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wa-panel-submit-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 99px;
    background: #25d366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.wa-panel-submit-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp {
    background: #25d366 !important;
    color: var(--white) !important;
    border: 1px solid #1ebd56 !important;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.btn-whatsapp:hover {
    background: #20ba5a !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px) !important;
}


/* ==========================================================================
   MOBILE VIEWPORT AND ALIGNMENT FIXES
   ========================================================================== */
@media (max-width: 991px) {

    /* Center About Intro content on mobile/tablet */
    .about-intro-content {
        text-align: center !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal slide reveal animations from causing layout scroll overflow */
    .reveal-content.reveal-left,
    .reveal-content.reveal-right {
        transform: translateY(20px) !important;
    }
}

@media (max-width: 576px) {

    /* Prevent card horizontal paddings from clipping layout contents */
    .contact-details-card,
    .infra-card,
    .about-choose-card,
    .cert-card {
        padding: 30px 16px !important;
    }

    /* Prevent text containers from extending to screen boundaries */
    .story-copy,
    .section-intro,
    .infra-header,
    .choose-copy,
    .hero-description,
    .about-hero-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Center text sections and features on mobile */
    .choose-copy {
        text-align: center !important;
    }

    .choose-points article {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        padding: 24px 20px !important;
    }

    .choose-points i {
        margin: 0 auto 10px !important;
    }

    /* Optimize header spacing to fit narrow screens */
    .btn-quote {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        height: 36px !important;
    }

    .brand-logo {
        height: 38px !important;
    }

    .mobile-menu-toggle {
        width: 38px !important;
        height: 38px !important;
    }

    /* 2-column layout for links, brand spans full width */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
    }

    .footer-brand {
        grid-column: span 2 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 15px !important;
    }

    .footer-col {
        text-align: left !important;
    }

    /* Shift content inward slightly to balance the 2-column layout horizontally */
    .footer-grid > .footer-col:nth-child(2),
    .footer-grid > .footer-col:nth-child(3) {
        padding-left: 12% !important;
    }

    .footer-col h3 {
        font-size: 1.05rem !important;
        margin-bottom: 14px !important;
        color: var(--gold) !important; /* Premium Gold Headers */
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        font-weight: 700 !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 !important;
        gap: 10px !important;
    }

    /* Style links with elegant prefix dashes and modern micro-animations */
    .footer-col ul:not(.contact-info-list) a {
        display: inline-flex !important;
        align-items: center !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.72) !important;
        transition: color var(--transition), transform var(--transition) !important;
        padding: 2px 0 !important;
    }

    .footer-col ul:not(.contact-info-list) a::before {
        content: "—" !important;
        margin-right: 8px !important;
        color: var(--gold) !important;
        opacity: 0.7 !important;
        transition: transform var(--transition), color var(--transition) !important;
    }

    .footer-col ul:not(.contact-info-list) a:hover {
        color: var(--white) !important;
        transform: translateX(6px) !important;
    }

    .footer-col ul:not(.contact-info-list) a:hover::before {
        color: var(--gold) !important;
        opacity: 1 !important;
    }

    /* Column ordering and grid placement for 2-column layout */
    .footer-grid > .footer-col:nth-child(2) { /* Quick Links */
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .footer-grid > .footer-col:nth-child(3) { /* Products */
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .footer-grid > .footer-col:nth-child(4) { /* Contact Us */
        grid-column: span 2 !important;
        grid-row: 3 !important;
        margin-top: 10px !important;
    }

    /* Contact Us Card Layout */
    .footer-col:nth-child(4) h3 {
        text-align: left !important;
        margin-bottom: 16px !important;
    }

    .footer-col ul.contact-info-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        max-width: 100% !important;
        gap: 12px !important;
    }

    .contact-info-list li {
        display: grid !important;
        grid-template-columns: 40px 1fr !important;
        gap: 14px !important;
        align-items: center !important;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
        border: 1px solid rgba(255, 255, 255, 0.07) !important;
        padding: 12px 14px !important;
        border-radius: var(--radius-sm) !important;
        transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition) !important;
        width: 100% !important;
    }

    .contact-info-list li:hover {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)) !important;
        border-color: rgba(255, 200, 74, 0.3) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25) !important;
    }

    .contact-info-list i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: rgba(255, 200, 74, 0.08) !important;
        border: 1px solid rgba(255, 200, 74, 0.2) !important;
        color: var(--gold) !important;
        margin: 0 !important;
        font-size: 0.95rem !important;
        transition: transform var(--transition), background var(--transition), color var(--transition) !important;
    }

    .contact-info-list li:hover i {
        transform: scale(1.1) !important;
        background: var(--gold) !important;
        color: #13080a !important;
    }

    .contact-info-list span, 
    .contact-info-list a {
        font-size: 0.92rem !important;
        line-height: 1.4 !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Ensure text wraps nicely and behaves at small viewports */
    .story-text {
        font-size: 1.02rem !important;
        line-height: 1.65 !important;
    }

    /* Fix categories grid items margins */
    .categories-grid {
        padding: 0 8px !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-flow-widget {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .whatsapp-flow-btn,
    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .floating-call-btn {
        font-size: 1.3rem;
    }

    .whatsapp-flow-panel {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 95px;
        max-height: calc(100vh - 120px);
    }

    /* Fine-tune typography and layout on small screens to fit 2 columns */
    .footer-col h3 {
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    .footer-col ul {
        gap: 8px !important;
    }

    .footer-col ul:not(.contact-info-list) a {
        font-size: 0.86rem !important;
    }

    .contact-info-list li {
        padding: 10px 12px !important;
        gap: 10px !important;
        grid-template-columns: 32px 1fr !important;
    }

    .contact-info-list i {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }

    .contact-info-list span, 
    .contact-info-list a {
        font-size: 0.85rem !important;
    }

    .main-footer {
        padding: 48px 0 32px !important;
    }

    .footer-bottom {
        font-size: 0.85rem !important;
        margin-top: 24px !important;
        padding-top: 16px !important;
    }
}

@media (max-width: 400px) {

    /* Adjust category card structure on extremely narrow screens */
    .category-card-inner {
        grid-template-columns: 80px 1fr !important;
        gap: 12px !important;
        padding: 12px 12px 12px 8px !important;
    }

    .category-img-wrapper {
        width: 80px !important;
        height: 80px !important;
    }
}

/* ==========================================================================
   CONTACT PAGE CUSTOM ANIMATED STYLES
   ========================================================================== */

.contact-hero {
    background: linear-gradient(135deg, rgba(115, 6, 11, 0.92) 0%, rgba(74, 3, 6, 0.97) 100%), url('images/bg%20product.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 110px 0 85px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-family: var(--font-script);
    font-size: 4.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    animation: contact-hero-slide 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.6;
    animation: contact-hero-slide 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-sweets-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-sweet {
    position: absolute;
    color: var(--gold);
    opacity: 0.12;
    pointer-events: none;
    animation: float-slow 12s infinite ease-in-out alternate;
}

.floating-sweet-1 {
    top: 20%;
    left: 8%;
    font-size: 2.2rem;
    animation-delay: 0s;
}

.floating-sweet-2 {
    top: 60%;
    left: 15%;
    font-size: 1.8rem;
    animation-delay: -3s;
}

.floating-sweet-3 {
    top: 15%;
    right: 12%;
    font-size: 2.5rem;
    animation-delay: -5s;
}

.floating-sweet-4 {
    top: 70%;
    right: 8%;
    font-size: 2rem;
    animation-delay: -8s;
}

@keyframes float-slow {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    100% {
        transform: translateY(-30px) rotate(20deg) scale(1.1);
    }
}

@keyframes contact-hero-slide {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 3D Perspective Card Layout Wrapper */
.perspective-container {
    perspective: 1200px;
    width: 100%;
}

.contact-details-card {
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

/* Live Form Progress Tracker Styles */
.form-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ink-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-progress-percentage {
    color: var(--red-700);
    font-size: 0.9rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.form-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(24, 19, 26, 0.08);
    border-radius: 999px;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
}

.form-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red-700) 0%, var(--red-600) 100%);
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Business Hours Card */
.hours-card {
    background: var(--cream-200);
    border: 1px solid rgba(248, 229, 216, 0.6);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    margin-top: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.hours-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--red-900);
    margin-bottom: 4px;
    font-weight: 700;
}

.hours-card-info p {
    font-size: 0.88rem;
    color: var(--ink-700);
    font-weight: 500;
}

.hours-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-status.open {
    background: var(--mint);
    color: #0d9488;
}

.hours-status.closed {
    background: #ffebe9;
    color: var(--red-700);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-dot.active-pulse {
    animation: status-pulse-glow 1.2s infinite alternate;
}

@keyframes status-pulse-glow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Stylized Interactive Map Mockup */
.map-mockup-card {
    background: #fffaf7;
    border: 1px solid rgba(115, 6, 11, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 30px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    height: 250px;
}

.map-mockup-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.map-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(248, 229, 216, 0.7) 1.5px, transparent 1.5px),
        linear-gradient(rgba(248, 229, 216, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 229, 216, 0.3) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
    opacity: 0.85;
}

.map-road-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;
    width: 32px;
    background: rgba(24, 19, 26, 0.03);
    border-left: 1px dashed rgba(24, 19, 26, 0.08);
    border-right: 1px dashed rgba(24, 19, 26, 0.08);
}

.map-road-horizontal {
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    height: 28px;
    background: rgba(24, 19, 26, 0.03);
    border-top: 1px dashed rgba(24, 19, 26, 0.08);
    border-bottom: 1px dashed rgba(24, 19, 26, 0.08);
}

.map-river-shape {
    position: absolute;
    right: -25px;
    top: -35px;
    width: 150px;
    height: 180px;
    background: rgba(13, 148, 136, 0.04);
    border-radius: 50%;
    filter: blur(6px);
    transform: rotate(-25deg);
}

.map-pin-container {
    position: absolute;
    top: 40%;
    left: 48%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.map-pin {
    color: var(--red-700);
    font-size: 2.2rem;
    animation: bounce-pin 2s infinite ease-in-out;
    filter: drop-shadow(0 4px 6px rgba(115, 6, 11, 0.22));
    transition: transform 0.3s ease;
}

.map-pin-ripple {
    position: absolute;
    width: 24px;
    height: 12px;
    background: rgba(181, 18, 24, 0.28);
    border-radius: 50%;
    top: 32px;
    animation: pulse-ring 2s infinite ease-out;
    z-index: -1;
}

.map-pin-label {
    background: var(--ink-900);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background var(--transition), transform var(--transition);
}

.map-pin-container:hover .map-pin-label {
    background: var(--red-700);
    transform: scale(1.05);
}

.map-pin-container:hover .map-pin {
    color: var(--red-600);
}

.map-overlay-button {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid rgba(24, 19, 26, 0.08);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ink-900);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.map-mockup-card:hover .map-overlay-button {
    background: var(--red-700);
    color: var(--white);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: var(--shadow-strong);
}

@keyframes bounce-pin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Success Overlay Screen for Form Submission */
.success-overlay {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    z-index: 50;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mint);
    color: #0d9488;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    transform: scale(0.6);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-overlay.show .success-icon-wrapper {
    transform: scale(1);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red-900);
    font-weight: 800;
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.98rem;
    color: var(--ink-700);
    max-width: 320px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.success-overlay-close-btn {
    padding: 10px 24px;
    border-radius: 999px;
}

/* Success Confetti CSS Particles */
.success-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 60;
    opacity: 1;
    animation: success-particle-float 1.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes success-particle-float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(0.5);
        opacity: 0;
    }
}

/* ==========================================================================
   ORAS STANDALONE PRODUCTS PAGE STYLES
   ========================================================================== */

/* Products Hero */
.products-hero-section {
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--cream-200) 0%, rgba(255, 250, 246, 0) 100%);
}

.products-hero-section h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--red-900);
    margin: 15px 0;
    line-height: 1.2;
}

.products-hero-section p {
    font-size: 1.1rem;
    color: var(--ink-700);
    max-width: 700px;
    margin: 0 auto 35px;
}

/* Search Bar */
.products-search-container {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    z-index: 10;
}

.products-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--cream-300);
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    box-shadow: var(--shadow-soft);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.products-search-box:focus-within {
    border-color: var(--red-700);
    box-shadow: var(--shadow-strong);
}

.search-field-icon {
    color: var(--red-700);
    font-size: 1.2rem;
    margin-right: 12px;
}

.products-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--ink-900);
    background: transparent;
    padding: 8px 0;
}

.products-search-box input::placeholder {
    color: var(--ink-500);
}

.search-clear-btn {
    background: var(--cream-200);
    color: var(--ink-700);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    transition: background var(--transition), color var(--transition);
    visibility: hidden;
    opacity: 0;
}

.search-clear-btn.visible {
    visibility: visible;
    opacity: 1;
}

.search-clear-btn:hover {
    background: var(--red-700);
    color: var(--white);
}

/* Category Filter Section */
.products-filter-section {
    padding: 20px 0;
    border-top: 1px solid var(--cream-300);
    border-bottom: 1px solid var(--cream-300);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(115, 6, 11, 0.03);
}

.filter-pills-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .products-filter-section {
        padding: 15px 0;
        top: 0;
        /* Keep sticky on mobile */
    }

    .filter-pills-wrapper {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 4px 16px;
        margin: 0 -16px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .filter-pills-wrapper::-webkit-scrollbar {
        display: none;
    }
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cream-100);
    border: 1px solid var(--cream-300);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink-700);
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-pill i {
    color: var(--red-700);
    transition: color var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--red-700);
    border-color: var(--red-700);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.filter-pill:hover i,
.filter-pill.active i {
    color: var(--gold);
}

.filter-pill:active {
    transform: translateY(0);
}

.active-filter-indicator {
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink-500);
    margin-top: 15px;
    font-weight: 500;
}

/* Grid Layout */
.products-grid-section {
    padding: 60px 0 100px;
    min-height: 400px;
}

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

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid rgba(248, 229, 216, 0.6);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(181, 18, 24, 0.15);
}

.product-card-img-wrapper {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.product-card-img-wrapper.bg-grey {
    background: var(--white);
}

.product-card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transform: scale(1.0);
    transition: transform 0.4s ease;
}

.product-card[data-category="bulk"] .product-card-img-wrapper img.img-landscape {
    transform: scale(1.3);
}

.product-card:hover .product-card-img-wrapper img {
    transform: scale(1.08) rotate(2deg);
}

.product-card[data-category="bulk"]:hover .product-card-img-wrapper img.img-landscape {
    transform: scale(1.4) rotate(2deg);
}

.product-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--red-900);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
    letter-spacing: 0.02em;
}

.product-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-card-category {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--red-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-size {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink-500);
    background: var(--cream-100);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--cream-300);
}

.product-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--ink-700);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card-action {
    margin-top: auto;
}

.btn-card-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: var(--red-900);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 1px solid var(--red-900);
}

.btn-card-inquire:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--red-900);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 74, 0.2);
}

.btn-card-inquire:active {
    transform: translateY(0);
}

/* No Products Alert */
.no-products-alert {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border: 2px dashed var(--cream-300);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 40px auto;
    box-shadow: var(--shadow-soft);
}

.alert-icon {
    font-size: 3.5rem;
    color: var(--red-700);
    margin-bottom: 20px;
}

.no-products-alert h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.no-products-alert p {
    font-size: 1rem;
    color: var(--ink-700);
    margin-bottom: 24px;
    line-height: 1.6;
}

.no-products-alert .btn {
    padding: 12px 30px;
}

/* ==========================================================================
   SERVICES DEDICATED PAGE STYLES (PREMIUM ANIMATED DESIGN)
   ========================================================================== */

.services-hero {
    background: radial-gradient(circle at 10% 20%, rgba(115, 6, 11, 0.99) 0%, rgba(20, 15, 22, 0.98) 100%);
    padding: 180px 0 120px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Floating animated background blobs */
.services-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 200, 74, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: blob-bounce 12s infinite alternate ease-in-out;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 18, 24, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: blob-bounce 16s infinite alternate-reverse ease-in-out;
}

@keyframes blob-bounce {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-hero h1 span {
    font-family: var(--font-script);
    color: var(--gold);
    font-weight: normal;
    display: inline-block;
    transform: rotate(-2.5deg);
    margin-left: 8px;
    text-shadow: none;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--cream-300);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Service Alternating Flow Blocks */
.services-flow-section {
    padding: 130px 0;
    background-color: var(--cream-100);
    position: relative;
}

.services-flow-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.services-flow-block:last-child {
    margin-bottom: 0;
}

.services-flow-block.reverse {
    direction: rtl;
}

.services-flow-block.reverse .services-flow-text,
.services-flow-block.reverse .services-flow-visual {
    direction: ltr;
}

.services-flow-text {
    position: relative;
}

.services-flow-number {
    font-size: 6.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
    background: linear-gradient(135deg, rgba(181, 18, 24, 0.15) 0%, rgba(255, 200, 74, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -15px;
    user-select: none;
    letter-spacing: -0.05em;
}

.services-flow-text h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--red-900);
    letter-spacing: -0.02em;
}

.services-flow-text p {
    font-size: 1.08rem;
    color: var(--ink-700);
    line-height: 1.75;
    margin-bottom: 34px;
}

.services-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.services-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(115, 6, 11, 0.08);
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-900);
    box-shadow: 0 4px 12px rgba(115, 6, 11, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.services-feature-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red-700);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 99px;
}

.services-feature-pill i {
    color: var(--red-700);
    font-size: 0.85rem;
    transition: color 0.4s ease;
}

.services-feature-pill:hover {
    color: var(--white);
    border-color: var(--red-700);
    transform: translateY(-2px);
}

.services-feature-pill:hover i {
    color: var(--white);
}

.services-feature-pill:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.services-flow-visual {
    position: relative;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 380px;
}

/* Glowing border effect on hover */
.services-flow-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--red-700), var(--gold), var(--red-900));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.services-flow-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-flow-block:hover .services-flow-visual {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(115, 6, 11, 0.15);
    border-color: rgba(115, 6, 11, 0.15);
}

.services-flow-block:hover .services-flow-visual::after {
    opacity: 1;
}

.services-flow-block:hover .services-flow-visual img {
    transform: scale(1.05) rotate(1deg);
}

/* Premium CTA Section */
.services-premium-cta {
    padding: 130px 0;
    background: var(--white);
    position: relative;
}

.services-cta-glass {
    background: linear-gradient(135deg, var(--red-900) 0%, rgba(24, 19, 26, 0.98) 100%);
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(115, 6, 11, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated background radial glow */
.services-cta-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 200, 74, 0.07) 0%, transparent 60%);
    animation: rotate-bg 12s linear infinite;
    pointer-events: none;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.services-cta-glass h2 {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.services-cta-glass p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .services-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-flow-block {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 100px;
    }

    .services-flow-block.reverse {
        direction: ltr;
    }

    .services-flow-text {
        order: 2;
    }

    .services-flow-visual {
        order: 1;
        padding: 30px;
        height: 320px;
    }

    .services-cta-glass {
        padding: 80px 30px;
    }

    .services-cta-glass h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 575px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .services-cta-buttons .btn {
        width: 100%;
    }
}