/* ==============================
   Loom Jewels - Main Stylesheet
   Matching fine-loop.com design
   ============================== */

/* CSS Variables */
:root {
    --color-primary: #46202F;
    --color-primary-light: #5a2d3e;
    --color-secondary: #F4F0F2;
    --color-accent: #F0DDE4;
    --color-gold: #c5a47e;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f7;
    --color-border: #e8e4e6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Merriweather Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

/* ==============================
   Announcement Bar
   ============================== */
.announcement-bar {
    background: linear-gradient(135deg, #d4956a 0%, #c5a47e 50%, #b89a7e 100%);
    color: var(--color-white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.announcement-bar p {
    margin: 0;
    font-weight: 600;
}

/* ==============================
   Header (tino-via style)
   ============================== */
.site-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    height: var(--header-height);
}

/* Site Branding (left) */
.site-branding {
    flex: 0 0 auto;
}

.site-branding .custom-logo-link {
    display: inline-block;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title-link {
    text-decoration: none;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.site-title-accent {
    color: var(--color-gold);
}

/* Navigation (center) */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Header Actions (right) */
.header-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 14px;
    align-items: center;
}

.header-icon {
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.header-icon:hover {
    color: var(--color-primary);
}

/* Cart Pill Button */
.header-cart-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.header-cart-pill:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.header-cart-pill svg {
    flex-shrink: 0;
}

.cart-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-menu li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: var(--color-text);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ==============================
   Hero Section (tino-via style)
   ============================== */
.tv-hero {
    background: linear-gradient(135deg, #fdf8f4 0%, #f5ece4 100%);
    padding: 60px 0 70px;
    overflow: hidden;
}

.tv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tv-hero-left {
    padding-right: 20px;
}

.tv-hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.tv-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.tv-hero-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}

.tv-hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
}

.tv-btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.tv-btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 32, 47, 0.25);
}

.tv-btn-outline {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.tv-btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.tv-hero-stats {
    display: flex;
    gap: 35px;
}

.tv-stat {
    display: flex;
    flex-direction: column;
}

.tv-stat-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
}

.tv-stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 2px;
}

.tv-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.tv-hero-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
}

/* ==============================
   Trust Bar
   ============================== */
.tv-trust-bar {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 16px 0;
    overflow: hidden;
}

.tv-trust-scroll {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tv-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tv-trust-item span:first-child {
    font-size: 18px;
}

/* ==============================
   How It Works
   ============================== */
.tv-how-it-works {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}

.tv-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.tv-section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 45px;
}

.tv-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tv-step-card {
    background: #fdf8f4;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tv-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tv-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(70, 32, 47, 0.08);
    line-height: 1;
}

.tv-step-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tv-step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.tv-step-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==============================
   Section Headers (shared)
   ============================== */
.tv-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tv-section-header .tv-section-title {
    margin-bottom: 4px;
}

.tv-section-header .tv-section-subtitle {
    margin-bottom: 0;
}

.tv-view-all {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    transition: opacity 0.3s;
}

.tv-view-all:hover {
    opacity: 0.7;
}

/* ==============================
   Product Cards (homepage)
   ============================== */
.tv-best-sellers,
.tv-featured-collection {
    padding: 70px 0;
}

.tv-featured-collection {
    background: #fdf8f4;
}

.tv-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tv-product-card {
    position: relative;
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tv-featured-collection .tv-product-card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.tv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tv-product-link {
    display: block;
    color: inherit;
}

.tv-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.tv-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv-product-card:hover .tv-product-image img {
    transform: scale(1.06);
}

.tv-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tv-product-info {
    padding: 14px 16px 16px;
}

.tv-product-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.tv-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.tv-product-price del {
    opacity: 0.4;
    font-size: 13px;
    font-weight: 400;
    margin-right: 6px;
}

.tv-product-price ins {
    text-decoration: none;
    font-weight: 700;
    color: var(--color-dark);
}

.tv-quick-add {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(5px);
}

.tv-product-card:hover .tv-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.tv-quick-add:hover {
    background: var(--color-primary-light);
    transform: scale(1.1);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-border) 100%);
}

