/* ═══════════════════════════════════════════════
   SHINORI STORE THEME — Main Stylesheet
   Inspired by: Eratani (modern/clean) & Mitra Bertani (content-rich)
   ═══════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --shinori-primary: #2D6A4F;
    --shinori-primary-dark: #1B4332;
    --shinori-primary-light: #95D5B2;
    --shinori-accent: #F48C06;
    --shinori-accent-dark: #DC7A00;
    --shinori-text: #2D3436;
    --shinori-text-light: #636E72;
    --shinori-bg: #FFFFFF;
    --shinori-bg-light: #F8F9FA;
    --shinori-bg-dark: #1B4332;
    --shinori-border: #E8E8E8;
    --shinori-border-light: #F0F0F0;
    --shinori-wa: #25D366;
    --shinori-wa-dark: #20BD5C;
    --shinori-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shinori-shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shinori-radius: 12px;
    --shinori-radius-sm: 8px;
    --shinori-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shinori-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shinori-header-height: 80px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--shinori-font);
    color: var(--shinori-text);
    background: var(--shinori-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--shinori-primary); text-decoration: none; transition: var(--shinori-transition); }
a:hover { color: var(--shinori-primary-dark); }
h1,h2,h3,h4,h5,h6 { margin-top: 0; line-height: 1.3; }

/* ─── Container ─── */
.shinori-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Buttons ─── */
.shinori-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--shinori-font);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--shinori-radius-sm);
    cursor: pointer;
    transition: var(--shinori-transition);
    text-decoration: none;
    white-space: nowrap;
}
.shinori-btn:active { transform: scale(0.97); }
.shinori-btn-sm { padding: 8px 18px; font-size: 13px; }
.shinori-btn-lg { padding: 16px 36px; font-size: 16px; }
.shinori-btn-primary {
    background: var(--shinori-primary);
    color: #fff;
    border-color: var(--shinori-primary);
}
.shinori-btn-primary:hover {
    background: var(--shinori-primary-dark);
    border-color: var(--shinori-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}
.shinori-btn-outline {
    background: transparent;
    color: var(--shinori-primary);
    border-color: var(--shinori-primary);
}
.shinori-btn-outline:hover {
    background: var(--shinori-primary);
    color: #fff;
    transform: translateY(-2px);
}
.shinori-btn-wa {
    background: var(--shinori-wa);
    color: #fff;
    border-color: var(--shinori-wa);
}
.shinori-btn-wa:hover {
    background: var(--shinori-wa-dark);
    border-color: var(--shinori-wa-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ─── Section ─── */
.shinori-section {
    padding: 80px 0;
}
.shinori-bg-light {
    background: var(--shinori-bg-light);
}
.shinori-section-heading {
    margin-bottom: 48px;
}
.shinori-section-heading.text-center {
    text-align: center;
}
.shinori-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--shinori-text);
    margin-bottom: 12px;
}
.shinori-section-subtitle {
    font-size: 16px;
    color: var(--shinori-text-light);
    max-width: 600px;
    line-height: 1.6;
}
.text-center .shinori-section-subtitle {
    margin: 0 auto;
}
.shinori-section-divider {
    width: 60px;
    height: 4px;
    background: var(--shinori-primary);
    border-radius: 2px;
    margin-top: 16px;
}
.text-center .shinori-section-divider {
    margin: 16px auto 0;
}

/* ─── Empty State ─── */
.shinori-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--shinori-bg-light);
    border-radius: var(--shinori-radius);
}
.shinori-empty-state i {
    font-size: 56px;
    color: var(--shinori-primary-light);
    margin-bottom: 16px;
}
.shinori-empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.shinori-empty-state p { color: var(--shinori-text-light); margin-bottom: 20px; }

/* ════════════════ HEADER ════════════════ */
.shinori-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--shinori-border-light);
    height: var(--shinori-header-height);
    transition: var(--shinori-transition);
}
.shinori-header.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.shinori-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--shinori-header-height);
    gap: 24px;
}

