header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: white;
    z-index: 999;
}
.header-area {
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
    z-index: 999;
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}
.header-left .flag {
    width: 20px;
    height: auto;
}
.search-icon {
    font-size: 18px;
    margin: auto 10px;
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: black;
    list-style: none;
    padding: 5px 0;
    margin: 5px 0 0 0;
    display: none;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
}
.lang-dropdown li {
    padding: 8px 15px;
}
.lang-dropdown li a {
    text-decoration: none;
    color: #333;
}
.lang-dropdown li:hover {
    background: #f2f2f2;
}
.header-logo {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}
@media (min-width: 992px) {
    .header-area {
        justify-content: flex-end;
    }
    .header-logo {
        position: absolute;
        left: 0%;
        bottom: -30px;
        transform: translateX(-50%);
        z-index: 3;
        cursor: pointer;
    }
    .header-right{
        display: none;
    }
    .nav-links {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}
.header-logo img {
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
}
.header-logo img:hover {
    filter: drop-shadow(0 12px 20px rgba(255,255,255, 0.5));
}
/*
.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 220px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: left 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}
.side-menu.open {
    left: 0;
}
.side-menu-content {
    text-align: center;
}
    */
.side-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}
.side-menu.open {
    left: 0;
}
.side-menu-content {
    max-width: 600px;
    margin: auto;
    padding-top: 40px;
    text-align: center;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}
.side-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 30px;
}
.side-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.side-links li {
    border-bottom: 1px solid #F0F0F0;
}
.side-links li:last-child {
    border-bottom: none;
}
.side-links a {
    display: block;
    padding: 12px 10px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
.side-links a:hover {
    background: #f1f1f1;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
}
@media (max-width: 576px) {
    .header-logo img {
        height: 50px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -13px;
    }
}
@media (min-width: 576px) {
    .header-logo img {
        height: 50px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -13px;
    }
}
@media (min-width: 768px) {
    .header-logo img {
        height: 55px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -15px;
    }
}
@media (min-width: 992px) {
    .header-logo img {
        height: 60px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -17px;
    }
}
@media (min-width: 1200px) {
    .header-logo img {
        height: 60px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -17px;
    }
}
@media (min-width: 1400px) {
    .header-logo img {
        height: 70px;
        object-fit: contain;
    }
    .header-logo {
        bottom: -20px;
    }
}


.nav-links li {
    position: relative;
    list-style: none;
    white-space: nowrap;
}

.nav-links li a {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    text-decoration: none;
    color: #E0E0E0;
    font-weight: 500;
    gap: 6px;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
}.nav-links li a i {
    display: none;
}
.nav-links li a:hover {
    color: var(--color-primary);
}
.nav-links li.golden-kitchen a:hover {
    color: #daa520;
}
.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 99;
}
.dropdown-menu li a {
    padding: 10px ;
    color: #222;
    white-space: nowrap;
    display: block;
}
.wide-dropdown {
    min-width: 500px;
    padding: 20px;
    border-radius: 6px;
}
.row.no-gutters {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.dropdown-box {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.dropdown-box:hover {
    transform: translateY(-2px);
}
.dropdown-box i {
    font-size: 28px;
    color: var(--color-primary);
}
.dropdown-box h5 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #222;
}
.dropdown-box p {
    font-size: 14px;
    color: #000;
    margin: 0;
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}





























.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  transition: var(--transition);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 43, 43, 0.6);
  z-index: 1;
  pointer-events: none;
}
.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100vh;
  object-fit:cover;
  opacity:0;
  z-index:0;
  transition:opacity 1s ease-in-out;
}

.hero-media.active{
  opacity:1;
  z-index:1;
}

.img-slide{
  animation: zoomInOut 10s ease-in-out infinite;
  transform-origin:center center;
}

@keyframes zoomInOut{
  0%{transform:scale(1)}
  50%{transform:scale(1.1)}
  100%{transform:scale(1)}
}

