:root { --fv-primary: #e67e22;
--fv-primary-dark: #d35400;
--fv-primary-light: #f39c12; --fv-secondary: #27ae60;
--fv-accent: #9b59b6; --fv-dark: #2c3e50;
--fv-gray-900: #34495e;
--fv-gray-700: #7f8c8d;
--fv-gray-500: #95a5a6;
--fv-gray-300: #bdc3c7;
--fv-gray-100: #ecf0f1;
--fv-light: #f8f9fa;
--fv-white: #ffffff; --fv-bg-warm: #fdf6e9;
--fv-bg-cream: #fffbf5; --fv-success: #27ae60;
--fv-warning: #f1c40f;
--fv-danger: #e74c3c;
--fv-info: #3498db; --fv-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
--fv-shadow: 0 4px 12px rgba(0,0,0,0.1);
--fv-shadow-lg: 0 8px 24px rgba(0,0,0,0.12); --fv-radius-sm: 6px;
--fv-radius: 12px;
--fv-radius-lg: 20px;
--fv-radius-full: 9999px; --fv-space-xs: 4px;
--fv-space-sm: 8px;
--fv-space-md: 16px;
--fv-space-lg: 24px;
--fv-space-xl: 32px;
--fv-space-2xl: 48px;
--fv-space-3xl: 64px; --fv-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
--fv-font-size-xs: 12px;
--fv-font-size-sm: 14px;
--fv-font-size-base: 16px;
--fv-font-size-lg: 18px;
--fv-font-size-xl: 20px;
--fv-font-size-2xl: 24px;
--fv-font-size-3xl: 30px;
--fv-font-size-4xl: 36px; --fv-container-width: 1200px; --fv-transition: all 0.3s ease;
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
}
body {
font-family: var(--fv-font-sans);
font-size: var(--fv-font-size-base);
line-height: 1.6;
color: var(--fv-dark);
background-color: var(--fv-bg-cream);
}
a {
color: var(--fv-primary);
text-decoration: none;
transition: var(--fv-transition);
}
a:hover {
color: var(--fv-primary-dark);
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
}
button, input, select, textarea {
font-family: inherit;
font-size: inherit;
} .fv-container {
width: 100%;
max-width: var(--fv-container-width);
margin: 0 auto;
padding: 0 var(--fv-space-md);
}
.fv-section {
padding: var(--fv-space-3xl) 0;
}
.fv-section-title {
font-size: var(--fv-font-size-3xl);
font-weight: 700;
color: var(--fv-dark);
text-align: center;
margin-bottom: var(--fv-space-xl);
position: relative;
}
.fv-section-title::after {
content: '';
display: block;
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--fv-primary), var(--fv-primary-light));
margin: var(--fv-space-md) auto 0;
border-radius: var(--fv-radius-full);
} .fv-header {
background: var(--fv-white);
box-shadow: var(--fv-shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
}
.fv-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
gap: var(--fv-space-lg);
} .fv-logo {
flex-shrink: 0;
}
.fv-logo a {
display: flex;
align-items: center;
gap: var(--fv-space-sm);
font-size: var(--fv-font-size-xl);
font-weight: 700;
color: var(--fv-dark);
}
.fv-logo img {
max-height: 45px;
width: auto;
} .fv-nav {
flex: 1;
display: flex;
justify-content: center;
}
.fv-nav-menu {
display: flex;
align-items: center;
gap: var(--fv-space-xs);
}
.fv-nav-menu a {
display: block;
padding: var(--fv-space-sm) var(--fv-space-md);
color: var(--fv-gray-900);
font-weight: 500;
border-radius: var(--fv-radius);
transition: var(--fv-transition);
}
.fv-nav-menu a:hover,
.fv-nav-menu a.current {
color: var(--fv-primary);
background: var(--fv-bg-warm);
} .fv-header-actions {
display: flex;
align-items: center;
gap: var(--fv-space-sm);
}
.fv-header-btn {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: var(--fv-radius);
color: var(--fv-gray-700);
background: transparent;
border: none;
cursor: pointer;
transition: var(--fv-transition);
position: relative;
}
.fv-header-btn:hover {
color: var(--fv-primary);
background: var(--fv-bg-warm);
}
.fv-header-btn svg {
width: 22px;
height: 22px;
}
.fv-cart-count {
position: absolute;
top: 2px;
right: 2px;
min-width: 18px;
height: 18px;
padding: 0 5px;
font-size: 11px;
font-weight: 600;
color: var(--fv-white);
background: var(--fv-primary);
border-radius: var(--fv-radius-full);
display: flex;
align-items: center;
justify-content: center;
} .fv-menu-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 42px;
height: 42px;
padding: 10px;
border: none;
background: transparent;
cursor: pointer;
}
.fv-menu-toggle span {
display: block;
width: 100%;
height: 2px;
background: var(--fv-dark);
border-radius: 2px;
transition: var(--fv-transition);
} .fv-hero {
background: linear-gradient(135deg, var(--fv-bg-warm) 0%, var(--fv-white) 100%);
padding: var(--fv-space-3xl) 0;
overflow: hidden;
}
.fv-hero-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--fv-space-2xl);
align-items: center;
}
.fv-hero-content {
max-width: 540px;
}
.fv-hero-badge {
display: inline-flex;
align-items: center;
gap: var(--fv-space-xs);
padding: var(--fv-space-xs) var(--fv-space-md);
background: var(--fv-primary-light);
color: var(--fv-white);
font-size: var(--fv-font-size-sm);
font-weight: 600;
border-radius: var(--fv-radius-full);
margin-bottom: var(--fv-space-lg);
}
.fv-hero-title {
font-size: clamp(32px, 5vw, 48px);
font-weight: 800;
color: var(--fv-dark);
line-height: 1.2;
margin-bottom: var(--fv-space-lg);
}
.fv-hero-title span {
color: var(--fv-primary);
}
.fv-hero-desc {
font-size: var(--fv-font-size-lg);
color: var(--fv-gray-700);
margin-bottom: var(--fv-space-xl);
}
.fv-hero-actions {
display: flex;
gap: var(--fv-space-md);
flex-wrap: wrap;
}
.fv-hero-image {
position: relative;
}
.fv-hero-image img {
width: 100%;
border-radius: var(--fv-radius-lg);
box-shadow: var(--fv-shadow-lg);
} .fv-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--fv-space-sm);
padding: var(--fv-space-md) var(--fv-space-xl);
font-size: var(--fv-font-size-base);
font-weight: 600;
border-radius: var(--fv-radius);
border: 2px solid transparent;
cursor: pointer;
transition: var(--fv-transition);
text-decoration: none;
}
.fv-btn-primary {
background: var(--fv-primary);
color: var(--fv-white);
border-color: var(--fv-primary);
}
.fv-btn-primary:hover {
background: var(--fv-primary-dark);
border-color: var(--fv-primary-dark);
color: var(--fv-white);
transform: translateY(-2px);
box-shadow: var(--fv-shadow);
}
.fv-btn-outline {
background: transparent;
color: var(--fv-dark);
border-color: var(--fv-gray-300);
}
.fv-btn-outline:hover {
border-color: var(--fv-primary);
color: var(--fv-primary);
}
.fv-btn-secondary {
background: var(--fv-secondary);
color: var(--fv-white);
border-color: var(--fv-secondary);
}
.fv-btn-sm {
padding: var(--fv-space-sm) var(--fv-space-md);
font-size: var(--fv-font-size-sm);
}
.fv-btn-lg {
padding: var(--fv-space-lg) var(--fv-space-2xl);
font-size: var(--fv-font-size-lg);
}
.fv-btn-block {
width: 100%;
} .fv-products {
background: var(--fv-white);
}
.fv-products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--fv-space-lg);
}
.fv-product-card {
background: var(--fv-white);
border-radius: var(--fv-radius);
overflow: hidden;
box-shadow: var(--fv-shadow-sm);
transition: var(--fv-transition);
}
.fv-product-card:hover {
transform: translateY(-4px);
box-shadow: var(--fv-shadow-lg);
}
.fv-product-image {
position: relative;
padding-top: 100%;
overflow: hidden;
background: var(--fv-gray-100);
}
.fv-product-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--fv-transition);
}
.fv-product-card:hover .fv-product-image img {
transform: scale(1.05);
}
.fv-product-badge {
position: absolute;
top: var(--fv-space-sm);
left: var(--fv-space-sm);
padding: var(--fv-space-xs) var(--fv-space-sm);
font-size: var(--fv-font-size-xs);
font-weight: 600;
color: var(--fv-white);
background: var(--fv-danger);
border-radius: var(--fv-radius-sm);
}
.fv-product-info {
padding: var(--fv-space-md);
}
.fv-product-category {
font-size: var(--fv-font-size-xs);
color: var(--fv-gray-500);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: var(--fv-space-xs);
}
.fv-product-title {
font-size: var(--fv-font-size-base);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-sm);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-clamp: 2;
}
.fv-product-title a {
color: inherit;
}
.fv-product-title a:hover {
color: var(--fv-primary);
}
.fv-product-price {
display: flex;
align-items: baseline;
gap: var(--fv-space-sm);
margin-bottom: var(--fv-space-md);
}
.fv-product-price .current {
font-size: var(--fv-font-size-xl);
font-weight: 700;
color: var(--fv-primary);
}
.fv-product-price .original {
font-size: var(--fv-font-size-sm);
color: var(--fv-gray-500);
text-decoration: line-through;
}
.fv-product-actions {
display: flex;
gap: var(--fv-space-sm);
} .fv-features {
background: var(--fv-bg-warm);
}
.fv-features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--fv-space-lg);
}
.fv-feature-card {
text-align: center;
padding: var(--fv-space-xl);
background: var(--fv-white);
border-radius: var(--fv-radius);
box-shadow: var(--fv-shadow-sm);
transition: var(--fv-transition);
}
.fv-feature-card:hover {
transform: translateY(-4px);
box-shadow: var(--fv-shadow);
}
.fv-feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
background: linear-gradient(135deg, var(--fv-primary-light), var(--fv-primary));
border-radius: var(--fv-radius);
margin-bottom: var(--fv-space-md);
}
.fv-feature-icon svg {
width: 32px;
height: 32px;
color: var(--fv-white);
}
.fv-feature-title {
font-size: var(--fv-font-size-lg);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-sm);
}
.fv-feature-desc {
font-size: var(--fv-font-size-sm);
color: var(--fv-gray-700);
} .fv-articles {
background: var(--fv-white);
}
.fv-articles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--fv-space-lg);
}
.fv-article-card {
background: var(--fv-white);
border-radius: var(--fv-radius);
overflow: hidden;
box-shadow: var(--fv-shadow-sm);
transition: var(--fv-transition);
}
.fv-article-card:hover {
transform: translateY(-4px);
box-shadow: var(--fv-shadow);
}
.fv-article-image {
position: relative;
padding-top: 60%;
overflow: hidden;
background: var(--fv-gray-100);
}
.fv-article-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--fv-transition);
}
.fv-article-card:hover .fv-article-image img {
transform: scale(1.05);
}
.fv-article-content {
padding: var(--fv-space-lg);
}
.fv-article-meta {
display: flex;
align-items: center;
gap: var(--fv-space-md);
font-size: var(--fv-font-size-xs);
color: var(--fv-gray-500);
margin-bottom: var(--fv-space-sm);
}
.fv-article-meta span {
display: flex;
align-items: center;
gap: var(--fv-space-xs);
}
.fv-article-title {
font-size: var(--fv-font-size-lg);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-sm);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-clamp: 2;
}
.fv-article-title a {
color: inherit;
}
.fv-article-title a:hover {
color: var(--fv-primary);
}
.fv-article-excerpt {
font-size: var(--fv-font-size-sm);
color: var(--fv-gray-700);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
line-clamp: 3;
} .fv-footer {
background: var(--fv-dark);
color: var(--fv-gray-300);
padding: var(--fv-space-3xl) 0 var(--fv-space-lg);
}
.fv-footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: var(--fv-space-2xl);
margin-bottom: var(--fv-space-2xl);
}
.fv-footer-brand {
max-width: 300px;
}
.fv-footer-logo {
display: inline-block;
font-size: var(--fv-font-size-2xl);
font-weight: 700;
color: var(--fv-white);
margin-bottom: var(--fv-space-md);
}
.fv-footer-logo img {
max-height: 40px;
}
.fv-footer-desc {
font-size: var(--fv-font-size-sm);
line-height: 1.8;
margin-bottom: var(--fv-space-lg);
}
.fv-footer-social {
display: flex;
gap: var(--fv-space-sm);
}
.fv-footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: var(--fv-radius);
color: var(--fv-gray-300);
transition: var(--fv-transition);
}
.fv-footer-social a:hover {
background: var(--fv-primary);
color: var(--fv-white);
}
.fv-footer-title {
font-size: var(--fv-font-size-base);
font-weight: 600;
color: var(--fv-white);
margin-bottom: var(--fv-space-lg);
}
.fv-footer-links {
display: flex;
flex-direction: column;
gap: var(--fv-space-sm);
}
.fv-footer-links a {
color: var(--fv-gray-300);
font-size: var(--fv-font-size-sm);
}
.fv-footer-links a:hover {
color: var(--fv-primary-light);
}
.fv-footer-contact {
display: flex;
flex-direction: column;
gap: var(--fv-space-sm);
font-size: var(--fv-font-size-sm);
}
.fv-footer-contact-item {
display: flex;
align-items: flex-start;
gap: var(--fv-space-sm);
}
.fv-footer-contact-item svg {
width: 18px;
height: 18px;
color: var(--fv-primary-light);
flex-shrink: 0;
margin-top: 2px;
}
.fv-footer-bottom {
padding-top: var(--fv-space-lg);
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: var(--fv-font-size-sm);
}
.fv-footer-bottom-nav {
display: flex;
align-items: center;
}
.fv-footer-bottom-menu {
display: flex;
flex-direction: row;
align-items: center;
gap: var(--fv-space-md);
list-style: none;
margin: 0;
padding: 0;
}
.fv-footer-bottom-menu li {
display: inline-block;
}
.fv-footer-bottom-menu li a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s ease;
}
.fv-footer-bottom-menu li a:hover {
color: var(--fv-white);
} .fv-breadcrumb {
background: var(--fv-gray-100);
padding: var(--fv-space-md) 0;
}
.fv-breadcrumb-inner {
display: flex;
align-items: center;
gap: var(--fv-space-sm);
font-size: var(--fv-font-size-sm);
color: var(--fv-gray-700);
}
.fv-breadcrumb a {
color: var(--fv-gray-700);
}
.fv-breadcrumb a:hover {
color: var(--fv-primary);
}
.fv-breadcrumb .separator {
color: var(--fv-gray-500);
}
.fv-breadcrumb .current {
color: var(--fv-dark);
font-weight: 500;
} .fv-single {
padding: var(--fv-space-2xl) 0;
}
.fv-single-container {
display: grid;
grid-template-columns: 1fr 320px;
gap: var(--fv-space-2xl);
}
.fv-single-main {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-single-header {
margin-bottom: var(--fv-space-xl);
padding-bottom: var(--fv-space-lg);
border-bottom: 1px solid var(--fv-gray-100);
}
.fv-single-title {
font-size: var(--fv-font-size-3xl);
font-weight: 700;
color: var(--fv-dark);
line-height: 1.3;
margin-bottom: var(--fv-space-md);
}
.fv-single-meta {
display: flex;
flex-wrap: wrap;
gap: var(--fv-space-md);
font-size: var(--fv-font-size-sm);
color: var(--fv-gray-500);
}
.fv-single-meta span {
display: flex;
align-items: center;
gap: var(--fv-space-xs);
}
.fv-single-content {
font-size: var(--fv-font-size-base);
line-height: 1.8;
color: var(--fv-gray-900);
}
.fv-single-content h2 {
font-size: var(--fv-font-size-2xl);
font-weight: 700;
margin: var(--fv-space-xl) 0 var(--fv-space-md);
color: var(--fv-dark);
}
.fv-single-content h3 {
font-size: var(--fv-font-size-xl);
font-weight: 600;
margin: var(--fv-space-lg) 0 var(--fv-space-md);
color: var(--fv-dark);
}
.fv-single-content p {
margin-bottom: var(--fv-space-md);
}
.fv-single-content img {
border-radius: var(--fv-radius);
margin: var(--fv-space-lg) 0;
}
.fv-single-content ul,
.fv-single-content ol {
margin: var(--fv-space-md) 0;
padding-left: var(--fv-space-lg);
}
.fv-single-content li {
margin-bottom: var(--fv-space-sm);
}
.fv-single-content ul li {
list-style: disc;
}
.fv-single-content ol li {
list-style: decimal;
} .fv-sidebar {
display: flex;
flex-direction: column;
gap: var(--fv-space-lg);
}
.fv-widget {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-lg);
box-shadow: var(--fv-shadow-sm);
}
.fv-widget-title {
font-size: var(--fv-font-size-lg);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-md);
padding-bottom: var(--fv-space-sm);
border-bottom: 2px solid var(--fv-primary);
} .fv-archive {
padding: var(--fv-space-2xl) 0;
}
.fv-archive-header {
text-align: center;
margin-bottom: var(--fv-space-xl);
}
.fv-archive-title {
font-size: var(--fv-font-size-3xl);
font-weight: 700;
color: var(--fv-dark);
}
.fv-archive-desc {
font-size: var(--fv-font-size-base);
color: var(--fv-gray-700);
margin-top: var(--fv-space-sm);
} .fv-pagination {
display: flex;
justify-content: center;
gap: var(--fv-space-sm);
margin-top: var(--fv-space-xl);
}
.fv-pagination a,
.fv-pagination span {
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 var(--fv-space-md);
font-size: var(--fv-font-size-sm);
font-weight: 500;
color: var(--fv-gray-700);
background: var(--fv-white);
border-radius: var(--fv-radius);
border: 1px solid var(--fv-gray-300);
transition: var(--fv-transition);
}
.fv-pagination a:hover {
border-color: var(--fv-primary);
color: var(--fv-primary);
}
.fv-pagination .current {
background: var(--fv-primary);
color: var(--fv-white);
border-color: var(--fv-primary);
} .fv-page {
padding: var(--fv-space-2xl) 0;
}
.fv-page-content {
max-width: 800px;
margin: 0 auto;
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-page-title {
font-size: var(--fv-font-size-3xl);
font-weight: 700;
color: var(--fv-dark);
margin-bottom: var(--fv-space-xl);
text-align: center;
} .fv-search-form {
display: flex;
gap: var(--fv-space-sm);
max-width: 600px;
margin: 0 auto var(--fv-space-xl);
}
.fv-search-form input[type="text"] {
flex: 1;
padding: var(--fv-space-md) var(--fv-space-lg);
font-size: var(--fv-font-size-base);
border: 2px solid var(--fv-gray-300);
border-radius: var(--fv-radius);
outline: none;
transition: var(--fv-transition);
}
.fv-search-form input[type="text"]:focus {
border-color: var(--fv-primary);
} .fv-404 {
text-align: center;
padding: var(--fv-space-3xl) 0;
}
.fv-404-title {
font-size: 120px;
font-weight: 800;
color: var(--fv-primary);
line-height: 1;
margin-bottom: var(--fv-space-lg);
}
.fv-404-subtitle {
font-size: var(--fv-font-size-2xl);
color: var(--fv-dark);
margin-bottom: var(--fv-space-md);
}
.fv-404-desc {
font-size: var(--fv-font-size-base);
color: var(--fv-gray-700);
margin-bottom: var(--fv-space-xl);
} .fv-form-group {
margin-bottom: var(--fv-space-md);
}
.fv-form-label {
display: block;
font-size: var(--fv-font-size-sm);
font-weight: 500;
color: var(--fv-dark);
margin-bottom: var(--fv-space-xs);
}
.fv-form-input,
.fv-form-textarea,
.fv-form-select {
width: 100%;
padding: var(--fv-space-md);
font-size: var(--fv-font-size-base);
color: var(--fv-dark);
background: var(--fv-white);
border: 2px solid var(--fv-gray-300);
border-radius: var(--fv-radius);
outline: none;
transition: var(--fv-transition);
}
.fv-form-input:focus,
.fv-form-textarea:focus,
.fv-form-select:focus {
border-color: var(--fv-primary);
}
.fv-form-textarea {
resize: vertical;
min-height: 120px;
} .fv-message {
padding: var(--fv-space-md) var(--fv-space-lg);
border-radius: var(--fv-radius);
margin-bottom: var(--fv-space-md);
font-size: var(--fv-font-size-sm);
}
.fv-message-success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.fv-message-error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.fv-message-warning {
background: #fff3cd;
color: #856404;
border: 1px solid #ffeeba;
}
.fv-message-info {
background: #d1ecf1;
color: #0c5460;
border: 1px solid #bee5eb;
} .fv-shop-page {
padding: var(--fv-space-lg) 0;
} .fv-cart {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-cart-header {
display: grid;
grid-template-columns: 3fr 1fr 1fr 1fr auto;
gap: var(--fv-space-md);
padding-bottom: var(--fv-space-md);
border-bottom: 2px solid var(--fv-gray-100);
font-weight: 600;
color: var(--fv-gray-700);
font-size: var(--fv-font-size-sm);
}
.fv-cart-item {
display: grid;
grid-template-columns: 3fr 1fr 1fr 1fr auto;
gap: var(--fv-space-md);
align-items: center;
padding: var(--fv-space-lg) 0;
border-bottom: 1px solid var(--fv-gray-100);
}
.fv-cart-item-product {
display: flex;
gap: var(--fv-space-md);
align-items: center;
}
.fv-cart-item-image {
width: 80px;
height: 80px;
border-radius: var(--fv-radius-sm);
overflow: hidden;
flex-shrink: 0;
}
.fv-cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.fv-cart-item-title {
font-weight: 500;
color: var(--fv-dark);
}
.fv-cart-item-price {
font-weight: 600;
color: var(--fv-primary);
}
.fv-cart-quantity {
display: flex;
align-items: center;
gap: 0;
}
.fv-cart-quantity button {
width: 32px;
height: 32px;
border: 1px solid var(--fv-gray-300);
background: var(--fv-white);
cursor: pointer;
font-size: var(--fv-font-size-lg);
color: var(--fv-gray-700);
transition: var(--fv-transition);
}
.fv-cart-quantity button:hover {
background: var(--fv-gray-100);
}
.fv-cart-quantity button:first-child {
border-radius: var(--fv-radius-sm) 0 0 var(--fv-radius-sm);
}
.fv-cart-quantity button:last-child {
border-radius: 0 var(--fv-radius-sm) var(--fv-radius-sm) 0;
}
.fv-cart-quantity input {
width: 50px;
height: 32px;
border: 1px solid var(--fv-gray-300);
border-left: none;
border-right: none;
text-align: center;
font-size: var(--fv-font-size-sm);
}
.fv-cart-item-subtotal {
font-weight: 600;
color: var(--fv-dark);
}
.fv-cart-item-remove {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: transparent;
color: var(--fv-gray-500);
cursor: pointer;
transition: var(--fv-transition);
}
.fv-cart-item-remove:hover {
color: var(--fv-danger);
}
.fv-cart-summary {
margin-top: var(--fv-space-xl);
padding: var(--fv-space-lg);
background: var(--fv-bg-warm);
border-radius: var(--fv-radius);
}
.fv-cart-total {
display: flex;
justify-content: space-between;
align-items: center;
font-size: var(--fv-font-size-xl);
font-weight: 700;
}
.fv-cart-total .amount {
color: var(--fv-primary);
font-size: var(--fv-font-size-2xl);
}
.fv-cart-actions {
display: flex;
justify-content: flex-end;
gap: var(--fv-space-md);
margin-top: var(--fv-space-lg);
} .fv-checkout {
display: grid;
grid-template-columns: 1fr 400px;
gap: var(--fv-space-xl);
}
.fv-checkout-form {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-checkout-section {
margin-bottom: var(--fv-space-xl);
}
.fv-checkout-section-title {
font-size: var(--fv-font-size-lg);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-lg);
padding-bottom: var(--fv-space-sm);
border-bottom: 2px solid var(--fv-primary);
}
.fv-checkout-summary {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
height: fit-content;
position: sticky;
top: 90px;
}
.fv-checkout-summary-title {
font-size: var(--fv-font-size-lg);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-lg);
}
.fv-order-item {
display: flex;
justify-content: space-between;
padding: var(--fv-space-sm) 0;
border-bottom: 1px solid var(--fv-gray-100);
}
.fv-order-item-name {
color: var(--fv-gray-700);
font-size: var(--fv-font-size-sm);
}
.fv-order-item-price {
font-weight: 500;
}
.fv-order-total {
display: flex;
justify-content: space-between;
margin-top: var(--fv-space-md);
padding-top: var(--fv-space-md);
border-top: 2px solid var(--fv-gray-100);
font-size: var(--fv-font-size-lg);
font-weight: 700;
}
.fv-order-total .amount {
color: var(--fv-primary);
} .fv-account {
display: grid;
grid-template-columns: 240px 1fr;
gap: var(--fv-space-xl);
}
.fv-account-nav {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-md);
box-shadow: var(--fv-shadow-sm);
height: fit-content;
}
.fv-account-nav a {
display: flex;
align-items: center;
gap: var(--fv-space-sm);
padding: var(--fv-space-md);
color: var(--fv-gray-700);
border-radius: var(--fv-radius-sm);
transition: var(--fv-transition);
}
.fv-account-nav a:hover,
.fv-account-nav a.active {
background: var(--fv-bg-warm);
color: var(--fv-primary);
}
.fv-account-content {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-account-title {
font-size: var(--fv-font-size-2xl);
font-weight: 700;
color: var(--fv-dark);
margin-bottom: var(--fv-space-xl);
} .fv-login-container {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--fv-space-xl);
}
.fv-login-box,
.fv-register-box {
background: var(--fv-white);
border-radius: var(--fv-radius);
padding: var(--fv-space-xl);
box-shadow: var(--fv-shadow-sm);
}
.fv-login-title {
font-size: var(--fv-font-size-xl);
font-weight: 600;
color: var(--fv-dark);
margin-bottom: var(--fv-space-lg);
text-align: center;
}  @media (max-width: 1024px) {
.fv-products-grid {
grid-template-columns: repeat(3, 1fr);
}
.fv-features-grid {
grid-template-columns: repeat(2, 1fr);
}
.fv-footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.fv-single-container {
grid-template-columns: 1fr;
}
.fv-sidebar {
display: none;
}
.fv-checkout {
grid-template-columns: 1fr;
gap: 15px;
}
.fv-checkout-summary {
position: static;
}
.fv-checkout-form {
padding: 15px 12px;
border-radius: 0;
}
.fv-checkout-section {
margin-bottom: 15px;
}
.fv-checkout-section-title {
font-size: 16px;
margin-bottom: 12px;
padding-bottom: 10px;
}
.fv-checkout-summary {
padding: 15px 12px;
border-radius: 0;
}
.fv-checkout-summary-title {
font-size: 16px;
margin-bottom: 12px;
}
.fv-shop-page.fv-checkout-page {
padding: 0;
overflow-x: hidden;
}
.fv-shop-page.fv-checkout-page .fv-container {
padding: 0;
max-width: 100%;
width: 100%;
}
.fv-checkout-page .fv-section-title {
font-size: 18px;
margin-bottom: 15px !important;
padding: 15px 12px;
background: var(--fv-white);
}
.fv-checkout {
display: block;
width: 100%;
}
.fv-checkout-form {
width: 100%;
max-width: 100%;
padding: 15px 12px;
border-radius: 0;
box-sizing: border-box;
}
.fv-checkout-summary {
width: 100%;
max-width: 100%;
padding: 15px 12px;
border-radius: 0;
margin-top: 10px;
}
.fv-checkout-section {
margin-bottom: 15px;
}
.fv-checkout-section-title {
font-size: 16px;
margin-bottom: 12px;
padding-bottom: 10px;
}
.fv-checkout .fv-form-field {
margin-bottom: 12px;
width: 100%;
}
.fv-checkout .fv-form-field label {
font-size: 13px;
margin-bottom: 4px;
}
.fv-checkout-form input,
.fv-checkout-form select,
.fv-checkout-form textarea,
.ly-shop-form-row input,
.ly-shop-form-row select,
.ly-shop-form-row textarea,
.ly-shop-address-fields input,
.ly-shop-address-fields select {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
padding: 10px 12px !important;
font-size: 14px !important;
}
.ly-shop-form-row,
.ly-shop-address-fields {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
}
.fv-checkout-page,
.fv-checkout-page .fv-container,
.fv-checkout-page .fv-checkout,
.fv-checkout-page .fv-checkout-form,
.fv-checkout-page .fv-checkout-section {
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
}
html, body {
overflow-x: hidden !important;
}
.fv-account {
grid-template-columns: 1fr;
}
.fv-account-nav {
display: flex;
overflow-x: auto;
gap: var(--fv-space-sm);
}
.fv-account-nav a {
white-space: nowrap;
}
} @media (max-width: 768px) {
:root {
--fv-space-3xl: 48px;
--fv-space-2xl: 32px;
}
.fv-nav {
display: none;
}
.fv-menu-toggle {
display: flex;
}
.fv-hero {
padding: 24px 0;
}
.fv-hero-inner {
display: flex;
flex-direction: column-reverse;
text-align: center;
gap: 16px;
}
.fv-hero-content {
max-width: 100%;
}
.fv-hero-badge {
margin-bottom: 12px;
}
.fv-hero-title {
margin-bottom: 12px;
}
.fv-hero-desc {
margin-bottom: 16px;
}
.fv-hero-image {
display: block;
margin-bottom: 0;
}
.fv-hero-image img {
max-width: 100%;
height: auto;
border-radius: var(--fv-radius);
}
.fv-hero-actions {
justify-content: center;
}
.fv-products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.fv-product-card {
border-radius: 8px;
}
.fv-product-info {
padding: 12px;
}
.fv-product-title {
font-size: 13px;
}
.fv-product-price {
font-size: 14px;
}
.fv-section {
padding: 24px 0;
}
.fv-section-title {
font-size: 20px;
margin-bottom: 16px;
}
.fv-features-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.fv-feature-card {
padding: 16px;
}
.fv-feature-icon {
width: 48px;
height: 48px;
margin-bottom: 12px;
}
.fv-feature-title {
font-size: 14px;
margin-bottom: 4px;
}
.fv-feature-desc {
font-size: 12px;
}
.fv-articles-grid {
grid-template-columns: 1fr;
}
.fv-footer {
padding: 24px 0 16px;
}
.fv-footer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.fv-footer-brand {
grid-column: 1 / -1;
margin-bottom: 16px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
max-width: none !important;
width: 100%;
}
.fv-footer-brand .fv-footer-logo {
max-width: 150px;
margin: 0 auto 12px;
}
.fv-footer-brand .fv-footer-logo img {
width: auto;
height: auto;
max-width: 100%;
}
.fv-footer-brand .fv-footer-desc {
max-width: 100%;
padding: 0;
}
.fv-footer-brand .fv-footer-social {
justify-content: center;
}
.fv-footer-title {
font-size: 13px;
margin-bottom: 10px;
}
.fv-footer-links a,
.fv-footer-contact-item {
font-size: 12px;
}
.fv-footer-bottom {
flex-direction: column;
gap: var(--fv-space-sm);
text-align: center;
}
.fv-single-main {
padding: var(--fv-space-md);
}
.fv-single-title {
font-size: var(--fv-font-size-2xl);
} .fv-cart-header {
display: none;
}
.fv-cart-item {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding: 16px;
position: relative;
}
.fv-cart-item-product {
display: flex;
gap: 12px;
width: 100%;
}
.fv-cart-item-image {
width: 70px;
height: 70px;
flex-shrink: 0;
}
.fv-cart-item-title {
flex: 1;
font-size: 14px;
line-height: 1.4;
padding-right: 30px;
}
.fv-cart-item-price {
display: none;
}
.fv-cart-quantity {
order: 1;
}
.fv-cart-item-subtotal {
order: 2;
font-size: 16px;
color: var(--fv-primary);
}
.fv-cart-item-remove {
position: absolute;
top: 16px;
right: 16px;
} .fv-login-container {
grid-template-columns: 1fr;
}
.fv-404-title {
font-size: 80px;
}
} @media (max-width: 480px) {
.fv-header-inner {
height: 60px;
}
.fv-header-btn {
width: 36px;
height: 36px;
}
.fv-products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.fv-product-info {
padding: 8px;
}
.fv-btn {
padding: var(--fv-space-sm) var(--fv-space-md);
font-size: var(--fv-font-size-sm);
}
} .fv-mobile-bottom-nav {
display: none;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #fff;
border-top: 1px solid var(--fv-gray-200);
z-index: 1000;
padding-bottom: env(safe-area-inset-bottom);
}
.fv-mobile-bottom-nav {
display: none;
}
@media (max-width: 768px) {
.fv-mobile-bottom-nav {
display: flex;
justify-content: space-around;
align-items: center;
height: 60px;
}
.fv-footer {
padding-bottom: 80px;
} .single-ly_product .fv-mobile-bottom-nav {
display: none;
}
}
.fv-bottom-nav-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--fv-gray-500);
font-size: 11px;
text-decoration: none;
flex: 1;
height: 100%;
position: relative;
transition: color 0.2s;
}
.fv-bottom-nav-item svg {
width: 22px;
height: 22px;
margin-bottom: 3px;
}
.fv-bottom-nav-item.active {
color: var(--fv-primary);
}
.fv-bottom-nav-item .fv-line-icon {
width: 22px;
height: 22px;
margin-bottom: 3px;
}
.fv-bottom-nav-badge {
position: absolute;
top: 6px;
right: 50%;
transform: translateX(12px);
background: var(--fv-primary);
color: #fff;
font-size: 10px;
min-width: 16px;
height: 16px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
} @media (max-width: 768px) {
.fv-breadcrumb {
padding: 10px 0;
}
.fv-breadcrumb-inner {
font-size: 12px;
flex-wrap: nowrap;
gap: 4px;
white-space: nowrap;
overflow: hidden;
}
.fv-breadcrumb .current {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.fv-product-single {
grid-template-columns: 1fr !important;
gap: 20px !important;
}
.fv-product-gallery {
order: 1;
}
.fv-product-info-single {
order: 2;
}
.fv-product-info-single h1 {
font-size: 20px !important;
}
.fv-product-price-box .fv-current-price {
font-size: 24px !important;
}
.fv-product-thumbnails {
gap: 8px !important;
}
.fv-product-thumbnails .fv-thumb-item {
width: 60px !important;
height: 60px !important;
}
.fv-product-tabs {
margin-top: 20px;
}
.fv-product-tabs .fv-tab-buttons {
gap: 0;
}
.fv-product-tabs .fv-tab-btn {
padding: 10px 16px;
font-size: 14px;
}
.fv-product-content {
padding-bottom: 80px;
}
.fv-shop-page .fv-container {
padding-left: 12px;
padding-right: 12px;
}
.fv-product-tabs .fv-tab-content {
padding: 16px 0;
}
.fv-product-description {
padding: 18px !important;
margin-top: 20px !important;
} .fv-related-section .fv-products-grid,
.fv-hot-articles .fv-articles-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 12px !important;
}
.fv-related-section,
.fv-hot-articles {
margin-top: 20px !important;
}
.fv-related-section h2,
.fv-hot-articles h2 {
font-size: 16px !important;
margin-bottom: 12px !important;
}
} .fv-product-bottom-bar {
display: none;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #fff;
border-top: 1px solid var(--fv-gray-200);
z-index: 1001;
padding-bottom: env(safe-area-inset-bottom);
height: 60px;
}
@media (max-width: 768px) {
.single-ly_product .fv-product-bottom-bar {
display: flex;
}
}
.fv-product-bottom-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--fv-gray-500);
font-size: 11px;
text-decoration: none;
flex: 1;
height: 100%;
border-right: 1px solid var(--fv-gray-100);
background: none;
border-top: none;
border-bottom: none;
border-left: none;
cursor: pointer;
}
.fv-product-bottom-item:last-child {
border-right: none;
}
.fv-product-bottom-item svg {
width: 20px;
height: 20px;
margin-bottom: 3px;
}
.fv-product-bottom-item .fv-line-icon {
width: 20px;
height: 20px;
margin-bottom: 3px;
}
.fv-product-bottom-cart {
flex: 2;
background: var(--fv-bg-warm);
color: var(--fv-primary);
font-size: 13px;
font-weight: 600;
flex-direction: row;
gap: 5px;
}
.fv-product-bottom-cart svg {
margin-bottom: 0;
}
.fv-product-bottom-buy {
flex: 2;
background: var(--fv-primary);
color: #fff;
font-size: 13px;
font-weight: 600;
} .fv-mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100vh;
background: var(--fv-white);
box-shadow: var(--fv-shadow-lg);
z-index: 1001;
transition: right 0.3s ease;
padding: var(--fv-space-xl);
overflow-y: auto;
}
.fv-mobile-menu.active {
right: 0;
}
.fv-mobile-menu-close {
position: absolute;
top: var(--fv-space-md);
right: var(--fv-space-md);
width: 40px;
height: 40px;
border: none;
background: transparent;
font-size: 24px;
cursor: pointer;
color: var(--fv-gray-700);
}
.fv-mobile-nav {
margin-top: var(--fv-space-2xl);
}
.fv-mobile-nav a {
display: block;
padding: var(--fv-space-md) 0;
color: var(--fv-dark);
font-weight: 500;
border-bottom: 1px solid var(--fv-gray-100);
}
.fv-mobile-nav a:hover,
.fv-mobile-nav a.current {
color: var(--fv-primary);
}
.fv-mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: var(--fv-transition);
}
.fv-mobile-overlay.active {
opacity: 1;
visibility: visible;
} .fv-search-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: var(--fv-transition);
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 15vh;
}
.fv-search-overlay.active {
opacity: 1;
visibility: visible;
}
.fv-search-modal {
width: 90%;
max-width: 600px;
background: var(--fv-white);
border-radius: var(--fv-radius-lg);
padding: var(--fv-space-xl);
position: relative;
transform: translateY(-20px);
transition: var(--fv-transition);
}
.fv-search-overlay.active .fv-search-modal {
transform: translateY(0);
}
.fv-search-close {
position: absolute;
top: var(--fv-space-md);
right: var(--fv-space-md);
width: 36px;
height: 36px;
border: none;
background: var(--fv-gray-100);
border-radius: var(--fv-radius);
font-size: 24px;
line-height: 1;
cursor: pointer;
color: var(--fv-gray-700);
transition: var(--fv-transition);
}
.fv-search-close:hover {
background: var(--fv-gray-300);
color: var(--fv-dark);
}
.fv-search-modal-form {
display: flex;
gap: 0;
margin-top: var(--fv-space-md);
}
.fv-search-modal-form input[type="text"] {
flex: 1;
padding: var(--fv-space-md) var(--fv-space-lg);
font-size: var(--fv-font-size-lg);
border: 2px solid var(--fv-gray-300);
border-right: none;
border-radius: var(--fv-radius) 0 0 var(--fv-radius);
outline: none;
transition: var(--fv-transition);
}
.fv-search-modal-form input[type="text"]:focus {
border-color: var(--fv-primary);
}
.fv-search-modal-form button[type="submit"] {
padding: var(--fv-space-md) var(--fv-space-lg);
background: var(--fv-primary);
border: 2px solid var(--fv-primary);
border-radius: 0 var(--fv-radius) var(--fv-radius) 0;
cursor: pointer;
transition: var(--fv-transition);
}
.fv-search-modal-form button[type="submit"]:hover {
background: var(--fv-primary-dark);
border-color: var(--fv-primary-dark);
}
.fv-search-modal-form button[type="submit"] svg {
width: 22px;
height: 22px;
color: var(--fv-white);
} .text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--fv-space-sm); }
.mt-2 { margin-top: var(--fv-space-md); }
.mt-3 { margin-top: var(--fv-space-lg); }
.mt-4 { margin-top: var(--fv-space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--fv-space-sm); }
.mb-2 { margin-bottom: var(--fv-space-md); }
.mb-3 { margin-bottom: var(--fv-space-lg); }
.mb-4 { margin-bottom: var(--fv-space-xl); }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }