/*
Theme Name: KentaPro
Theme URI: https://yourwebsite.com/kentapro
Author: Stark
Author URI: https://yourwebsite.com
Description: A beautiful flower shop WordPress theme with elegant design and floral aesthetics.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kentapro
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, flower-shop, e-commerce

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --color-primary: #9ca896;
    --color-secondary: #a98b98;
    --color-accent: #c9b89a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f7f7f7;
    --color-sage-green: #9ca896;
    --color-purple: #a98b98;
    --color-beige: #c9b89a;
    --color-light-green: #d4ddd0;
    --color-border: #dddddd;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-caption: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-nav: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --spacing-unit: 1rem;
    --container-width: 1400px;
    --sidebar-width: 300px;
}

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

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #e5e5e5;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: var(--spacing-unit);
    font-family: var(--font-body);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    margin: 0;
    background-color: var(--color-background);
}

.site-content {
    flex: 1;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2);
}

.primary {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 100%;
}

@media (min-width: 768px) {
    .sidebar {
        width: var(--sidebar-width);
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: transparent;
    padding: 0;
    border-bottom: none;
}

.flower-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
}

/* Inner pages header styles */
body:not(.home) .flower-header {
    position: relative;
    background-color: var(--color-sage-green);
}

body:not(.home) .site-title-flower {
    color: white;
}

body:not(.home) .flower-logo circle,
body:not(.home) .flower-logo path {
    stroke: white;
}

body:not(.home) .navbar-nav .nav-link,
body:not(.home) .navbar-nav a {
    color: white;
}

body:not(.home) .navbar-nav .nav-link:hover,
body:not(.home) .navbar-nav a:hover,
body:not(.home) .navbar-nav .current-menu-item > a {
    color: rgba(255, 255, 255, 0.7);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
}

.flower-logo {
    width: 40px;
    height: 40px;
}