.icon-bar {
  position:absolute; bottom:0; left:0; width:100%;
  background: rgba(0,0,0,0.7); z-index: 2;
}
.icon-bar .container{
  display:flex; align-items:center; justify-content:space-around;
  overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none; gap:30px;
}
.icon-bar img{
  height:65px; filter:drop-shadow(0 12px 20px rgba(255,255,255,.4));
  transition: var(--transition);
}
.icon-bar img:hover{
  transform:scale(1.1);
  filter:drop-shadow(0 12px 20px rgba(255,255,255,.8));
}
.icon-bar::-webkit-scrollbar{display:none}
.icon-bar{-ms-overflow-style:none; scrollbar-width:none}











.image-stack {
    margin: auto;
    max-width: 80%;
    width: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.image-stack .logo,
.image-stack .bowl {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
}

.image-stack .logo-text,
.image-stack .bowl-text {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 90%;
    max-width: calc(400px - 10%);
    height: auto;
    transform: translate(-40%, -40%);
    z-index: 1;
    pointer-events: none;
}
@keyframes slowRotate {
    0% {
        transform: translate(-40%, -40%) rotate(0deg);
    }
    100% {
        transform: translate(-40%, -40%) rotate(360deg);
    }
}

.animated-circle {
    animation: slowRotate 20s linear infinite;
    transform-origin: center;
}


.section-home {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    position: relative;
    background: #fefaf4;
}
.bowl {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.bowl:hover {
    filter: drop-shadow(0 12px 20px rgba(0,0,0, 0.65));
}
.bowl.no-filter:hover {
    filter: drop-shadow(0 12px 20px rgba(0,0,0, 0.0));
}
.box-end {
    flex: 1;
    background: #5b7332;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.box-end.white {
    background-color: #fefaf4;
}
.box-end.coffe {
    background: #7B4A36;
}
.box-start {
    flex: 1;
    background: #fefaf4;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.box-start.yellow {
    background-color: #ffd930;
}
.box-start.chips {
    background-color: #3769C4;
    color: white;
}
.box-start.chips p, .box-start.chips h2 {
    color: white;
}
.vertical-divider {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 2;
    display: block;
}
.end-content {
    color: #fefaf4;
    text-align: center;
    position: relative;
    z-index: 2;
}.end-content.dark-text {
    color: #000;
}
.end-content img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
    transition: var(--transition);
    cursor: pointer;
}
.end-content h2 {
    cursor: pointer;
}
.end-content img:hover {
    filter: drop-shadow(0 12px 20px rgba(255,255,255, 0.65));
}

.reverse-row, .row.reverse {
    flex-direction: row-reverse !important;
}

@media (max-width: 767.98px) {
    .section-home {
        flex-direction: column;
        align-items: center;
    }
    .mob-reverse {
        flex-direction: column-reverse !important;
    }
    .box-start, .box-end {
        width: 100%;
        padding: 30px 0;
    }
    .vertical-divider {
        display: none;
    }
    .horizontal-divider {
        display: block;
        width: 100%;
        max-height: 100px;
        object-fit: contain;
        margin: 10px 0;
    }
}
.horizontal-divider {
    display: none;
}












.scroll-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
    animation-play-state: paused;
}
.scroll-text.in-view {
    animation-play-state: running;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}









.products-section {
    background: #fefaf4;
    text-align: center;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}
.products-top {
    background: #f5f0e7;
    padding: 60px 20px 120px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    position: relative;
    z-index: 1;
}
.products-top.uzun {
    padding: 60px 120px 240px;
}
.products-top h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333;
}
.products-top p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #444;
}
.icon-row {
    position: absolute;
    top: 240px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding: 0 20px;
    z-index: 2;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-top.for-large {
    padding: 120px 20px 220px;
}
.icon-row.for-large{
    top: 300px;
}

.icon-row::-webkit-scrollbar {
    display: none;
}
.icon-item {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
}
.icon-item.large {
    flex: 0 0 auto;
    width: 320px;
    height: 320px;
    max-width: 100%;
}
.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product-item-ragip img {
    padding: 60px;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0,0,0, 0.35));
}
.product-item-ragip:hover img {
    filter: drop-shadow(0 8px 12px rgba(0,0,0, 0.65));
}
.icon-img:hover {
    filter: drop-shadow(0 2px 3px rgba(0,0,0, 0.35));
}
.products-bottom {
    padding: 100px 20px 60px;
    background: #fefaf4;
    z-index: 1;
    position: relative;
}
.products-bottom.for-large {
    margin-top: 80px;
}
.characters-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    animation: floatLeftRight 4s ease-in-out infinite;
}
@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .icon-row {
        gap: 20px;
        justify-content: flex-start;
    }
    .icon-item {
        width: 90px;
        height: 90px;
    }
    .icon-row {
        position: absolute;
        top: 300px;
        left: 0;
        width: 90%;
        margin: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
        z-index: 2;
        overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .products-top h2 {
        font-size: 20px;
    }
    .products-top p {
        font-size: 14px;
    }
}





.product-item-ragip {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-item-ragip img {
  padding: 60px;
  width: 100%;
  transition: var(--transition, all 0.4s ease);
  filter: drop-shadow(0 4px 6px rgba(0,0,0, 0.35));
  display: block;
}

.product-item-ragip:hover img {
  filter: drop-shadow(0 8px 12px rgba(0,0,0, 0.65));
}

.product-item-ragip .product-title {
  text-decoration: none;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: bottom 0.4s ease;
}

.product-item-ragip:hover .product-title {
  bottom: 0;
}





















.sunflower-benefits {
    color: #333;
    background: #fefaf4;
}
.benefit-top {
    background: #f5f0e7;
    padding: 60px 20px 200px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.benefit-top h2 {
    font-size: 32px;
    margin: 5px 0 10px;
}
.benefit-top h3 {
    font-size: 16px;
    color: #666;
}
.benefit-top p {
    font-size: 16px;
    max-width: 700px;
    margin: 10px auto auto auto;
}
.benefit-bars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin: auto;
}
.benefit-box {
    
    border-radius: 12px;
    max-width: 360px;
    text-align: center;
    flex: 1 1 300px;
    margin: auto;
}
.benefit-box strog {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.benefit-box p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}
.pill-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ccc;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    color: white;
}
.pill-bar.green {
    background-color: #5b961c;
}
.pill-bar.gray {
    background-color: #d6d6d6;
    color: #333;
}
.pill-bar .label {
    color: white;
    text-align: left;
}
.pill-bar .value {
    color: white;
    text-align: right;
}
.small-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}
.extra-note {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}
.center-seed img {
    max-height: 120px;
    margin: 40px auto 10px;
    display: inline-block;
    animation: floatTopBottom 4s ease-in-out infinite;
}
@keyframes floatTopBottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}
.sub-seeds {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sub-seeds img {
    max-height: 30px;
    margin-bottom: 20px;
}
.sub-seeds img.right {
    animation: floatRightLeftSeed 4s ease-in-out infinite;
}
.sub-seeds img.left {
    animation: floatLeftRightSeed 4s ease-in-out infinite;
}
@keyframes floatRightLeftSeed {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes floatLeftRightSeed {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0);
    }
}
.cta-button {
    display: inline-block;
    background: #f9ce4e;
    color: #333;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 99;
}
.cta-button:hover {
    background: #f6bc00;
}
.benefit-bottom {
    position: relative;
    text-align: center;
    padding: 30px 0px 0px -20px;
}
.benefit-bottom h2 {
    font-size: 28px;
    margin: 10px 0;
}
.benefit-bottom p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444;
}
.sunflower-bg {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}
.sunflower-bg img {
    width: 100%;
    height: auto;
    display: block;
}
.play-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    font-size: 50px;
    color: green;
    width: 90px;
    height: 90px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

@media (min-width: 768px) {
    .center-seed {
        margin-top: -250px !important;
        margin-left: -40px;
        display: flex;
    }
    .center-seed img {
        max-height: 350px;
        margin: auto;
    }
    .sub-seeds {
        margin-top: -50px !important;
    }
    .sub-seeds img {
        max-height: 50px;
    }
}
@media (max-width: 768px) {
    .sub-seeds img.right {
        animation: floatTopBottom 4s ease-in-out infinite;
    }
    .sub-seeds img.left {
        animation: floatTopBottom 4s ease-in-out infinite;
    }
    .characters-img {
        animation: floatTopBottom 4s ease-in-out infinite;
    }
    .center-seed img {
        animation: floatTopBottom 4s ease-in-out infinite;
    }
    .benefit-top h2 {
        font-size: 24px;
    }
    .benefit-bottom h2 {
        font-size: 22px;
    }
    .benefit-bars {
        flex-direction: column;
        align-items: center;
    }
    .benefit-box {
        width: 100%;
        max-width: 90%;
    }
    .center-seed img {
        max-height: 90px;
    }
    .sub-seeds img {
        max-height: 20px;
    }
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
    }
}