/* Logo */
.shinori-header-logo {
    flex-shrink: 0;
}
.shinori-header-logo img {
    max-height: 52px;
    width: auto;
}
.shinori-logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}
.shinori-logo-mark {
    font-size: 24px;
    font-weight: 800;
    color: var(--shinori-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.shinori-logo-tagline {
    font-size: 11px;
    color: var(--shinori-text-light);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Navigation */
.shinori-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.shinori-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.shinori-menu li {
    position: relative;
}
.shinori-menu li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--shinori-text);
    border-radius: var(--shinori-radius-sm);
    transition: var(--shinori-transition);
    text-decoration: none;
}
.shinori-menu li a:hover,
.shinori-menu li.current-menu-item a,
.shinori-menu li.current_page_item a {
    color: var(--shinori-primary);
    background: rgba(45, 106, 79, 0.06);
}
.shinori-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--shinori-radius-sm);
    box-shadow: var(--shinori-shadow-lg);
    padding: 8px 0;
    min-width: 200px;
    z-index: 100;
    border: 1px solid var(--shinori-border-light);
}
.shinori-menu li:hover > .sub-menu {
    display: block;
}
.shinori-menu .sub-menu li a {
    padding: 10px 20px;
    white-space: nowrap;
}
.shinori-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.shinori-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--shinori-text);
    border-radius: 2px;
    transition: var(--shinori-transition);
}
.shinori-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.shinori-menu-toggle.active span:nth-child(2) { opacity: 0; }
.shinori-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header Actions */
.shinori-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.shinori-btn-wa-header {
    background: var(--shinori-wa);
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 50px;
}
.shinori-btn-wa-header:hover {
    background: var(--shinori-wa-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Overlay */
.shinori-mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

/* ════════════════ HERO SLIDER ════════════════ */
.shinori-hero-section {
    margin-top: var(--shinori-header-height);
    position: relative;
}
.shinori-hero-slide {
    position: relative;
    height: clamp(400px, 50vw, 700px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.shinori-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0.4) 100%);
}
.shinori-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 40px 0;
}
.shinori-hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.shinori-hero-subtitle {
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}
.shinori-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.shinori-hero-actions .shinori-btn {
    font-size: 16px;
    padding: 14px 32px;
}
.shinori-hero-slider .splide__arrow {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.3);
    width: 52px;
    height: 52px;
    transition: var(--shinori-transition);
    opacity: 0;
}
.shinori-hero-section:hover .splide__arrow {
    opacity: 1;
}
.shinori-hero-slider .splide__arrow svg { fill: #fff; }
.shinori-hero-slider .splide__arrow:hover { background: rgba(255,255,255,0.3); }
.shinori-hero-slider .splide__pagination {
    bottom: 24px;
}
.shinori-hero-slider .splide__pagination__page {
    background: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: var(--shinori-transition);
}
.shinori-hero-slider .splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.2);
}