.site-title-flower {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

.header-widget-area {
    flex: 0 0 auto;
    margin-left: auto;
}

.header-widget-area .widget {
    margin-bottom: 0;
}

.header-widget-area .widget-title {
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    border: none;
}

.header-widget-area a {
    color: var(--color-text-light);
}

.header-widget-area a:hover {
    color: var(--color-primary);
}

.site-title {
    margin: 0;
    font-size: 2rem;
    font-family: var(--font-title);
    font-weight: 700;
}

.site-title a {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
}

.site-description {
    margin: 0.5rem 0 0;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Logo size controlled by customizer Logo Width setting */
.custom-logo-link img,
img.custom-logo {
    height: auto;
    max-width: 100%;
}

/* ==========================================================================
   Page Title Bar (Inside Header)
   ========================================================================== */
.page-title-bar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 15px 0 5px;
}

.current-page-name {
    font-size: 2.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-title-bar {
        justify-content: flex-start;
    }

    .current-page-name {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.main-navigation {
    background-color: transparent;
    padding: 20px 0;
}

.flower-navigation .container {
    padding: 0 0px;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    padding-top: 5px;
}

.navbar-expand-md .navbar-collapse {
    background-color: transparent;
}

/* Bootstrap Navbar Toggler Customization */
.navbar-toggler {
    border: none;
    background-color: transparent;
    padding: 0.5rem 0.75rem;
    display: none;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Show menu items by default on desktop */
.navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    flex: 1;
    align-items: flex-start;
}

/* Only show toggler on mobile */
@media (max-width: 767px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none !important;
    }

    .navbar-collapse.show {
        display: flex !important;
    }
}

/* Navigation Menu Items */
.navbar-nav {
    flex-direction: row;
    gap: 0;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
    align-items: flex-start;
}

.navbar-nav .nav-item,
.navbar-nav .menu-item {
    position: relative;
    list-style: none;
}

.navbar-nav .nav-link,
.navbar-nav a {
    display: block;
    padding: 8px 20px !important;
    color: white;
    font-size: 0.875rem;
    font-family: var(--font-nav);
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link:hover,
.navbar-nav a:hover,
.navbar-nav .current-menu-item > a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Remove right padding from last menu item to align with page title */
.navbar-nav .nav-item:last-child > .nav-link,
.navbar-nav .nav-item:last-child > a,
.navbar-nav .menu-item:last-child > a {
    padding-right: 0 !important;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 0;
    border-radius: 0;
    display: none;
}

/* Show dropdown on hover for desktop */
@media (min-width: 768px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

.navbar-nav .dropdown-item {
    padding: 12px 18px !important;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 400;
}

.navbar-nav .dropdown-item:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .site {
        margin: 0 auto;
    }

    .flower-header {
        position: sticky;
        background-color: rgba(156, 168, 150, 0.95);
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .site-header .container {
        flex-direction: column;
    }

    .site-branding {
        width: 100%;
    }

    .header-widget-area {
        margin-left: 0;
    }

    .main-navigation .container,
    .flower-navigation .container {
        padding: 0 20px;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link,
    .navbar-nav a {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item:last-child .nav-link,
    .navbar-nav .nav-item:last-child a,
    .navbar-nav .menu-item:last-child a {
        border-bottom: none;
    }

    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    .front-page .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .site-main {
        padding: 30px 0;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    width: calc(100% - 100px);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 50px;
}

@media (max-width: 767px) {
    .hero-section {
        height: 300px;
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}

/* ==========================================================================
   Content
   ========================================================================== */
.site-main {
    padding: 50px 0;
}

.site-main.front-page {
    padding: 0;
}

.front-page .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.entry-header {
    margin-bottom: var(--spacing-unit);
}

/* Hide page titles on pages (shown in header now) */
.page .entry-header {
    display: none;
}

.entry-title {
    margin-bottom: 0.25em;
}

.entry-title a {
    color: var(--color-text);
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-family: var(--font-caption);
}

.entry-meta a {
    color: var(--color-text-light);
}

.entry-content {
    margin-bottom: var(--spacing-unit);
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-footer {
    padding-top: var(--spacing-unit);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: var(--spacing-unit);
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Post Navigation
   ========================================================================== */
.post-navigation,
.posts-navigation {
    margin: calc(var(--spacing-unit) * 2) 0;
    padding: var(--spacing-unit) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 200px;
}

.nav-next {
    text-align: right;
}

/* Pagination */
.pagination {
    margin: calc(var(--spacing-unit) * 2) 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border: 1px solid var(--color-border);
}

.pagination .page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid var(--color-border);
}

.comments-title {
    margin-bottom: var(--spacing-unit);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: var(--spacing-unit);
    padding-bottom: var(--spacing-unit);
    border-bottom: 1px solid var(--color-border);
}

.comment-list .children {
    list-style: none;
    margin-left: calc(var(--spacing-unit) * 2);
    padding: 0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.comment-content {
    margin-top: 0.5rem;
}

.reply {
    margin-top: 0.5rem;
}

/* Comment Form */
.comment-respond {
    margin-top: calc(var(--spacing-unit) * 2);
}

.comment-form label {
    display: block;
    margin-bottom: 0.25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: var(--spacing-unit);
}

/* ==========================================================================
   Widgets / Sidebar
   ========================================================================== */
.widget {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.widget-title {
    margin-bottom: var(--spacing-unit);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-primary);
    font-size: 1.125rem;
}

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

.widget li {
    padding: 0.5rem 0;
    border-bottom: 0.5px solid var(--color-border);
}

.widget li:last-child {
    border-bottom: none;
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form .search-field {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-right: none;
    font-size: 1rem;
}

.search-form .search-submit {
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    cursor: pointer;
}

/* ==========================================================================
   Call to Action Section
   ========================================================================== */
.cta-section {
    background-color: var(--color-primary);
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: calc(var(--spacing-unit) * 2) 0;
    margin-top: auto;
    position: relative;
}

.demo-watermark {
    position: fixed;
    left: 15px;
    bottom: 15px;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    z-index: 9999;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: var(--spacing-unit);
}

.footer-widgets .widget-title {
    color: #ffffff;
    border-bottom: none;
}

.footer-widgets li {
    border-bottom-color: rgba(255,255,255,0.15);
}

.footer-widgets a {
    color: #cccccc;
}

.footer-widgets a:hover {
    color: #ffffff;
}

.site-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-unit);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-logo img {
    max-height: 40px;
    width: auto;
}

.footer-logo-placeholder {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.footer-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.footer-from {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-kingsmount {
    font-weight: 600;
    letter-spacing: 1px;
}

.site-info a {
    color: rgba(255, 255, 255, 0.8);
}

.site-info a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .site-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }
}

/* ==========================================================================
   Forms & Buttons
   ========================================================================== */
button,
input[type="button"],
input[type="submit"],
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover {
    background-color: var(--color-accent);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.basicpro-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.basicpro-contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.basicpro-contact-form .required {
    color: #dc3545;
}

.basicpro-contact-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.basicpro-contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 115, 170, 0.1);
}

.basicpro-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.basicpro-contact-form .btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.basicpro-contact-form .btn-primary:hover {
    background-color: #005a87;
}

.basicpro-contact-form .alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.basicpro-contact-form .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.basicpro-contact-form .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.alignleft {
    float: left;
    margin-right: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.alignright {
    float: right;
    margin-left: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-unit);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.wp-caption {
    max-width: 100%;
    margin-bottom: var(--spacing-unit);
}

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

.wp-caption-text,
figcaption,
.gallery-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
    font-family: var(--font-caption);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Block Editor Alignments */
.alignwide {
    max-width: calc(var(--container-width) + 100px);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404 {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) 0;
}

.error-404 .page-title {
    font-size: 4rem;
    color: var(--color-primary);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    .site-header,
    .main-navigation,
    .sidebar,
    .site-footer,
    .comments-area {
        display: none;
    }
}

/* ==========================================================================
   FLOWER HUB HOMEPAGE DESIGN
   ========================================================================== */

/* Flower Hub Frontpage Layout */
.flower-hub-frontpage {
    padding: 0;
    margin: 0;
}

/* Hero Section */
.flower-hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #b5c4a3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 50px 60px;
    overflow: visible;
}

.flower-hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 550px;
    height: 130%;
    background-image: url('https://www.kenta.in/wp-content/uploads/2026/01/Untitled-design-4.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.flower-hero-section::after {
    content: '';
    position: absolute;
    top: -60px;
    right: 25%;
    width: 400px;
    height: 450px;
    background-image: url('https://www.kenta.in/wp-content/uploads/2026/02/leaf.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.flower-hero-content {
    position: relative;
    z-index: 0;
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

.hero-text-overlay {
    flex: 1;
    position: relative;
    z-index: 0;
}

.hero-logo-image {
    max-width: 936px;
    height: auto;
    display: block;
    margin: 0;
}

.hero-beautiful-text {
    font-size: 15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1;
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.hero-subtitle-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
    position: relative;
    z-index: 10;
    padding: 110px 0 142px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-quote {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.8;
    font-style: italic;
    max-width: 400px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', Georgia, serif;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    padding-right: 25px;
    position: relative;
}

.hero-quote::before {
    content: '\201C';
    font-size: 5rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -30px;
    left: -40px;
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 25px;
    border-radius: 25px;
}

.badge-icon {
    flex-shrink: 0;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-sage-green);
}

.badge-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: smoothBounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 20;
}

.hero-scroll-indicator svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes smoothBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.7;
    }
}

/* Paris & Party Section */
.paris-party-section {
    padding: 150px 50px;
    background: #f3d4d4;
}

.paris-party-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    margin: 10px 0 0;
    font-style: italic;
}

.paris-party-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.party-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
    text-align: center;
}

.sage-circle {
    background: var(--color-sage-green);
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sage-circle:hover {
    background: #7a8a6e;
    transform: scale(1.05);
}

.beige-circle {
    background: var(--color-beige);
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.beige-circle:hover {
    background: #b09a7a;
    transform: scale(1.05);
}

.purple-circle {
    background: var(--color-purple);
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.purple-circle:hover {
    background: #8a6e7e;
    transform: scale(1.05);
}

.circle-icon svg {
    margin-bottom: 15px;
}

.circle-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.circle-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    margin: 5px 0 0;
    opacity: 0.9;
}

.circle-number {
    font-size: 5rem;
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

.circle-label {
    font-size: 0.9rem;
    margin: 10px 0 0;
}

.circle-image-placeholder {
    width: 120px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-top: 15px;
}

/* Info Cards Section */
.info-cards-section {
    padding: 0;
}

.info-cards-section .container-fluid {
    padding: 0;
}

.info-cards-section .row {
    margin: 0;
}

.info-card {
    padding: 80px 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sage-bg {
    background: var(--color-sage-green);
}

.beige-bg {
    background: var(--color-beige);
}

.info-card-content {
    max-width: 500px;
    color: white;
}

.info-icon {
    margin-bottom: 25px;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.info-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

/* Cafe Menu Section */
.cafe-menu-section {
    padding: 80px 50px 40px;
    background: white;
}

.cafe-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-card {
    text-align: center;
    padding: 20px;
}

.menu-card-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sage-bg {
    background: var(--color-sage-green);
}

.light-green-bg {
    background: var(--color-light-green);
}

.dark-bg {
    background: #4a4a4a;
}

.leaf-icon {
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M20 10 Q30 5 40 10 Q45 20 40 30 Q30 35 20 30 Q15 20 20 10" fill="rgba(156,168,150,0.4)"/></svg>') center/contain no-repeat;
}

.thank-text {
    color: white;
    font-size: 1.5rem;
    font-style: italic;
}

.menu-title {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 10px;
    font-weight: 400;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cafe-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
}

.cafe-footer-text {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-weight: 600;
    color: #333;
}

/* Responsive Design for Flower Hub */
@media (max-width: 768px) {
    .flower-hub-frontpage {
        overflow-x: hidden;
    }

    .flower-hero-section {
        min-height: 100vh;
        padding: 80px 20px 60px;
        overflow: hidden;
    }

    .flower-hero-section::before {
        width: 300px;
        height: 100%;
        top: 5%;
        left: 5%;
    }

    .flower-hero-section::after {
        width: 200px;
        height: 250px;
        top: -20px;
    }

    .flower-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-logo-image {
        max-width: 280px;
        width: 100%;
    }

    .hero-beautiful-text {
        font-size: 4rem;
        text-align: center;
    }

    .hero-subtitle-section {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-quote {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-badge {
        padding: 8px 20px;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .paris-party-section {
        padding: 80px 20px;
    }

    .paris-party-circles {
        gap: 20px;
        flex-direction: column;
    }

    .party-circle {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 2rem;
    }

    .circle-number {
        font-size: 4rem;
    }

    .info-card {
        padding: 60px 30px;
    }

    .cafe-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .cafe-footer-text {
        flex-direction: column;
        text-align: center;
    }
}

/* About Kenta and Features Series Section */
.about-features-section {
    padding: 40px 0;
    background-color: #e8e3d9;
}

.about-features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-kenta-box {
    background-color: #d5a8b8;
    padding: 100px 60px;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.about-kenta-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

.features-series-box {
    background-color: #c2a0b0;
    padding: 100px 60px;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.features-series-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

/* Collections Section */
.collections-section {
    padding: 40px 0;
    background-color: #e8e3d9;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.collection-item {
    background-color: #d8e5c8;
    padding: 80px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.collection-item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 1px;
}

/* Experience and Client Section */
.experience-client-section {
    padding: 40px 0;
    background-color: #e8e3d9;
}

.experience-client-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.kenta-experience-box {
    background-color: #d8d8d8;
    padding: 100px 60px;
    flex: 2;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.kenta-experience-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

.client-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-logo-box,
.client-photo-box {
    background-color: #c8c8c8;
    padding: 40px 30px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box h4,
.client-photo-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* Brand Trust Section */
.brand-trust-section {
    padding: 40px 0;
    background-color: #e8e3d9;
}

.brand-trust-box {
    background-color: #d4cfb8;
    padding: 120px 60px;
    text-align: left;
}

.brand-trust-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

/* Footer Info Section */
.footer-info-section {
    padding: 40px 0 80px;
    background-color: #c8c4a8;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 0;
}

.footer-info-box {
    padding: 100px 60px;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
}

.address-box {
    background-color: #ddd9c0;
}

.enquiries-box {
    background-color: #ddd9c0;
}

.map-box {
    background-color: #c8c4a8;
}

.footer-info-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}

/* Responsive Design for Kenta */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .kenta-container {
        padding: 0 20px;
    }

    .about-features-wrapper {
        flex-direction: column;
    }

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

    .experience-client-wrapper {
        flex-direction: column;
    }

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

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 80px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 40px 0;
    font-family: var(--font-heading);
    text-align: left;
    line-height: 1.4;
    background-color: #7a8a74;
    padding: 15px 30px;
    border-radius: 4px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.contact-info-row {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-section,
.location-section {
    flex: 1;
}

.contact-section {
    background: linear-gradient(to right, #8a9a84, #c5d4bf);
    padding: 25px 30px;
    border-radius: 8px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .contact-item {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.location-section .address-line {
    font-size: 1rem;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.location-box {
    padding: 20px;
    border-radius: 8px;
    border-left: none;
}

.location-box.green-bright {
    background: #7a8a74;
}

.location-box.green-medium {
    background: #9ca896;
}

.location-box.green-light {
    background: #c5d4bf;
}

.location-country {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-box.green-light .location-country {
    color: #4a5a44;
}

.location-box .address-line {
    font-size: 0.9rem;
    color: #fff;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.location-box.green-light .address-line {
    color: #4a5a44;
}

.location-box .address-line.company-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.location-box .address-line.launching-soon {
    font-style: italic;
    opacity: 0.9;
    margin-top: 10px;
}

.location-contact {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.location-box.green-light .location-contact {
    border-top-color: rgba(74, 90, 68, 0.3);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.location-box.green-light .contact-line {
    color: #4a5a44;
}

.contact-line svg {
    flex-shrink: 0;
}

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

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

.social-follow-section {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-text {
    font-size: 1.1rem;
    color: #4a5a44;
    font-weight: 500;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:nth-child(1) {
    background: #7a8a74;
}

.social-icon:nth-child(2) {
    background: #9ca896;
}

.social-icon:nth-child(3) {
    background: #c5d4bf;
    color: #4a5a44;
}

.social-icon:hover {
    background: #4a5a44;
    color: #fff;
    transform: scale(1.1);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.contact-social {
    margin-top: 40px;
}

.social-label {
    font-size: 1rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.website:hover {
    background: #b5c4a3;
}

.contact-form-section {
    flex: 1;
    background: #f5f8f4;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e8dc;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4a5a44;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #d4ddd0;
    border-radius: 5px;
    background: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9ca896;
    box-shadow: 0 0 0 3px rgba(156, 168, 150, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.contact-form .country-code-input {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    padding: 15px 5px;
    font-size: 0.9rem;
    border: 1px solid #d4ddd0;
    border-radius: 5px;
    background: #fff;
    font-family: inherit;
    text-align: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.country-code-input:focus {
    outline: none;
    border-color: #9ca896;
    box-shadow: 0 0 0 3px rgba(156, 168, 150, 0.15);
}

.phone-group input[name="phone"] {
    flex: 1;
    min-width: 0;
}

.submit-btn {
    background-color: #7a8a74;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: #4a5a44;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group:last-of-type {
    flex: 1;
    display: flex;
}

.contact-form textarea {
    flex: 1;
    resize: none;
}

.form-disclaimer {
    margin-top: auto;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #6a7a64;
    line-height: 1.5;
    font-style: italic;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 20px;
    }

    .contact-subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-section {
        padding: 25px;
    }

    .form-title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-page {
    background-color: #f8f7f5;
    min-height: 100vh;
    padding: 80px 40px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: left;
    margin-bottom: 50px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: #b5c4a3;
    margin: 0;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0 0 20px 0;
}

.about-segments {
    margin-bottom: 60px;
}

.segment-card {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.segment-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b5c4a3;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.segment-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px 0;
}

.segment-card p:last-child {
    margin-bottom: 0;
}

.about-vision-mission {
    display: flex;
    gap: 30px;
}

.vision-box,
.mission-box {
    flex: 1;
    background: #b5c4a3;
    padding: 40px;
    border-radius: 8px;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.vision-box p,
.mission-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .segment-card {
        padding: 25px;
    }

    .about-vision-mission {
        flex-direction: column;
    }

    .vision-box,
    .mission-box {
        padding: 25px;
    }
}

/* ==========================================================================
   TESTIMONIALS SLIDER STYLES
   ========================================================================== */

.kenta-experience-section {
    position: relative;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.client-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.client-photo {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-logo {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.no-testimonials {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background: #f5f5f5;
}

.testimonial-nav-btn {
    background: #b5c4a3;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: #9cad8b;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
    background: #b5c4a3;
    transform: scale(1.2);
}

.testimonials-dots .dot:hover {
    background: #9cad8b;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .client-info {
        min-height: 200px;
    }

    .client-row {
        gap: 20px;
    }

    .client-photo {
        width: 100px;
        height: 100px;
    }

    .client-logo {
        width: 100px;
        height: 100px;
    }

    .testimonials-nav {
        gap: 15px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   BRANDS THAT TRUST US SECTION
   ========================================================================== */

.brands-trust-section {
    padding: 60px 40px;
    background-color: #f8f7f5;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

.brands-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: 2px;
}

.brands-logo-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    align-items: center;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.no-logos {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Brands Marquee */
.brands-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.brands-marquee .marquee-track {
    display: flex;
    gap: 20px;
    animation: brands-scroll 30s linear infinite;
}

.brands-marquee.marquee-reverse .marquee-track {
    animation: brands-scroll-reverse 30s linear infinite;
}

@keyframes brands-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes brands-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.brands-marquee .brand-logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
}

.brands-marquee .brand-logo-item img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Brands Responsive */
@media (max-width: 1400px) {
    .brands-logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-trust-section {
        padding: 40px 20px;
    }

    .brands-title {
        font-size: 1.5rem;
    }

    .brands-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .brand-logo-item {
        padding: 10px;
    }

    .brand-logo-item img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .brands-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   MEDIA & EVENTS PAGE
   ========================================================================== */

.media-events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 40px 0;
    position: relative;
}

/* Hexagon Decoration */
.hexagon-decoration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.hexagon {
    width: 120px;
    height: 104px;
    background: var(--color-sage-green);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.3;
}

.hexagon-sm {
    width: 70px;
    height: 60px;
    position: absolute;
    right: calc(50% - 110px);
    top: 30px;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .hexagon {
        width: 80px;
        height: 70px;
    }

    .hexagon-sm {
        width: 50px;
        height: 43px;
        right: calc(50% - 80px);
        top: 20px;
    }
}

/* Media Boxes Section */
.media-boxes-section {
    margin-bottom: 60px;
}

.media-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.media-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-green) 0%, #7a8a74 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-box:nth-child(2) {
    background: linear-gradient(135deg, var(--color-beige) 0%, #b5a388 100%);
}

.media-box:nth-child(3) {
    background: linear-gradient(135deg, var(--color-purple) 0%, #8a7080 100%);
}

.media-box:nth-child(4) {
    background: linear-gradient(135deg, #6b8e9f 0%, #5a7a8a 100%);
}

.media-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-box-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Featured Media Section */
.featured-media-section {
    margin-top: 60px;
    padding-top: 40px;
    overflow: hidden;
}

.featured-media-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-text);
}

.featured-media-marquee {
    overflow: hidden;
    width: 100%;
}

.featured-media-marquee .marquee-track {
    display: flex;
    gap: 25px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.featured-media-marquee .marquee-track:hover {
    animation-play-state: paused;
}

.featured-media-marquee.marquee-reverse {
    margin-top: 25px;
}

.featured-media-marquee.marquee-reverse .marquee-track {
    animation: marquee-reverse 30s linear infinite;
}

.featured-media-item {
    flex-shrink: 0;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.media-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.media-events-content {
    margin-top: 60px;
}

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

    .media-box {
        padding: 40px 30px;
    }

    .media-box-title {
        font-size: 1.4rem;
    }
}

.media-events-header {
    text-align: left;
    margin-bottom: 50px;
}

.media-events-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.blog-grid-section {
    padding: 0;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image .no-thumbnail {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin: 0 0 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--color-sage-green);
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--color-sage-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #9cad8b;
    color: white;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 40px;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--color-sage-green);
    color: white;
}

/* Media Events Responsive */
@media (max-width: 768px) {
    .media-events-container {
        padding: 50px 20px;
    }

    .media-events-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 40px 20px;
}

.services-content {
    margin-top: 60px;
}

/* Services Page Circles - same as products */
.services-page .party-circle {
    width: 310px;
    height: 310px;
    padding: 40px;
}

.services-page .circle-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.services-page .circle-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.services-page .circle-subtitle {
    font-size: 0.50rem;
    align-self: flex-end;
    margin: 0;
}

@media (max-width: 992px) {
    .services-page .party-circle {
        width: 250px;
        height: 250px;
    }

    .services-page .circle-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-page .party-circle {
        width: 200px;
        height: 200px;
    }

    .services-page .circle-title {
        font-size: 1.1rem;
    }

    .services-container {
        padding: 50px 20px;
    }
}

/* Featured Services Section */
.featured-services-section {
    margin-top: 60px;
    padding-top: 40px;
    overflow: hidden;
}

.featured-services-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-text);
}

.featured-services-marquee {
    overflow: hidden;
    width: 100%;
}

.featured-services-marquee .marquee-track {
    display: flex;
    gap: 25px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.featured-services-marquee .marquee-track:hover {
    animation-play-state: paused;
}

.featured-services-marquee.marquee-reverse {
    margin-top: 25px;
}

.featured-services-marquee.marquee-reverse .marquee-track {
    animation: marquee-reverse 30s linear infinite;
}

.featured-service-item {
    flex-shrink: 0;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

/* Why Kenta Section */
.why-kenta-section {
    margin-top: 100px;
    text-align: center;
}

.why-kenta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-text);
}

.why-kenta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.why-feature-item {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.why-feature-divider {
    color: var(--color-text-light);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .why-kenta-features {
        gap: 10px 15px;
    }

    .why-feature-item {
        font-size: 0.85rem;
    }

    .why-feature-divider {
        display: none;
    }

    .why-kenta-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 40px 20px;
}

.products-header {
    text-align: left;
    margin-bottom: 50px;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.product-categories-section {
    margin-bottom: 60px;
}

.product-categories-section .paris-party-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.products-content {
    margin-top: 0;
}

@media (max-width: 768px) {
    .products-container {
        padding: 50px 20px;
    }

    .products-title {
        font-size: 2rem;
    }

    .product-categories-section .paris-party-circles {
        gap: 20px;
    }
}

/* ==========================================================================
   FEATURED PRODUCTS SECTION
   ========================================================================== */

.featured-products-section {
    margin-top: 60px;
    padding-top: 40px;
    overflow: hidden;
}

.featured-products-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.featured-products-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 25px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-reverse {
    margin-top: 25px;
}

.marquee-reverse .marquee-track {
    animation: marquee-reverse 30s linear infinite;
}

.featured-product-item {
    flex-shrink: 0;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 2px dashed #ccc;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .featured-products-title {
        font-size: 1.5rem;
    }

    .featured-product-item {
        width: 180px;
    }

    .product-image-placeholder {
        height: 150px;
    }
}

/* Circle Links */
.circle-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.circle-link:hover {
    transform: scale(1.05);
}

.circle-link .circle-title,
.circle-link .circle-subtitle {
    color: white;
}

/* Products Page Circles - 25% bigger */
.products-page .party-circle {
    width: 310px;
    height: 310px;
    padding: 40px;
}

.products-page .circle-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.products-page .circle-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.products-page .circle-subtitle {
    font-size: 0.50rem;
    align-self: flex-end;
    margin: 0;
}

@media (max-width: 992px) {
    .products-page .party-circle {
        width: 250px;
        height: 250px;
    }

    .products-page .circle-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .products-page .party-circle {
        width: 200px;
        height: 200px;
    }

    .products-page .circle-title {
        font-size: 1.1rem;
    }
}

/* Home Page Circles - match products page */
.flower-hub-frontpage .party-circle {
    width: 310px;
    height: 310px;
    padding: 40px;
}

.flower-hub-frontpage .circle-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.flower-hub-frontpage .circle-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.flower-hub-frontpage .circle-subtitle {
    font-size: 0.50rem;
    align-self: flex-end;
    margin: 0;
}

@media (max-width: 992px) {
    .flower-hub-frontpage .party-circle {
        width: 250px;
        height: 250px;
    }

    .flower-hub-frontpage .circle-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .flower-hub-frontpage .party-circle {
        width: 200px;
        height: 200px;
    }

    .flower-hub-frontpage .circle-title {
        font-size: 1.1rem;
    }
}

/* Why Choose Kenta Section */
.why-choose-kenta-section {
    margin-top: 100px;
    text-align: center;
}

.why-choose-kenta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.why-choose-kenta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .why-choose-kenta-features {
        gap: 10px 15px;
    }

    .why-choose-kenta-features .why-feature-item {
        font-size: 0.85rem;
    }

    .why-choose-kenta-features .why-feature-divider {
        display: none;
    }

    .why-choose-kenta-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* Products Features Bar */
.products-features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.feature-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.feature-divider {
    color: #ccc;
}

@media (max-width: 768px) {
    .products-features-bar {
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}