.site-footer {
    background: #fefaf4;
    color: #333;
}
.footer-subscribe {
    text-align: center;
    padding: 40px 20px 10px;
    background: #f5f0e7;
}
.subscribe-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
.subscribe-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.subscribe-form input {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 250px;
}
.subscribe-form button {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    background: #444;
    color: white;
    font-size: 14px;
    cursor: pointer;
}
.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: #fefaf4;
    gap: 30px;
    justify-content: center;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
}
.brand-col {
    background: #b62221;
    color: white;
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 1;
    max-width: 100%;
}
.brand-col h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.brand-col p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-logo {
    max-width: 100px;
    margin-top: 20px;
}
.rights {
    margin-top: 10px;
    font-size: 12px;
}
.footer-col h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    font-size: 14px;
    margin-bottom: 6px;
}
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #888;
    padding-bottom: 30px;
    background: #fefaf4;
}
@media (min-width: 768px) {
    .footer-col.sss {
        position: relative;
    }
    .footer-bottom {
        position: absolute;
        right: 50px;
        bottom: 0px;
        z-index: 999;
        text-align: center;
        font-size: 12px;
        color: #888;
        padding-bottom: 30px;
        background: #fefaf4;
    }
}
.agency {
    color: black;
    letter-spacing: 5px;
    font-weight: bold;
    margin-top: 30px;
    text-decoration: none;
    transition: var(--transition);
}
.agency:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0px;
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    .subscribe-form input, .subscribe-form button {
        width: 90%;
        max-width: 300px;
    }
    .brand-col {
        text-align: center;
        border-radius: 0;
    }
}
@media (min-width: 769px) {
    .footer-subscribe {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}




















/* ==================================================== */
/* ABOUT US PAGE */
.hero-section {
    position: relative;
    background: url('../img/bg/about-us-banner.png') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 120px;
    box-sizing: border-box;
}
.hero-text {
    max-width: 800px;
}
.hero-text .subline {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ddd;
}
.hero-text h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-text .desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}
.brand-logos {
    background: white;
    padding: 30px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.logo-scroll {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    min-width: 100%;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.logo-scroll img {
    height: 65px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-scroll img:hover {
    transform: scale(1.02);
    opacity: 1;
}
.logo-scroll::-webkit-scrollbar {
    display: none;
}
.logo-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 24px;
    }
    .hero-text .desc {
        font-size: 14px;
    }
    .logo-scroll {
        gap: 20px;
    }
    .logo-scroll img {
        max-height: 30px;
    }
}
.about-strength {
    text-align: center;
    padding: 60px 0px;
}
.section-title-center {
    text-align: center;
    justify-content: center;
    align-items: center;
}
.section-title-center p:first-child {
    font-size: 18px;
    color: #444;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-title-center p:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.section-title-center h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}
.section-title p:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #444;
    margin: 0;
    padding: 0;
}
.section-title h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
}
.section-title p:last-child {
    color: #555;
    max-width: 600px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.strength-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
    gap: 40px;
}
.icon-box {
    max-width: 200px;
    text-align: center;
    display: inline-block;
}
.icon-box img {
    width: 50px;
    display: block;
    margin: auto auto 15px auto;
}
.icon-box p {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.top-right-to-bottom-left {
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%) !important;
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%) !important;
}
.bottom-right-to-top-left {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%) !important;
    -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%) !important;
}
.about-detail {
    background: #fff;
    padding: 60px 20px 20px;
    margin-top: 60px;
}
.about-detail .above-heading {
    color: #444;
    font-size: 17px;
    margin-bottom: 5px;
}
.about-detail h2 {
    font-size: 28px;
    margin: 0 0 20px 0;
}
.about-detail .desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}
@media (max-width: 768px) {
    .strength-icons {
        flex-direction: column;
        align-items: center;
    }
    .about-detail h2 {
        font-size: 22px;
    }
    .about-detail .desc {
        font-size: 14px;
    }
}
.product-taste-section {
    padding: 60px 0px 0;
    text-align: center;
    clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%);
}
.taste-top h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}
.taste-top p {
    color: #444;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.taste-products {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 40px 0px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    position: relative;
}
.taste-products::-webkit-scrollbar {
    display: none;
}
.product-item {
    flex: 0 0 auto;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.product-item .image-stack .bowl-text{
    position: absolute;
    top: 35% !important;
    left: 35% !important;
    width: 80% !important;
    max-width: calc(400px - 20%);
    height: auto;
    transform: translate(-40%, -40%);
    z-index: 1;
    pointer-events: none;
}





.iso-section {
    background: #fff;
    padding: 60px 0px;
    text-align: center;
}
.iso-logo {
    width: 90px;
    margin-bottom: 20px;
}
.iso-section .subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}
.iso-section h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.iso-section .policy {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}
@media (max-width: 768px) {
    .taste-top h2 {
        font-size: 22px;
    }
    .iso-section h3 {
        font-size: 18px;
    }
    .taste-products {
        gap: 15px;
        justify-content: flex-start;
    }
    .product-item {
        max-width: 100px;
    }
}
/* ==================================================== */




