/* ==============================
   Shop by Category
   ============================== */
.tv-categories {
    padding: 70px 0;
    background: var(--color-white);
    text-align: center;
}

.tv-cat-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tv-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
    min-width: 100px;
}

.tv-cat-item:hover {
    transform: translateY(-5px);
}

.tv-cat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fdf8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 2px solid var(--color-border);
    transition: all 0.3s;
}

.tv-cat-item:hover .tv-cat-icon {
    border-color: var(--color-primary);
    background: var(--color-accent);
}

.tv-cat-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

/* ==============================
   Reviews / Testimonials
   ============================== */
.tv-reviews {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}

.tv-reviews-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.tv-review-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-rs-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
}

.tv-rs-label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.tv-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.tv-review-card {
    background: #fdf8f4;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s;
}

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

.tv-review-stars {
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.tv-review-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text);
    margin-bottom: 18px;
    font-style: italic;
}

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

.tv-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.tv-review-author strong {
    display: block;
    font-size: 14px;
    color: var(--color-dark);
}

.tv-review-product {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ==============================
   Newsletter
   ============================== */
.tv-newsletter {
    padding: 80px 0;
    background: var(--color-primary);
    text-align: center;
}

.tv-newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
}

.tv-newsletter h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
}

.tv-newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.tv-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background: var(--color-white);
}

.tv-newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    background: transparent;
    color: var(--color-dark);
}

.tv-newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.tv-newsletter-form button {
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.tv-newsletter-form button:hover {
    background: #b3916e;
}

/* ==============================
   FAQ Section
   ============================== */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.faq-section .section-title,
.faq-section .tv-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    gap: 15px;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ==============================
   Footer
   ============================== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px 40px;
}

.footer-inner h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==============================
   Shop / Category Page (tino-via style)
   ============================== */

/* -- Shop Hero -- */
.shop-hero {
    background: linear-gradient(135deg, #2c1a0e 0%, #3d2518 50%, #46202F 100%);
    color: var(--color-white);
    padding: 55px 0 60px;
    overflow: hidden;
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.shop-hero-left {
    padding-right: 10px;
}

.shop-hero-badge {
    display: inline-block;
    background: rgba(197, 164, 126, 0.25);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--color-white);
}

.shop-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 420px;
}

.shop-hero-stats {
    display: flex;
    gap: 30px;
}

.shop-hero-stat {
    display: flex;
    flex-direction: column;
}

.shop-hero-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-white);
}

.shop-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* -- Hero Product Cards (right side) -- */
.shop-hero-right {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.shop-hero-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    width: 150px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
}

.shop-hero-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.shop-hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-card-info {
    padding: 10px 10px 14px;
}

.shop-hero-card-title {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 5px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-hero-card-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gold);
}

.shop-hero-card-price del {
    opacity: 0.5;
    font-size: 11px;
    font-weight: 400;
}

.shop-hero-card-price ins {
    text-decoration: none;
}

/* -- Category Filter Tabs -- */
.shop-filters {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: var(--header-height);
    z-index: 90;
}

.shop-filters-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.shop-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.shop-filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border-radius: 30px;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.shop-filter-tab:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.shop-filter-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.shop-sort {
    flex-shrink: 0;
}

.shop-sort .woocommerce-ordering {
    margin: 0;
}

.shop-sort .woocommerce-ordering select.orderby {
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text);
    background: var(--color-white);
    cursor: pointer;
    outline: none;
}

.shop-sort .woocommerce-ordering select.orderby:focus {
    border-color: var(--color-primary);
}

.shop-sort-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-right: 8px;
}

.shop-filter-tab svg {
    margin-right: 4px;
    flex-shrink: 0;
}

/* -- Top 3 This Month -- */
.shop-top3 {
    padding: 45px 0 10px;
    background: #fdf8f4;
}

.shop-top3-header {
    margin-bottom: 22px;
}

