AI
/* ===================================
VITAL FORCE – Premium EC Site Styles
めちゃくちゃオシャレでクールなデザイン
=================================== */
/* ===================================
Root Variables & Reset
=================================== */
:root {
/* Colors – 自然派・プレミアム感のある配色 */
–primary-color: #1a4d2e;
–primary-light: #2d7a4e;
–primary-dark: #0f3320;
–secondary-color: #c19a6b;
–accent-color: #d4af37;
–bg-dark: #0a0e0d;
–bg-light: #f8f6f3;
–text-dark: #1a1a1a;
–text-light: #ffffff;
–text-gray: #666666;
–border-color: #e0e0e0;
/* Typography */
–font-main: ‘Noto Sans JP’, sans-serif;
–font-display: ‘Playfair Display’, serif;
/* Spacing */
–section-padding: 120px 0;
–container-padding: 0 20px;
/* Transitions */
–transition-fast: 0.3s ease;
–transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
/* Shadows */
–shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
–shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
–shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
–shadow-glow: 0 0 30px rgba(26, 77, 46, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
}
body {
font-family: var(–font-main);
color: var(–text-dark);
background-color: var(–bg-light);
line-height: 1.7;
overflow-x: hidden;
}
/* ===================================
Preloader – クールなローディング
=================================== */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(–primary-dark) 0%, var(–bg-dark) 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
opacity: 0;
visibility: hidden;
}
.preloader-content {
text-align: center;
}
.logo-animation {
font-family: var(–font-display);
font-size: 3rem;
font-weight: 900;
color: var(–text-light);
letter-spacing: 0.3em;
animation: logoGlow 2s ease-in-out infinite;
}
@keyframes logoGlow {
0%, 100% {
text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
0 0 40px rgba(212, 175, 55, 0.3);
}
50% {
text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
0 0 60px rgba(212, 175, 55, 0.5);
}
}
.loading-bar {
width: 200px;
height: 3px;
background: rgba(255, 255, 255, 0.1);
margin: 30px auto 0;
border-radius: 3px;
overflow: hidden;
position: relative;
}
.loading-bar::after {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, var(–accent-color), transparent);
animation: loadingSlide 1.5s ease-in-out infinite;
}
@keyframes loadingSlide {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
/* ===================================
Navigation – スティッキー・透明効果
=================================== */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(10, 14, 13, 0.95);
backdrop-filter: blur(10px);
transition: all var(–transition-smooth);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar.scrolled {
background: rgba(10, 14, 13, 0.98);
box-shadow: var(–shadow-md);
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: var(–container-padding);
}
.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo a {
display: flex;
align-items: center;
text-decoration: none;
gap: 10px;
}
.logo-icon {
font-size: 2rem;
animation: leafSway 3s ease-in-out infinite;
}
@keyframes leafSway {
0%, 100% {
transform: rotate(-5deg);
}
50% {
transform: rotate(5deg);
}
}
.logo-text {
font-family: var(–font-display);
font-size: 1.8rem;
font-weight: 900;
color: var(–text-light);
letter-spacing: 0.1em;
}
.nav-menu {
display: flex;
list-style: none;
gap: 40px;
}
.nav-link {
color: var(–text-light);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
position: relative;
transition: color var(–transition-fast);
letter-spacing: 0.05em;
}
.nav-link::after {
content: ”;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(–accent-color);
transition: width var(–transition-smooth);
}
.nav-link:hover {
color: var(–accent-color);
}
.nav-link:hover::after {
width: 100%;
}
.nav-actions {
display: flex;
align-items: center;
gap: 20px;
}
.cart-btn {
position: relative;
background: transparent;
border: 2px solid var(–accent-color);
color: var(–accent-color);
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
transition: all var(–transition-fast);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.cart-btn:hover {
background: var(–accent-color);
color: var(–bg-dark);
transform: scale(1.1);
}
.cart-count {
position: absolute;
top: -5px;
right: -5px;
background: #e63946;
color: white;
font-size: 0.7rem;
font-weight: 700;
width: 22px;
height: 22px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
}
.menu-toggle span {
width: 25px;
height: 3px;
background: var(–text-light);
transition: all var(–transition-fast);
}
/* ===================================
Hero Section – 壮大なインパクト
=================================== */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(135deg, var(–primary-dark) 0%, var(–bg-dark) 100%);
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(26, 77, 46, 0.2) 0%, transparent 50%);
animation: bgPulse 10s ease-in-out infinite;
}
@keyframes bgPulse {
0%, 100% {
opacity: 0.5;
}
50% {
opacity: 1;
}
}
.hero-particles {
position: absolute;
width: 100%;
height: 100%;
background-image:
radial-gradient(2px 2px at 20% 30%, white, transparent),
radial-gradient(2px 2px at 60% 70%, white, transparent),
radial-gradient(1px 1px at 50% 50%, white, transparent),
radial-gradient(1px 1px at 80% 10%, white, transparent),
radial-gradient(2px 2px at 90% 60%, white, transparent);
background-size: 200% 200%;
animation: particlesFloat 20s linear infinite;
opacity: 0.3;
}
@keyframes particlesFloat {
0% {
background-position: 0% 0%;
}
100% {
background-position: 100% 100%;
}
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
padding: 0 20px;
}
.hero-title {
font-family: var(–font-display);
font-size: 4.5rem;
font-weight: 900;
color: var(–text-light);
line-height: 1.2;
margin-bottom: 30px;
letter-spacing: 0.02em;
}
.title-line {
display: block;
opacity: 0;
animation: titleFadeIn 1s ease-out forwards;
}
.title-line:nth-child(1) {
animation-delay: 0.3s;
}
.title-line:nth-child(2) {
animation-delay: 0.6s;
}
@keyframes titleFadeIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.highlight {
background: linear-gradient(135deg, var(–accent-color), var(–secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}
.hero-subtitle {
font-size: 1.3rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 50px;
font-weight: 300;
letter-spacing: 0.1em;
}
.hero-cta {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 60px;
}
.btn {
padding: 18px 40px;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
transition: all var(–transition-smooth);
cursor: pointer;
letter-spacing: 0.05em;
border: none;
position: relative;
overflow: hidden;
}
.btn::before {
content: ”;
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
width: 300px;
height: 300px;
}
.btn-primary {
background: linear-gradient(135deg, var(–accent-color), var(–secondary-color));
color: var(–bg-dark);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
.btn-secondary {
background: transparent;
color: var(–text-light);
border: 2px solid var(–text-light);
}
.btn-secondary:hover {
background: var(–text-light);
color: var(–bg-dark);
transform: translateY(-3px);
}
.btn-outline {
background: transparent;
border: 2px solid var(–primary-color);
color: var(–primary-color);
}
.btn-outline:hover {
background: var(–primary-color);
color: var(–text-light);
}
.btn-large {
padding: 22px 50px;
font-size: 1.1rem;
}
.hero-features {
display: flex;
gap: 50px;
justify-content: center;
flex-wrap: wrap;
}
.feature-item {
display: flex;
align-items: center;
gap: 12px;
color: var(–text-light);
font-size: 1rem;
}
.feature-item i {
font-size: 1.5rem;
color: var(–accent-color);
}
.scroll-indicator {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
color: rgba(255, 255, 255, 0.6);
animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
0%, 100% {
transform: translateX(-50%) translateY(0);
}
50% {
transform: translateX(-50%) translateY(10px);
}
}
.mouse {
width: 25px;
height: 40px;
border: 2px solid rgba(255, 255, 255, 0.6);
border-radius: 15px;
position: relative;
}
.mouse::before {
content: ”;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 8px;
background: rgba(255, 255, 255, 0.6);
border-radius: 2px;
animation: mouseScroll 1.5s ease-in-out infinite;
}
@keyframes mouseScroll {
0% {
top: 8px;
opacity: 1;
}
100% {
top: 24px;
opacity: 0;
}
}
/* ===================================
Section Common Styles
=================================== */
section {
padding: var(–section-padding);
position: relative;
}
.section-header {
text-align: center;
margin-bottom: 80px;
}
.section-tag {
display: inline-block;
padding: 8px 20px;
background: var(–primary-light);
color: var(–text-light);
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.15em;
margin-bottom: 20px;
text-transform: uppercase;
}
.section-title {
font-family: var(–font-display);
font-size: 3.5rem;
font-weight: 900;
color: var(–text-dark);
line-height: 1.3;
margin-bottom: 20px;
}
.section-subtitle {
font-size: 1.2rem;
color: var(–text-gray);
font-weight: 300;
max-width: 700px;
margin: 0 auto;
}
/* ===================================
Featured Product Section
=================================== */
.featured-product {
background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}
.product-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.product-image-container {
position: relative;
}
.product-badge {
position: absolute;
top: 20px;
left: 20px;
background: var(–accent-color);
color: var(–bg-dark);
padding: 8px 20px;
border-radius: 30px;
font-weight: 700;
font-size: 0.9rem;
z-index: 2;
letter-spacing: 0.1em;
}
.product-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: var(–shadow-lg);
transition: transform var(–transition-smooth);
}
.product-image-wrapper:hover {
transform: scale(1.05) rotate(2deg);
}
.product-glow {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
0%, 100% {
opacity: 0.5;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
.product-image {
width: 100%;
height: auto;
display: block;
position: relative;
z-index: 1;
}
.product-details {
padding: 20px;
}
.product-name {
font-family: var(–font-display);
font-size: 2.5rem;
font-weight: 700;
color: var(–text-dark);
margin-bottom: 15px;
}
.product-rating {
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 25px;
}
.product-rating i {
color: var(–accent-color);
font-size: 1.1rem;
}
.rating-count {
margin-left: 10px;
color: var(–text-gray);
font-size: 0.95rem;
}
.product-description {
font-size: 1.1rem;
line-height: 1.8;
color: var(–text-dark);
margin-bottom: 30px;
}
.product-highlights {
margin-bottom: 30px;
}
.highlight-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(–border-color);
}
.highlight-item:last-child {
border-bottom: none;
}
.highlight-item i {
color: var(–primary-color);
font-size: 1.2rem;
}
.product-pricing {
display: flex;
gap: 30px;
align-items: flex-end;
margin-bottom: 30px;
padding: 25px;
background: linear-gradient(135deg, rgba(26, 77, 46, 0.05), rgba(212, 175, 55, 0.05));
border-radius: 15px;
}
.price-wrapper {
display: flex;
flex-direction: column;
}
.price-label {
font-size: 0.85rem;
color: var(–text-gray);
margin-bottom: 5px;
font-weight: 500;
}
.price-original {
font-size: 1.3rem;
color: var(–text-gray);
text-decoration: line-through;
}
.price-current {
font-family: var(–font-display);
font-size: 3rem;
font-weight: 900;
color: var(–primary-color);
}
.product-actions {
display: flex;
gap: 15px;
margin-bottom: 30px;
}
.add-to-cart-btn {
flex: 1;
}
.wishlist-btn {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
}
.product-trust {
display: flex;
gap: 30px;
flex-wrap: wrap;
}
.trust-item {
display: flex;
align-items: center;
gap: 10px;
color: var(–text-gray);
font-size: 0.95rem;
}
.trust-item i {
color: var(–primary-color);
font-size: 1.3rem;
}
/* ===================================
Comparison Section
=================================== */
.comparison-section {
background: var(–bg-dark);
color: var(–text-light);
}
.comparison-section .section-title,
.comparison-section .section-subtitle {
color: var(–text-light);
}
.comparison-tabs {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 60px;
flex-wrap: wrap;
}
.tab-btn {
padding: 15px 40px;
background: transparent;
border: 2px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.7);
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all var(–transition-fast);
letter-spacing: 0.05em;
}
.tab-btn:hover {
border-color: var(–accent-color);
color: var(–accent-color);
transform: translateY(-2px);
}
.tab-btn.active {
background: var(–accent-color);
border-color: var(–accent-color);
color: var(–bg-dark);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.comparison-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.comparison-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 40px;
transition: all var(–transition-smooth);
position: relative;
overflow: hidden;
}
.comparison-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
opacity: 0;
transition: opacity var(–transition-smooth);
}
.comparison-card:hover {
transform: translateY(-10px);
border-color: var(–accent-color);
box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}
.comparison-card:hover::before {
opacity: 1;
}
.featured-card {
border: 2px solid var(–accent-color);
background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 77, 46, 0.1));
}
.premium-card {
border: 2px solid var(–accent-color);
background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(26, 77, 46, 0.15));
box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}
.featured-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(–accent-color);
color: var(–bg-dark);
padding: 6px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.1em;
}
.featured-badge.premium {
background: linear-gradient(135deg, var(–accent-color), var(–secondary-color));
}
.card-header {
margin-bottom: 30px;
position: relative;
z-index: 1;
}
.card-header h3 {
font-family: var(–font-display);
font-size: 2rem;
font-weight: 700;
color: var(–text-light);
margin-bottom: 10px;
}
.card-tag {
display: inline-block;
padding: 5px 15px;
background: rgba(212, 175, 55, 0.2);
color: var(–accent-color);
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}
.card-body {
position: relative;
z-index: 1;
}
.info-row {
display: flex;
gap: 15px;
padding: 20px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row:last-child {
border-bottom: none;
}
.info-row i {
color: var(–accent-color);
font-size: 1.5rem;
min-width: 25px;
}
.info-row strong {
display: block;
font-size: 1rem;
margin-bottom: 5px;
color: var(–text-light);
}
.info-row p {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}
.card-footer {
margin-top: 30px;
position: relative;
z-index: 1;
}
/* ===================================
Benefits Section
=================================== */
.benefits-section {
background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}
.benefit-card {
background: white;
padding: 50px 40px;
border-radius: 20px;
box-shadow: var(–shadow-sm);
transition: all var(–transition-smooth);
text-align: center;
}
.benefit-card:hover {
transform: translateY(-10px);
box-shadow: var(–shadow-lg);
}
.benefit-icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
background: linear-gradient(135deg, var(–primary-light), var(–primary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: var(–text-light);
box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
transition: all var(–transition-smooth);
}
.benefit-card:hover .benefit-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 15px 40px rgba(26, 77, 46, 0.4);
}
.benefit-card h3 {
font-family: var(–font-display);
font-size: 1.5rem;
font-weight: 700;
color: var(–text-dark);
margin-bottom: 20px;
}
.benefit-card p {
font-size: 1rem;
line-height: 1.8;
color: var(–text-gray);
}
/* ===================================
About Section
=================================== */
.about-section {
background: linear-gradient(135deg, var(–primary-dark) 0%, var(–bg-dark) 100%);
color: var(–text-light);
}
.about-section .section-title,
.about-section .section-subtitle {
color: var(–text-light);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 80px;
align-items: center;
}
.about-image {
position: relative;
}
.image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: var(–shadow-lg);
}
.image-wrapper img {
width: 100%;
height: auto;
display: block;
transition: transform var(–transition-smooth);
}
.image-wrapper:hover img {
transform: scale(1.05);
}
.image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26, 77, 46, 0.3), rgba(10, 14, 13, 0.5));
}
.about-text {
padding: 20px;
}
.about-description {
font-size: 1.1rem;
line-height: 1.9;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 25px;
}
.about-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin: 50px 0;
padding: 40px 0;
border-top: 1px solid rgba(255, 255, 255, 0.2);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item {
text-align: center;
}
.stat-number {
display: block;
font-family: var(–font-display);
font-size: 3rem;
font-weight: 900;
color: var(–accent-color);
margin-bottom: 10px;
}
.stat-label {
display: block;
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.7);
}
.developer-quote {
font-family: var(–font-display);
font-size: 1.3rem;
font-style: italic;
line-height: 1.8;
padding: 30px;
border-left: 4px solid var(–accent-color);
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
margin-top: 30px;
}
.developer-quote cite {
display: block;
font-size: 1rem;
font-style: normal;
margin-top: 15px;
color: var(–accent-color);
}
/* ===================================
Testimonials Section
=================================== */
.testimonials-section {
background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}
.testimonial-card {
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: var(–shadow-sm);
transition: all var(–transition-smooth);
position: relative;
}
.testimonial-card::before {
content: ‘”‘;
position: absolute;
top: -20px;
left: 30px;
font-size: 120px;
font-family: var(–font-display);
color: rgba(26, 77, 46, 0.1);
line-height: 1;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: var(–shadow-lg);
}
.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 20px;
}
.testimonial-rating i {
color: var(–accent-color);
font-size: 1.1rem;
}
.testimonial-text {
font-size: 1.05rem;
line-height: 1.8;
color: var(–text-dark);
margin-bottom: 25px;
position: relative;
z-index: 1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(–primary-light), var(–primary-color));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 1.2rem;
}
.author-name {
display: block;
font-weight: 700;
font-size: 1.1rem;
color: var(–text-dark);
margin-bottom: 5px;
}
.author-age {
display: block;
font-size: 0.9rem;
color: var(–text-gray);
}
/* ===================================
CTA Section
=================================== */
.cta-section {
background: linear-gradient(135deg, var(–primary-dark) 0%, var(–bg-dark) 100%);
position: relative;
overflow: hidden;
}
.cta-section::before {
content: ”;
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
animation: ctaGlow 8s ease-in-out infinite;
}
@keyframes ctaGlow {
0%, 100% {
transform: translate(0, 0);
}
50% {
transform: translate(-20%, 20%);
}
}
.cta-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.cta-title {
font-family: var(–font-display);
font-size: 3.5rem;
font-weight: 900;
color: var(–text-light);
margin-bottom: 20px;
line-height: 1.3;
}
.cta-subtitle {
font-size: 1.5rem;
color: var(–accent-color);
font-weight: 600;
margin-bottom: 30px;
letter-spacing: 0.05em;
}
.cta-price {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
margin-bottom: 40px;
}
.price-old {
font-size: 2rem;
color: rgba(255, 255, 255, 0.5);
text-decoration: line-through;
}
.price-new {
font-family: var(–font-display);
font-size: 4rem;
font-weight: 900;
color: var(–accent-color);
}
.cta-features {
display: flex;
gap: 30px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}
.cta-features span {
color: rgba(255, 255, 255, 0.8);
font-size: 1rem;
}
.cta-features i {
color: var(–accent-color);
margin-right: 8px;
}
/* ===================================
Contact Section
=================================== */
.contact-section {
background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
}
.contact-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}
.contact-form {
background: white;
padding: 50px;
border-radius: 20px;
box-shadow: var(–shadow-md);
}
.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
font-weight: 600;
margin-bottom: 10px;
color: var(–text-dark);
}
.required {
color: #e63946;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 15px 20px;
border: 2px solid var(–border-color);
border-radius: 10px;
font-size: 1rem;
font-family: var(–font-main);
transition: all var(–transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(–primary-color);
box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}
.form-group textarea {
resize: vertical;
min-height: 150px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 30px;
}
.info-card {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: var(–shadow-sm);
text-align: center;
transition: all var(–transition-smooth);
}
.info-card:hover {
transform: translateY(-5px);
box-shadow: var(–shadow-md);
}
.info-card i {
font-size: 2.5rem;
color: var(–primary-color);
margin-bottom: 15px;
}
.info-card h3 {
font-size: 1.2rem;
font-weight: 700;
color: var(–text-dark);
margin-bottom: 10px;
}
.info-card p {
font-size: 1.1rem;
color: var(–text-dark);
margin-bottom: 5px;
}
.info-note {
font-size: 0.9rem;
color: var(–text-gray);
}
/* ===================================
Footer
=================================== */
.footer {
background: var(–bg-dark);
color: rgba(255, 255, 255, 0.8);
padding: 80px 0 30px;
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 60px;
margin-bottom: 50px;
}
.footer-logo {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
}
.footer-description {
font-size: 1rem;
line-height: 1.8;
margin-bottom: 25px;
color: rgba(255, 255, 255, 0.7);
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
width: 45px;
height: 45px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(–text-light);
font-size: 1.2rem;
transition: all var(–transition-fast);
}
.social-links a:hover {
background: var(–accent-color);
color: var(–bg-dark);
transform: translateY(-3px);
}
.footer-col h4 {
font-size: 1.2rem;
font-weight: 700;
color: var(–text-light);
margin-bottom: 20px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color var(–transition-fast);
font-size: 0.95rem;
}
.footer-links a:hover {
color: var(–accent-color);
padding-left: 5px;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 10px;
}
.footer-note {
font-size: 0.85rem;
font-style: italic;
}
/* ===================================
Shopping Cart Modal
=================================== */
.cart-modal {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 9999;
transition: right var(–transition-smooth);
}
.cart-modal.active {
right: 0;
}
.cart-modal-content {
position: absolute;
top: 0;
right: 0;
width: 500px;
max-width: 90%;
height: 100%;
background: white;
box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform var(–transition-smooth);
}
.cart-modal.active .cart-modal-content {
transform: translateX(0);
}
.cart-modal-header {
padding: 30px;
background: var(–primary-dark);
color: var(–text-light);
display: flex;
justify-content: space-between;
align-items: center;
}
.cart-modal-header h3 {
font-size: 1.5rem;
font-weight: 700;
}
.close-cart {
background: transparent;
border: none;
color: var(–text-light);
font-size: 2rem;
cursor: pointer;
transition: all var(–transition-fast);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.close-cart:hover {
background: rgba(255, 255, 255, 0.1);
transform: rotate(90deg);
}
.cart-modal-body {
flex: 1;
padding: 30px;
overflow-y: auto;
}
.empty-cart {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
color: var(–text-gray);
}
.empty-cart i {
font-size: 5rem;
margin-bottom: 20px;
opacity: 0.3;
}
.cart-item {
display: flex;
gap: 20px;
padding: 20px;
border-bottom: 1px solid var(–border-color);
animation: slideIn 0.3s ease;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.cart-item-image {
width: 80px;
height: 80px;
border-radius: 10px;
overflow: hidden;
}
.cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cart-item-details {
flex: 1;
}
.cart-item-name {
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 10px;
color: var(–text-dark);
}
.cart-item-price {
color: var(–primary-color);
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 10px;
}
.cart-item-quantity {
display: flex;
align-items: center;
gap: 10px;
}
.qty-btn {
width: 30px;
height: 30px;
border: 2px solid var(–primary-color);
background: white;
color: var(–primary-color);
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
font-weight: 700;
transition: all var(–transition-fast);
}
.qty-btn:hover {
background: var(–primary-color);
color: white;
}
.cart-item-remove {
background: transparent;
border: none;
color: #e63946;
cursor: pointer;
font-size: 1.3rem;
padding: 5px;
transition: all var(–transition-fast);
}
.cart-item-remove:hover {
transform: scale(1.2);
}
.cart-modal-footer {
padding: 30px;
background: var(–bg-light);
border-top: 2px solid var(–border-color);
}
.cart-total {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
font-size: 1.3rem;
font-weight: 700;
}
.total-price {
color: var(–primary-color);
font-size: 2rem;
}
/* ===================================
Responsive Design
=================================== */
@media (max-width: 1200px) {
.hero-title {
font-size: 3.5rem;
}
.section-title {
font-size: 3rem;
}
.product-showcase {
gap: 50px;
}
}
@media (max-width: 992px) {
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh – 80px);
background: rgba(10, 14, 13, 0.98);
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
transition: left var(–transition-smooth);
}
.nav-menu.active {
left: 0;
}
.menu-toggle {
display: flex;
}
.hero-title {
font-size: 3rem;
}
.section-title {
font-size: 2.5rem;
}
.product-showcase {
grid-template-columns: 1fr;
gap: 40px;
}
.about-content {
grid-template-columns: 1fr;
gap: 50px;
}
.contact-content {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 40px;
}
}
@media (max-width: 768px) {
:root {
–section-padding: 80px 0;
}
.hero-title {
font-size: 2.5rem;
}
.section-title {
font-size: 2rem;
}
.hero-cta {
flex-direction: column;
}
.hero-features {
flex-direction: column;
gap: 20px;
}
.comparison-cards {
grid-template-columns: 1fr;
}
.benefits-grid {
grid-template-columns: 1fr;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
.about-stats {
grid-template-columns: 1fr;
gap: 20px;
}
.cta-title {
font-size: 2.5rem;
}
.price-new {
font-size: 3rem;
}
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
.cart-modal-content {
width: 100%;
}
}
@media (max-width: 480px) {
.logo-text {
font-size: 1.3rem;
}
.hero-title {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.btn {
padding: 15px 30px;
font-size: 0.9rem;
}
.product-name {
font-size: 2rem;
}
.price-current {
font-size: 2.5rem;
}
.contact-form {
padding: 30px 20px;
}
}