/* ==================================================== */
/* CONTACT US PAGE */
.contact-section {
    margin: 0;
}
.map-contact-section {
    position: relative;
    width: 100%;
}
.map-box {
    position: relative;
}
.contact-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: white;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.contact-overlay h2 {
    font-size: 36px;
    margin: 0 0 15px;
    font-weight: 800;
}
.contact-overlay p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .contact-overlay {
        position: static;
        transform: none;
        margin: 20px auto;
        max-width: 90%;
        box-shadow: none;
        text-align: center;
    }
    .contact-overlay h2 {
        font-size: 24px;
    }
}
.contact-info,
.contact-form {
    flex: 1 1 45%;
}
.contact-info ul {
    list-style: none;
    padding: 0;
}
.contact-info li {
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
}
.contact-info i {
    margin-right: 10px;
    color: #e60000;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.contact-form textarea {
    min-height: 120px;
}
.contact-privacy {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-submit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.contact-submit button {
    background: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.kvkk-link {
    margin-top: 10px;
    font-size: 12px;
}
.kvkk-link a {
    color: red;
    text-decoration: none;
}
.recaptcha-placeholder {
    width: 160px;
    height: 60px;
    background: #eee;
    text-align: center;
    line-height: 60px;
    font-size: 12px;
    color: #666;
}
@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }
    h2, h3, h1, h4 {
        text-align: center !important;
    }
}
/* ==================================================== */










.our-certificates {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.our-certificates h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-content: center;
}

.certificate-card {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.certificate-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.certificate-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.certificate-card a {
  text-decoration: none;
  color: #007BFF;
  font-weight: 500;
  transition: color 0.2s ease;
}

.certificate-card a:hover {
  color: #0056b3;
}









/* ==================================================== */
/* OUR HISTORY PAGE */
.history-section {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    margin: 50px 0 0 0;
    text-align: justify;
}
@media (max-width: 768px) {
    .history-section {
        margin: 40px 0 0 0;
    }
}
.history-section h4 {
    font-size: 20px;
    color: #444;
    margin: 0;
    font-weight: 400;
    text-align-last: center;
}
.history-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-align-last: center;
}
.history-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: #444;
    font-size: 15px;
    text-align-last: center;
}
.timeline {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0px;
}
.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 40px;
}
.timeline-img {
    flex: 0.35;
    max-width: 100%;
}
.timeline-img img {
    width: 100%;
    height: auto;
    display: block;
}
.timeline-content {
    flex: 1.65;
    position: relative;
    max-width: 55%;
}
.timeline-content .year {
    font-size: 40px;
    color: #ccc;
    font-weight: bold;
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .timeline-item, .reverse-row {
        flex-direction: column !important;
        text-align: center !important;
    }
    .timeline-img img{
        width: 100%;
        max-width: 260px;
    }
    .timeline-content {
        width: 100%;
        max-width: 100%;
    }
    .timeline-content .year {
        font-size: 32px;
        margin-top: 20px;
    }
}
/* ==================================================== */




