.shop-top3-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.shop-top3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shop-top3-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
    display: block;
}

.shop-top3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.shop-top3-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.shop-top3-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.shop-top3-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9f6f3;
}

.shop-top3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.shop-top3-card:hover .shop-top3-img img {
    transform: scale(1.06);
}

.shop-top3-info {
    padding: 14px 16px 18px;
}

.shop-top3-cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c57b57;
    margin-bottom: 6px;
}

.shop-top3-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 8px;
    line-height: 1.35;
}

.shop-top3-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.shop-top3-stars {
    display: inline-flex;
    gap: 1px;
    align-items: center;
}

.shop-top3-rating-text {
    font-size: 12px;
    color: var(--color-text-light);
}

.shop-top3-sold {
    display: block;
    font-size: 11px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.shop-top3-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-top3-price-current,
.shop-top3-price-sale {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
}

.shop-top3-price-regular {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* -- Shop Main Grid -- */
.shop-main {
    padding: 40px 0 60px;
    min-height: 50vh;
    background: #fdf8f4;
}

.shop-result-label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Product cards in shop - enhanced card style */
.shop-main ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.shop-main ul.products li.product {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.shop-main ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.shop-main ul.products li.product a img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.5s;
}

.shop-main ul.products li.product:hover a img {
    transform: scale(1.05);
}

.shop-main ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 6px 14px 0;
    margin-bottom: 4px;
}

.shop-main ul.products li.product .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    padding: 0 14px 14px;
    margin-bottom: 0;
}

.shop-main ul.products li.product .button {
    display: none;
}

/* Loop category label in shop */
.shop-main .lj-loop-category {
    padding: 0 14px;
    margin-top: 10px;
}

/* Loop star ratings */
.lj-loop-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    margin-bottom: 4px;
}

.lj-loop-stars {
    display: inline-flex;
    gap: 1px;
    align-items: center;
}

.lj-loop-rating-count {
    font-size: 11px;
    color: var(--color-text-light);
}

/* Pagination */
.shop-main nav.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}

.shop-main nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
    border: none;
}

.shop-main nav.woocommerce-pagination ul li {
    border: none;
}

.shop-main nav.woocommerce-pagination ul li a,
.shop-main nav.woocommerce-pagination ul li span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
    border: 1.5px solid var(--color-border);
    transition: all 0.3s;
}

.shop-main nav.woocommerce-pagination ul li a:hover {
    background: var(--color-accent);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.shop-main nav.woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* -- Shop Trust Section -- */
.shop-trust-section {
    padding: 70px 0;
    background: var(--color-white);
}

.shop-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.shop-trust-left h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.shop-trust-left h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.shop-trust-left p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.shop-trust-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shop-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fdf8f4;
    border-radius: 14px;
    padding: 18px 20px;
    transition: transform 0.3s;
}

.shop-trust-item:hover {
    transform: translateX(4px);
}

.shop-trust-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197,123,87,0.12);
    border-radius: 10px;
}

.shop-trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3px;
}

.shop-trust-item span {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ==============================
   WooCommerce Overrides
   ============================== */
.woocommerce-main {
    padding: 50px 0;
    min-height: 60vh;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.woocommerce ul.products li.product {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product a img {
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 2px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    padding: 0;
    margin-bottom: 5px;
}

.woocommerce ul.products li.product .price {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.5;
}

.woocommerce ul.products li.product .price ins {
    font-weight: 600;
    color: var(--color-primary);
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 2px;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--color-primary-light);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--color-primary);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--color-primary-light);
}

/* ==============================
   Single Product Page (tino-via style)
   ============================== */

/* Warm background for product page */
.single-product .woocommerce-main {
    background: #fdf8f4;
}

/* Hide WooCommerce Sale badge & zoom trigger */
.woocommerce span.onsale { display: none !important; }
.woocommerce div.product div.images .woocommerce-product-gallery__trigger { display: none; }

/* Product wrapper */
.woocommerce div.product {
    padding-top: 10px;
}

/* Two-column layout */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
    width: 50%;
    float: left;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 46%;
    float: right;
    padding-left: 0;
}

/* Product images */
.woocommerce div.product div.images img {
    border-radius: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce div.product div.images .flex-control-thumbs li:hover,
.woocommerce div.product div.images .flex-control-thumbs li.flex-active {
    border-color: var(--color-primary);
}

/* Category label above title */
.lj-product-category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c57b57;
    margin-bottom: 8px;
}

/* Product title */
.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

/* Price area */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border: none;
    padding-bottom: 0;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: 0.4;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
    font-weight: 800;
    color: var(--color-dark);
}

/* Save X% badge */
.lj-save-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    vertical-align: middle;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    margin-bottom: 8px;
}

/* Feature highlights with icons */
.lj-features {
    margin: 15px 0 20px;
}

.lj-feature {
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lj-feature:last-child {
    border-bottom: none;
}

.lj-feature-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197,123,87,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Quantity label */
.lj-qty-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

/* Quantity and Add to Cart */
.woocommerce div.product form.cart {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.woocommerce div.product form.cart .quantity {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.woocommerce div.product form.cart .quantity .lj-qty-btn {
    width: 42px;
    height: 48px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: var(--font-body);
}

.woocommerce div.product form.cart .quantity .lj-qty-btn:hover {
    background: #f5f0eb;
}

.woocommerce div.product form.cart .quantity .qty {
    width: 36px;
    height: 48px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
    flex: 1;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.woocommerce div.product form.cart button.single_add_to_cart_button::before {
    content: '🛒';
    font-size: 16px;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Trust badges */
.lj-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-top: 20px;
    background: #fff;
    overflow: hidden;
}

.lj-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 8px;
    gap: 6px;
    border-right: 1px solid var(--color-border);
}

.lj-badge:last-child {
    border-right: none;
}

.lj-badge-icon {
    font-size: 22px;
}

.lj-badge span:last-child {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

/* Shipping info banner */
.lj-shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f0eb;
    border-radius: 12px;
    padding: 15px 18px;
    margin-top: 15px;
}

.lj-shipping-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.lj-shipping-info strong {
    font-size: 13px;
    color: var(--color-dark);
}

.lj-shipping-sub {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Product tabs (tino-via style) */
.woocommerce div.product .woocommerce-tabs {
    clear: both;
    padding-top: 50px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-border);
    display: flex;
    gap: 0;
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-light);
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    white-space: nowrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--color-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 25px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Additional Info table */
.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes {
    border: none;
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes tr {
    border-bottom: 1px solid var(--color-border);
}

.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes th {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
    padding: 14px 15px;
    background: none;
    border: none;
    width: 35%;
}

.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes td {
    font-size: 14px;
    color: var(--color-text-light);
    padding: 14px 15px;
    background: none;
    border: none;
    font-style: normal;
}

.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes td p {
    padding: 0;
}

/* Review Summary - removed (reviews tab disabled) */
/* Related Products (tino-via card style) */
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
    clear: both;
    padding-top: 50px;
    margin-top: 20px;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.4;
}

.woocommerce div.product .related.products > h2::before,
.woocommerce div.product .upsells.products > h2::before {
    content: 'You may also like';
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.woocommerce div.product .related.products ul.products,
.woocommerce div.product .upsells.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.woocommerce div.product .related.products ul.products li.product,
.woocommerce div.product .upsells.products ul.products li.product {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.woocommerce div.product .related.products ul.products li.product:hover,
.woocommerce div.product .upsells.products ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.woocommerce div.product .related.products ul.products li.product a img,
.woocommerce div.product .upsells.products ul.products li.product a img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s;
}

.woocommerce div.product .related.products ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* Loop category label */
.lj-loop-category {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c57b57;
    padding: 0 14px;
    margin-top: 10px;
}

.woocommerce div.product .related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 6px 14px 0;
    margin-bottom: 4px;
}

.woocommerce div.product .related.products ul.products li.product .price,
.woocommerce div.product .upsells.products ul.products li.product .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    padding: 0 14px 14px;
}

/* Loop plus button */
.lj-loop-plus {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(4px);
    z-index: 2;
}

.woocommerce ul.products li.product:hover .lj-loop-plus {
    opacity: 1;
    transform: translateY(0);
}

.lj-loop-plus:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Hide default add-to-cart button in related/loop */
.woocommerce div.product .related.products ul.products li.product .button,
.woocommerce div.product .upsells.products ul.products li.product .button {
    display: none;
}

/* Cart */
.woocommerce-cart .woocommerce {
    padding: 30px 0;
}

.woocommerce table.shop_table {
    border: 1px solid var(--color-border);
    border-radius: 0;
}

.woocommerce table.shop_table th {
    font-weight: 600;
    font-size: 14px;
}

/* Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 10px 15px;
    font-family: var(--font-body);
}

.woocommerce form .form-row input.input-text:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 15px;
    padding: 12px 0;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--color-primary);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--color-primary);
}

/* ==============================
   Page Templates
   ============================== */
.page-content {
    padding: 60px 0;
    min-height: 50vh;
}

.page-content .container {
    max-width: 900px;
}

.page-content h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
    list-style: disc;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s;
}

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

.form-submit-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit-btn:hover {
    background: var(--color-primary-light);
}

/* ==============================
   Search Results
   ============================== */
.search-results-page {
    padding: 60px 0;
    min-height: 50vh;
}

.search-header {
    margin-bottom: 40px;
}

.search-results-page h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.search-again-form {
    display: flex;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
}

.search-again-form .search-field {
    flex: 1;
    border: none;
    padding: 13px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    background: transparent;
    color: var(--color-dark);
}

.search-again-form .search-field::placeholder {
    color: #999;
}

.search-again-form .search-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-again-form .search-submit:hover {
    background: var(--color-primary-light);
}

.search-result-count {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.search-results-page ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* No results state */
.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.search-no-results h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.search-no-results p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 450px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.no-results-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Other (non-product) results */
.search-other-results {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.search-other-results h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.search-result-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.search-result-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.search-result-item h3 a:hover {
    color: var(--color-primary);
}

.search-result-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==============================
   404 Page
   ============================== */
.error-404-page {
    padding: 100px 0;
    text-align: center;
    min-height: 50vh;
}

.error-404-page h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.error-404-page p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.error-404-page a {
    display: inline-block;
    padding: 14px 35px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    transition: background 0.3s;
}

.error-404-page a:hover {
    background: var(--color-primary-light);
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1024px) {
    .tv-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .tv-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tv-reviews-grid .tv-review-card:last-child {
        grid-column: span 2;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .search-results-page ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-main ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-hero-card {
        width: 130px;
    }
    .shop-top3-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }

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

    .main-navigation .nav-menu {
        display: none;
    }

    .header-inner {
        padding: 0 15px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-cart-pill span:not(.cart-pill-count) {
        display: none;
    }

    .header-cart-pill {
        padding: 8px 12px;
        gap: 6px;
    }

    /* Single Product responsive */
    .woocommerce #content div.product div.images,
    .woocommerce div.product div.images,
    .woocommerce-page div.product div.images {
        width: 100%;
        float: none;
        margin-bottom: 25px;
    }
    .woocommerce #content div.product div.summary,
    .woocommerce div.product div.summary,
    .woocommerce-page div.product div.summary {
        width: 100%;
        float: none;
        padding-left: 0;
    }
    .woocommerce div.product .product_title {
        font-size: 24px;
    }
    .woocommerce div.product .related.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .lj-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .lj-features {
        margin: 10px 0 15px;
    }
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 14px;
        font-size: 13px;
    }
    .woocommerce div.product .related.products ul.products,
    .woocommerce div.product .upsells.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Hero responsive */
    .tv-hero {
        padding: 40px 0 50px;
    }
    .tv-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .tv-hero-left {
        padding-right: 0;
        text-align: center;
    }
    .tv-hero-subtitle {
        max-width: 100%;
    }
    .tv-hero-buttons {
        justify-content: center;
    }
    .tv-hero-stats {
        justify-content: center;
    }
    .tv-hero-image {
        max-width: 360px;
        margin: 0 auto;
    }
    .tv-hero-title {
        font-size: 2rem;
    }

    /* Trust bar */
    .tv-trust-scroll {
        gap: 20px;
    }
    .tv-trust-item {
        font-size: 13px;
    }

    /* How it works */
    .tv-how-it-works {
        padding: 50px 0;
    }
    .tv-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Products grid */
    .tv-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .tv-best-sellers,
    .tv-featured-collection {
        padding: 50px 0;
    }
    .tv-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .search-results-page ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-results-page h1 {
        font-size: 24px;
    }

    .search-again-form {
        max-width: 100%;
    }

    /* Shop page */
    .shop-hero {
        padding: 40px 0 45px;
    }
    .shop-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .shop-hero-left {
        padding-right: 0;
        text-align: center;
    }
    .shop-hero-desc {
        max-width: 100%;
    }
    .shop-hero-stats {
        justify-content: center;
    }
    .shop-hero-right {
        justify-content: center;
    }
    .shop-hero-title {
        font-size: 1.8rem;
    }
    .shop-filters-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .shop-filter-tabs {
        gap: 6px;
    }
    .shop-filter-tab {
        padding: 7px 16px;
        font-size: 12px;
    }
    .shop-main ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .shop-main {
        padding: 30px 0 50px;
    }
    .shop-trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .shop-trust-left {
        text-align: center;
    }
    .shop-trust-left h2 {
        font-size: 24px;
    }
    .shop-trust-section {
        padding: 50px 0;
    }
    .shop-top3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .shop-top3-card {
        display: grid;
        grid-template-columns: 140px 1fr;
    }
    .shop-top3-img {
        aspect-ratio: 1;
    }
    .shop-top3-info {
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .shop-top3 {
        padding: 35px 0 10px;
    }

    /* Categories */
    .tv-categories {
        padding: 50px 0;
    }
    .tv-cat-grid {
        gap: 25px;
    }
    .tv-cat-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    /* Reviews */
    .tv-reviews {
        padding: 50px 0;
    }
    .tv-reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        margin-bottom: 35px;
    }
    .tv-reviews-grid {
        grid-template-columns: 1fr;
    }
    .tv-reviews-grid .tv-review-card:last-child {
        grid-column: span 1;
    }

    /* Newsletter */
    .tv-newsletter {
        padding: 50px 0;
    }
    .tv-newsletter h2 {
        font-size: 24px;
    }
    .tv-newsletter-form {
        flex-direction: column;
        border-radius: 12px;
    }
    .tv-newsletter-form input[type="email"] {
        border-bottom: 1px solid var(--color-border);
        text-align: center;
        padding: 14px 18px;
    }
    .tv-newsletter-form button {
        border-radius: 0 0 12px 12px;
        padding: 14px 22px;
    }

    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 30px;
    }

    .tv-section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .tv-hero-title {
        font-size: 1.7rem;
    }
    .tv-hero-stats {
        gap: 20px;
    }
    .tv-stat-number {
        font-size: 20px;
    }
    .tv-products-grid {
        gap: 12px;
    }
    .tv-product-title {
        font-size: 13px;
    }
    .tv-product-info {
        padding: 10px 12px 14px;
    }
    .tv-rs-number {
        font-size: 22px;
    }
}

/* ==============================
   Animations
   ============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tv-hero-left {
    animation: fadeInUp 0.8s ease forwards;
}

.tv-hero-right {
    animation: fadeInUp 0.8s 0.2s ease both;
}

/* Smooth scroll behavior for sections */
.tv-best-sellers,
.tv-featured-collection,
.tv-categories,
.tv-reviews,
.faq-section {
    opacity: 1;
}