/* Hero animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: shinoriFadeUp 0.6s ease forwards;
}
.splide__slide.is-active .animate-up { animation-delay: 0.2s; }
.splide__slide.is-active .shinori-hero-subtitle.animate-up { animation-delay: 0.4s; }
.splide__slide.is-active .shinori-hero-actions.animate-up { animation-delay: 0.6s; }

@keyframes shinoriFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ════════════════ PRODUCT CARDS ════════════════ */
.shinori-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.shinori-product-card {
    background: #fff;
    border-radius: var(--shinori-radius);
    overflow: hidden;
    border: 1px solid var(--shinori-border);
    transition: var(--shinori-transition);
    display: flex;
    flex-direction: column;
}
.shinori-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shinori-shadow-lg);
    border-color: transparent;
}
.shinori-product-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--shinori-bg-light);
}
.shinori-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--shinori-transition);
}
.shinori-product-card:hover .shinori-product-img img {
    transform: scale(1.08);
}
.shinori-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--shinori-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shinori-product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.shinori-product-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--shinori-text);
    line-height: 1.3;
}
.shinori-product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}
.shinori-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--shinori-accent);
}
.shinori-price-unit {
    font-size: 14px;
    color: var(--shinori-text-light);
}
.shinori-product-excerpt {
    font-size: 13px;
    color: var(--shinori-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.shinori-product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.shinori-product-actions .shinori-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
}

/* Product Carousel */
.shinori-product-slider-section {
    background: var(--shinori-bg);
}
.shinori-product-carousel .splide__arrow {
    background: #fff;
    box-shadow: var(--shinori-shadow);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 1;
}
.shinori-product-carousel .splide__arrow:hover {
    background: var(--shinori-primary);
}
.shinori-product-carousel .splide__arrow:hover svg { fill: #fff; }

/* ════════════════ BLOG CARDS ════════════════ */
.shinori-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.shinori-blog-card {
    background: #fff;
    border-radius: var(--shinori-radius);
    overflow: hidden;
    border: 1px solid var(--shinori-border);
    transition: var(--shinori-transition);
}
.shinori-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shinori-shadow-lg);
}
.shinori-blog-thumb {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--shinori-bg-light);
}
.shinori-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--shinori-transition);
}
.shinori-blog-card:hover .shinori-blog-thumb img {
    transform: scale(1.05);
}
.shinori-blog-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--shinori-primary-light), var(--shinori-primary));
}
.shinori-blog-thumb-placeholder i {
    font-size: 40px;
    color: rgba(255,255,255,0.6);
}
.shinori-blog-body {
    padding: 24px;
}
.shinori-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--shinori-text-light);
    margin-bottom: 12px;
}
.shinori-blog-meta i { margin-right: 4px; }
.shinori-blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}
.shinori-blog-title a { color: var(--shinori-text); }
.shinori-blog-title a:hover { color: var(--shinori-primary); }
.shinori-blog-excerpt {
    font-size: 14px;
    color: var(--shinori-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.shinori-blog-readmore {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.shinori-blog-readmore i { font-size: 12px; transition: var(--shinori-transition); }
.shinori-blog-readmore:hover i { transform: translateX(4px); }

/* ════════════════ TIPS SECTION ════════════════ */
.shinori-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.shinori-tip-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: var(--shinori-radius);
    border: 1px solid var(--shinori-border);
    transition: var(--shinori-transition);
}
.shinori-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shinori-shadow);
}
.shinori-tip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--shinori-primary);
}
.shinori-tip-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}
.shinori-tip-body h4 a { color: var(--shinori-text); }
.shinori-tip-body h4 a:hover { color: var(--shinori-primary); }
.shinori-tip-body p {
    font-size: 13px;
    color: var(--shinori-text-light);
    margin: 0;
    line-height: 1.6;
}
.shinori-tip-date {
    font-size: 12px;
    color: var(--shinori-text-light);
    display: block;
    margin-bottom: 4px;
}
.shinori-section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ════════════════ CTA BANNER ════════════════ */
.shinori-cta-section {
    background: linear-gradient(135deg, var(--shinori-primary-dark), var(--shinori-primary));
    padding: 0;
}
.shinori-cta-banner {
    padding: 80px 20px;
    text-align: center;
}
.shinori-cta-content h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
}
.shinori-cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 28px;
}
.shinori-cta-content .shinori-btn-wa {
    font-size: 18px;
    padding: 16px 40px;
}

/* ════════════════ PRODUCT PAGE ════════════════ */
.shinori-page-header {
    margin-top: var(--shinori-header-height);
    background: linear-gradient(135deg, var(--shinori-primary-dark), var(--shinori-primary));
    padding: 60px 0;
    text-align: center;
}
.shinori-page-title {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin: 0;
}
.shinori-breadcrumb {
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.shinori-breadcrumb a { color: rgba(255,255,255,0.8); }
.shinori-breadcrumb a:hover { color: #fff; }
.shinori-breadcrumb .sep { margin: 0 8px; }

/* Toolbar */
.shinori-produk-toolbar {
    margin-bottom: 32px;
}
.shinori-search-form {
    margin-bottom: 20px;
}
.shinori-search-box {
    display: flex;
    align-items: center;
    max-width: 500px;
    background: #fff;
    border: 2px solid var(--shinori-border);
    border-radius: var(--shinori-radius-sm);
    overflow: hidden;
    transition: var(--shinori-transition);
}
.shinori-search-box:focus-within {
    border-color: var(--shinori-primary);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}
.shinori-search-box i {
    padding: 0 16px;
    color: var(--shinori-text-light);
}
.shinori-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px 14px 0;
    font-size: 15px;
    font-family: var(--shinori-font);
    background: transparent;
}
.shinori-search-input::placeholder { color: #aaa; }
.shinori-search-box .shinori-btn {
    border-radius: 0;
    height: 100%;
    padding: 14px 24px;
}
.shinori-category-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--shinori-text);
    margin-right: 4px;
}
.filter-chip {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    border: 1.5px solid var(--shinori-border);
    color: var(--shinori-text-light);
    transition: var(--shinori-transition);
    text-decoration: none;
}
.filter-chip:hover {
    border-color: var(--shinori-primary);
    color: var(--shinori-primary);
    background: rgba(45, 106, 79, 0.05);
}
.filter-chip.active {
    background: var(--shinori-primary);
    color: #fff;
    border-color: var(--shinori-primary);
}

/* Pagination */
.shinori-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.shinori-pagination .page-num,
.shinori-pagination a, .shinori-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--shinori-radius-sm);
    border: 1px solid var(--shinori-border);
    color: var(--shinori-text);
    transition: var(--shinori-transition);
    text-decoration: none;
}
.shinori-pagination .current,
.shinori-pagination a:hover {
    background: var(--shinori-primary);
    color: #fff;
    border-color: var(--shinori-primary);
}

/* ════════════════ MODAL ════════════════ */
.shinori-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.shinori-modal.active {
    display: flex;
}
.shinori-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.shinori-modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--shinori-radius);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.shinori-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--shinori-text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--shinori-transition);
    z-index: 3;
}
.shinori-modal-close:hover {
    background: var(--shinori-bg-light);
    color: #000;
}
.shinori-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}
.shinori-modal-image {
    background: var(--shinori-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.shinori-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shinori-modal-info {
    padding: 36px;
    display: flex;
    flex-direction: column;
}
.shinori-modal-info .shinori-product-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}
.shinori-modal-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.shinori-modal-price {
    margin-bottom: 20px;
}
.shinori-modal-price #shinori-modal-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--shinori-accent);
}
.shinori-modal-price #shinori-modal-price-unit {
    font-size: 16px;
    color: var(--shinori-text-light);
}
.shinori-modal-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--shinori-text);
    margin-bottom: 24px;
}
.shinori-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--shinori-border);
}
.shinori-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--shinori-text-light);
}
.shinori-meta-item i { color: var(--shinori-primary); width: 18px; }
.shinori-modal-info .shinori-btn-wa {
    margin-top: auto;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
}

/* ════════════════ TENTANG KAMI ════════════════ */
.shinori-tentang-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}
.shinori-tentang-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.shinori-tentang-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--shinori-text-light);
    margin-bottom: 16px;
}
.shinori-tentang-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--shinori-bg-light);
    border-radius: var(--shinori-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--shinori-border);
}
.shinori-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.shinori-value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--shinori-radius);
    border: 1px solid var(--shinori-border);
    transition: var(--shinori-transition);
}
.shinori-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shinori-shadow);
}
.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--shinori-primary);
    margin: 0 auto 20px;
}
.shinori-value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.shinori-value-card p {
    font-size: 14px;
    color: var(--shinori-text-light);
    line-height: 1.6;
    margin: 0;
}
.shinori-tentang-contact {
    text-align: center;
    padding: 60px 0;
}
.shinori-tentang-contact h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
.shinori-tentang-contact p {
    color: var(--shinori-text-light);
    margin-bottom: 28px;
}
.shinori-contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ════════════════ SINGLE POST ════════════════ */
.shinori-single-header { padding: 80px 0 40px; }
.shinori-single-header .shinori-breadcrumb { font-size: 13px; }
.shinori-single-content {
    max-width: 800px;
    margin: 0 auto;
}
.shinori-single-header-content h1 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}
.shinori-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--shinori-text-light);
    margin-bottom: 24px;
}
.shinori-single-meta i { margin-right: 4px; }
.shinori-single-thumb {
    margin-bottom: 32px;
    border-radius: var(--shinori-radius);
    overflow: hidden;
}
.shinori-single-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--shinori-text);
}
.shinori-single-body p { margin-bottom: 20px; }
.shinori-single-body img { border-radius: var(--shinori-radius-sm); margin: 24px 0; }
.shinori-single-body h2, .shinori-single-body h3 { margin-top: 32px; }
.shinori-single-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--shinori-border);
}
.shinori-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}
.shinori-post-nav a { color: var(--shinori-text); display: inline-flex; align-items: center; gap: 8px; }
.shinori-post-nav a:hover { color: var(--shinori-primary); }