/* ==================================================== */
/* TECHNO PAGE */
.quality-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.quality-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.quality-item .text {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 20px;
}
.quality-item .image {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 0px;
    display: flex;
}
.quality-item .image img{
    width:100%;
    height: auto;
    aspect-ratio: 2 / 1;
    margin: auto;
}
.quality-item .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quality-item .text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}
.quality-item .text h5 {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}
.quality-item .text p {
    margin: 10px 0;
    color: #333;
    line-height: 1.6;
}
.quality-item .text ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #555;
}
.quality-item .text ul li {
    margin-bottom: 5px;
}
.quality-item .image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
@media (max-width: 768px) {
    .quality-item{
        flex-direction: column;
    }
    .quality-item .text,
    .quality-item .image {
        flex: 1 1 100%;
        padding: 20px;
    }
    .quality-item .text {
        text-align: center;
    }
}
/* ==================================================== */




















/* ==================================================== */
/* GOLDEN KITCHEN PAGE */
.hero-banner-pages {
    position: relative;
    background: url("../img/bg/page-bg.png") center center no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.hero-banner-pages .overlay-pages {
    padding: 40px 20px;
    max-width: 800px;
    border-radius: 8px;
}
.hero-banner-pages h1 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}
.hero-banner-pages p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
.kitchen-detail-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    aspect-ratio:  1/1;
}
@media (max-width: 768px) {
    .hero-banner-pages h1 {
        font-size: 28px;
    }
    .hero-banner-pages p {
        font-size: 15px;
    }
}


    .kit-section-bg {
      background-color: #f5f0e7;
      padding: 60px 20px 100px;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    }

    .kit-section-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }

    .kit-section-description {
      font-size: 14px;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.5;
      text-align: center;
    }

    .kit-kit-products {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 60px;
    }

    .kit-product {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .kit-product img {
      max-width: 250px;
      height: auto;
      transition: transform 0.3s;
    }

    .kit-product img:hover {
      transform: scale(1.05);
    }

    .kit-product-button {
      margin-top: 10px;
      background: black;
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
    }

    .kit-bottom-section {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .kit-bottom-section img {
      max-width: 200px;
      height: auto;
    }

    .kit-bottom-text {
      margin-top: 10px;
      font-size: 13px;
      color: #555;
    }

    @media (max-width: 768px) {
      .kit-kit-products {
        flex-direction: column;
      }
    }
/* ==================================================== */




















/* ==================================================== */
/* KITCHEN CARD */
.kitchen-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.kitchen-card {
    position: relative;
    width: 250px;
    height: 320px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.kitchen-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kitchen-card .k-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 80px 0px 20px 0px;
    text-align: center;
    color: #fff;
    transition: var(--transition);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.01));
}
.kitchen-card h3 {
    font-size: 16px;
    margin: 4px 0;
    font-weight: bold;
}
.kitchen-card small {
    font-size: 13px;
    opacity: 0.9;
}
.kitchen-card a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 3px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}
.kitchen-card a:hover {
    border-color: #fff;
}
.kitchen-card:hover .k-overlay {
    background: linear-gradient(to top, rgba(211, 0, 0, 0.8), rgba(211, 0, 0, 0.01));
}
@media (max-width: 600px) {
    .kitchen-cards {
        flex-direction: column;
        align-items: center;
    }
}
/* ==================================================== */




















/* ==================================================== */
/* CATALOG PAGE */
.catalogue-section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0px;
}
.catalogue-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.catalogue-block.reverse {
    flex-direction: row-reverse;
}
.catalogue-img {
    flex: 0.5;
}
.catalogue-img img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 4px;
    /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);*/
}
.catalogue-text {
    flex: 1.5;
    min-width: 300px;
}
.float-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  text-align: end;
}
.catalogue-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.catalogue-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}
.catalogue-text button, .catalogue-text a.button {
    padding: 8px 18px;
    font-size: 14px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    width: 120px !important;
    max-width: 120px !important;
    text-align: center;
    text-decoration: none;
}
.main-brand-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-brand-img img {
    width: 100%;
    max-width: 450px;
}
.catalogue-text button:hover, .catalogue-text a.button:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .catalogue-block, .catalogue-block.reverse {
        flex-direction: column !important;
        text-align: center;
    }
    .catalogue-img img {
        margin: auto;
    }
}
@media (min-width: 768px) {
    .catalogue-img img {
        width: 100%;
        max-width: 420px;
        height: auto;
        display: block;
        border-radius: 4px;
        /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);*/
    }
}
/* ==================================================== */




