/* ════════════════ 404 ════════════════ */
.shinori-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.shinori-404-number {
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 800;
    color: var(--shinori-primary-light);
    line-height: 1;
    display: block;
}
.shinori-404-content h1 { font-size: 32px; margin-bottom: 12px; }
.shinori-404-content p { color: var(--shinori-text-light); margin-bottom: 28px; font-size: 16px; }
.shinori-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════ CONTENT LAYOUT ════════════════ */
.shinori-content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}
.shinori-content-sidebar .widget {
    margin-bottom: 32px;
}
.shinori-content-sidebar .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--shinori-primary);
}

/* ════════════════ FOOTER ════════════════ */
.shinori-footer {
    background: var(--shinori-primary-dark);
    color: rgba(255,255,255,0.8);
    position: relative;
}
.shinori-footer-wave {
    position: relative;
    line-height: 0;
    margin-bottom: -2px;
}
.shinori-footer-wave svg {
    width: 100%;
    height: 80px;
}
.shinori-footer-main {
    padding: 60px 0 40px;
}
.shinori-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.shinori-footer-logo .shinori-logo-mark {
    color: #fff;
}
.shinori-footer-logo .shinori-logo-tagline {
    color: rgba(255,255,255,0.5);
}
.shinori-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0;
    color: rgba(255,255,255,0.65);
}
.shinori-footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: var(--shinori-transition);
}
.social-link:hover {
    background: var(--shinori-accent);
    color: #fff;
    transform: translateY(-2px);
}
.footer-widget-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--shinori-accent);
    border-radius: 2px;
}
.shinori-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shinori-footer-menu li { margin-bottom: 10px; }
.shinori-footer-menu li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--shinori-transition);
}
.shinori-footer-menu li a:hover {
    color: #fff;
    padding-left: 4px;
}
.shinori-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shinori-footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    align-items: flex-start;
}
.shinori-footer-contact li i {
    margin-top: 3px;
    color: var(--shinori-accent);
    width: 16px;
}
.shinori-footer-contact li a { color: rgba(255,255,255,0.65); }
.shinori-footer-contact li a:hover { color: #fff; }
.shinori-footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shinori-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.shinori-footer-hours li:first-child { padding-top: 0; }
.shinori-footer-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    line-height: 1.5;
}
.shiniori-footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}
.shinori-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.shinori-footer-bottom-inner strong { color: rgba(255,255,255,0.7); }
.shinori-footer-credit { margin: 0; }

/* ════════════════ WHATSAPP FLOAT ════════════════ */
.shinori-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--shinori-wa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--shinori-transition);
    text-decoration: none;
}
.shinori-wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.shinori-wa-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ════════════════ RESPONSIVE ════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .shinori-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .shinori-tentang-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .shinori-modal-grid {
        grid-template-columns: 1fr;
    }
    .shinori-modal-image {
        aspect-ratio: 16/9;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --shinori-header-height: 64px; }
    .shinori-section { padding: 48px 0; }
    .shinori-section-heading { margin-bottom: 32px; }

    /* Header */
    .shinori-header-nav {
        display: none;
        position: fixed;
        top: var(--shinori-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        z-index: 999;
    }
    .shinori-header-nav.active {
        display: flex;
    }
    .shinori-menu {
        flex-direction: column;
        gap: 0;
    }
    .shinori-menu li a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid var(--shinori-border-light);
    }
    .shinori-menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }
    .shinori-menu-toggle { display: flex; }
    .wa-text { display: none; }

    /* Content */
    .shinori-content-layout {
        grid-template-columns: 1fr;
    }
    .shinori-hero-slide { height: clamp(300px, 60vw, 500px); }

    /* Product Grid */
    .shinori-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
    .shinori-blog-grid {
        grid-template-columns: 1fr;
    }
    .shinori-tips-grid {
        grid-template-columns: 1fr;
    }
    .shinori-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .shinori-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .shinori-footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Modal */
    .shinori-modal-content {
        width: 95%;
    }
    .shinori-modal-info {
        padding: 24px;
    }
    .shinori-modal-info h2 { font-size: 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .shinori-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .shinori-product-body { padding: 14px; }
    .shinori-product-name { font-size: 14px; }
    .shinori-price-amount { font-size: 18px; }
    .shinori-product-actions { flex-direction: column; }
    .shinori-values-grid { grid-template-columns: 1fr; }
    .shinori-hero-actions { flex-direction: column; }
    .shinori-404-actions { flex-direction: column; align-items: center; }
}