/* ==================================================== */
/* PRODUCT LIST PAGE */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 ;
}
.product-item-ragip {
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-item-ragip img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    position: absolute;
    top: 0;
    margin: auto;
    left: 0;
    width: 80%;
    height: 80%;
}
.product-item-ragip.beige {
    background-color: #f5f0e7;
}
.product-item-ragip.red {
    background-color: #c45858;
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}



.col-img-half {
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 3/1;
    object-fit: cover;
}
.info-col-half {
  padding: 20px;
}


.products-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: #fff;
  flex-wrap: wrap;
}

.image-column {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.content-column {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.content-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.content-column h2 {
  font-size: 36px;
  font-weight: bold;
  color: #d60000;
  margin-bottom: 20px;
}

.content-column p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.product-icons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.icon-box {
  text-align: center;
  color: #222;
}

.icon-box img {
  height: 50px;
  margin-bottom: 10px;
  transition: filter 0.3s ease;
}

.icon-box p {
  font-weight: bold;
}

.icon-box.active {
  color: #d60000;
}

.icon-box.active p {
  color: #d60000;
}

.icon-box.active img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(91%) saturate(5740%) hue-rotate(357deg) brightness(92%) contrast(118%);
}

@media (max-width: 991.98px) {
  .products-showcase {
    flex-direction: column;
    padding: 40px 20px;
  }

  .image-column,
  .content-column {
    max-width: 100%;
    text-align: center;
  }

  .product-icons {
    justify-content: center;
  }
}


























.p-seed-hero {
    background: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}
.p-seed-hero.cekridek {
    background: radial-gradient(circle at center, #FFF 0%, rgba(182, 34, 33, 0.1) 60%);
}
.p-hero-images-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.p-hero-image {
    max-width: 300px;
    width: 100%;
    z-index: 2;
}
.news-main-image {
    width: 100%;
    border-radius: 4px;
    z-index: 2;
}
.p-hero-image.square {
    object-fit: contain;
    aspect-ratio: 1 / 1;
    height: 100%;
    width: auto;
}
.side-image {
    max-width: 180px;
    width: 100%;
    opacity: 0.9;
    z-index: 1;
}
.text-start {
    text-align: left;
}
.side-image.left {
    transform: translateY(20px) rotate(-3deg);
}

.side-image.right {
    transform: translateY(20px) rotate(3deg);
}

.p-hero-content h4 {
    font-size: 18px;
    color: #888;
    margin-bottom: 10px;
}

.p-hero-content h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.p-hero-content p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.p-hero-image {
    margin-top: 30px;
    max-width: 500px;
    width: 100%;
}

.p-floating-seeds .seed {
    position: absolute;
    width: 60px;
    animation: floatSeed 10s infinite linear;
}

.p-seed1 { top: 20px; left: 10%; animation-delay: 0s; }
.p-seed2 { top: 60px; right: 15%; animation-delay: 2s; }
.p-seed3 { top: 120px; left: 25%; animation-delay: 4s; }

@keyframes floatSeed {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
}

.p-nutrition-bar {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.p-nutrient {
    background: #f1f1f1;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.p-product-description {
    max-width: 800px;
    margin: 40px auto;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.news-det {
    padding: 20px;
    text-align: left;
    display: inline-block;
    width: 100%;
    margin: 50px 0 0 0;
}
.news-det h2 {
    text-align: center;
}

.p-package-details {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.p-package-details h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.p-package-details table {
    width: 100%;
    border-collapse: collapse;
}

.p-package-details thead {
    background: #e31c1c;
    color: white;
}

.p-package-details th,
.p-package-details td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.p-taste-preview {
    margin-top: 60px;
}

.p-taste-preview h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #444;
}

.p-taste-preview p {
    font-size: 15px;
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}
.p-preview-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.p-preview-item {
    text-align: center;
    max-width: 200px;
}

.p-preview-item img {
    max-height: 200px;
    transition: transform 0.3s ease;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.p-preview-item img:hover {
    transform: scale(1.05);
}

.p-preview-item h3 {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}


















.news-card {
    margin: 10px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.news-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
}
.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}
.news-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}
.news-summary {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}
.read-more {
    align-self: flex-start;
    font-size: 0.95rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--color-primary);
}








.logo-text {
    width: 80px;
}


.menu-header-ali {
    max-width: 40px;
    max-height: 40px;
    height: 40px;
    width: 40px;
    aspect-ratio: 1 / 1;
}

.menu-header-ali.kategory {
    max-width: 40px;
    max-height: 30px;
    height: 30px !important;
    width: 40px !important;
    aspect-ratio: 1 / 1;
}

.brand-card {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.brand-card:hover img{
    transform: scale(1.02);
    filter: drop-shadow(0 12px 20px rgba(182, 34, 33, 0.5));
}

.brand-card img{
    margin: auto;
    widows: 100%;
    max-width: 200px;
    transition: all 0.3s ease;
}

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


.job-form {
  margin: 40px auto;
  padding: 30px;
}

.job-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.job-form input[type="text"],
.job-form input[type="email"],
.job-form input[type="date"],
.job-form textarea,
.job-form input[type="tel"],
.job-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.job-form input:focus,
.job-form select:focus {
  border-color: #007bff;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.radio-group label {
  font-weight: normal;
  color: #333;
}

.job-form input[type="radio"] {
  margin-right: 8px;
}

.job-form button {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job-form button:hover {
  background-color: #333;
}






    :root{
      --red:#e5002a;
      --text:#1b1b1b;
      --muted:#5b5b5b;
      --max:1200px;
    }
    .brand-row-ragip{
      display:flex; align-items:center; gap:56px;
      padding-block:40px;
    }
    .brand-row-ragip:nth-child(even){ flex-direction: row-reverse; }
    .brand-media-ragip, .brand-copy-ragip{flex:1 1 0}
    .brand-copy-ragip img {
        margin: auto;
    }
    .brand-media-ragip{
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    }
    .brand-media-ragip img{ display:block; margin:0 auto; max-width:520px; width:100%; }
    .brand-logo-ragip{
      width:200px; height:auto; display:block; margin:0 0 18px 0;
    }
    .brand-title-ragip{margin:0 0 10px 0; font-size:26px; font-weight:800; letter-spacing:.2px}
    .brand-desc-ragip{margin:0 0 22px 0; color:var(--muted); font-size:18px; text-align: center;}
    .btn-ragip{
      display:block;
      width:max-content;
      margin:10px auto;
      padding:12px 18px;
      border-radius:999px;
      background:var(--red);
      color:#fff;
      text-decoration:none;
      font-weight:700;
      font-size:15px;
      border:0;
      transition:transform .15s ease, box-shadow .15s ease;
    }
    .btn-ragip:hover{transform:translateY(-1px); box-shadow:0 6px 16px rgba(229,0,42,.35)}
    .btn-ragip:active{transform:translateY(0)}
    @media (max-width: 992px){
      .brand-row-ragip{gap:36px}
      .brand-desc-ragip{font-size:16px}
    }
    @media (max-width: 768px){
      .brand-row-ragip{flex-direction:column; text-align:center}
      .brand-row-ragip:nth-child(even){flex-direction:column} /* stack same on mobile */
      .brand-logo-ragip{margin-inline:auto}
      .brand-media-ragip img{max-width:420px}
    }
    
    
    
.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-links li {
  border-bottom: 1px solid #eee;
}
.side-links > li > a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
  position: relative;
}
.side-links > li > a:hover {
  background: #f5f5f5;
}

.side-links li.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.side-links li.dropdown.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.side-links .submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fafafa;
}
.side-links .submenu li a {
  padding: 10px 40px;
  font-size: 14px;
  color: #444;
}
.side-links .submenu li a:hover {
  background: #f0f0f0;
}
