* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #1a237e;
--secondary-color: #283593;
--accent-color: #3f51b5;
--text-color: #212121;
--light-text: #757575;
--bg-light: #f5f5f5;
--white: #ffffff;
--success: #4caf50;
--danger: #f44336;
--warning: #ff9800;
--border-radius: 8px;
--box-shadow: 0 2px 8px rgba(0,0,0,0.1);
--transition: all 0.3s ease;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--white);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
#reading-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
z-index: 10000;
transition: width 0.1s ease;
}
header {
background: var(--white);
box-shadow: var(--box-shadow);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar {
padding: 1rem 0;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--primary-color);
font-weight: bold;
font-size: 1.5rem;
}
.logo img {
border-radius: 50%;
object-fit: cover;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
transition: var(--transition);
position: relative;
}
.nav-links a:hover {
color: var(--primary-color);
}
.cart-icon {
position: relative;
display: flex;
align-items: center;
}
.cart-count {
position: absolute;
top: -8px;
right: -8px;
background: var(--danger);
color: var(--white);
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: bold;
}
.hero {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--white);
padding: 6rem 0;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
animation: fadeInUp 0.8s ease;
}
.hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.95;
animation: fadeInUp 0.8s ease 0.2s backwards;
}
.cta-button {
display: inline-block;
background: var(--white);
color: var(--primary-color);
padding: 1rem 2.5rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: bold;
transition: var(--transition);
animation: fadeInUp 0.8s ease 0.4s backwards;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.timeline {
padding: 4rem 0;
background: var(--bg-light);
}
.timeline h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}
.timeline-wrapper {
position: relative;
max-width: 900px;
margin: 0 auto;
}
.timeline-wrapper::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 100%;
background: var(--accent-color);
}
.timeline-item {
display: flex;
margin-bottom: 3rem;
position: relative;
}
.timeline-item:nth-child(odd) {
flex-direction: row-reverse;
}
.timeline-date {
flex: 1;
text-align: center;
font-weight: bold;
font-size: 1.5rem;
color: var(--primary-color);
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: center;
}
.timeline-content {
flex: 1;
background: var(--white);
padding: 1.5rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
position: relative;
}
.timeline-content::before {
content: '';
position: absolute;
top: 50%;
width: 20px;
height: 20px;
background: var(--accent-color);
border-radius: 50%;
transform: translateY(-50%);
border: 4px solid var(--white);
box-shadow: var(--box-shadow);
}
.timeline-item:nth-child(odd) .timeline-content::before {
left: -40px;
}
.timeline-item:nth-child(even) .timeline-content::before {
right: -40px;
}
.timeline-content h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.timeline-content p {
color: var(--light-text);
line-height: 1.6;
}
.benefits {
padding: 4rem 0;
}
.benefits h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.benefit-card {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
text-align: center;
transition: var(--transition);
}
.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.benefit-icon {
color: var(--accent-color);
margin-bottom: 1rem;
}
.benefit-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.benefit-card p {
color: var(--light-text);
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
background: var(--primary-color);
color: var(--white);
padding: 3rem;
border-radius: var(--border-radius);
}
.stat-item h3 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.stat-item p {
opacity: 0.9;
}
.about-products {
padding: 4rem 0;
background: var(--bg-light);
}
.about-products h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--primary-color);
}
.about-text {
max-width: 900px;
margin: 0 auto;
}
.about-text p {
margin-bottom: 1.5rem;
color: var(--text-color);
text-align: justify;
line-height: 1.8;
font-size: 1.05rem;
}
.products {
padding: 4rem 0;
}
.products h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 2rem;
}
.product-card {
background: var(--white);
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
overflow: hidden;
transition: var(--transition);
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.product-card img {
width: 100%;
height: 300px;
object-fit: cover;
}
.product-info {
padding: 1.5rem;
}
.product-info h3 {
color: var(--primary-color);
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.product-info p {
color: var(--light-text);
margin-bottom: 1rem;
}
.product-price {
font-size: 1.5rem;
font-weight: bold;
color: var(--success);
margin-bottom: 1rem;
}
.btn-primary {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
text-align: center;
border: none;
cursor: pointer;
}
.btn-primary:hover {
background: var(--secondary-color);
}
.btn-secondary {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
text-align: center;
border: none;
cursor: pointer;
}
.btn-secondary:hover {
background: var(--primary-color);
}
footer {
background: var(--text-color);
color: var(--white);
padding: 3rem 0 1rem;
margin-top: 4rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
margin-bottom: 1rem;
color: var(--white);
}
.footer-section p {
opacity: 0.8;
line-height: 1.8;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: var(--white);
opacity: 0.8;
text-decoration: none;
transition: var(--transition);
}
.footer-section ul li a:hover {
opacity: 1;
color: var(--accent-color);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: var(--white);
transition: var(--transition);
}
.social-links a:hover {
color: var(--accent-color);
transform: translateY(-2px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
opacity: 0.8;
}
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
padding: 1.5rem;
z-index: 10000;
display: none;
}
.cookie-banner.show {
display: block;
animation: slideUp 0.4s ease;
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
}
.cookie-content h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.cookie-content p {
color: var(--light-text);
margin-bottom: 1rem;
}
.cookie-content a {
color: var(--accent-color);
text-decoration: underline;
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn-accept {
background: var(--success);
color: var(--white);
border: none;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
cursor: pointer;
font-weight: 500;
transition: var(--transition);
}
.btn-accept:hover {
background: #45a049;
}
.btn-customize {
background: var(--accent-color);
color: var(--white);
border: none;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
cursor: pointer;
font-weight: 500;
transition: var(--transition);
}
.btn-customize:hover {
background: var(--primary-color);
}
.btn-decline {
background: var(--light-text);
color: var(--white);
border: none;
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
cursor: pointer;
font-weight: 500;
transition: var(--transition);
}
.btn-decline:hover {
background: var(--text-color);
}
.product-detail {
padding: 3rem 0;
}
.product-detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.product-image img {
width: 100%;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
.product-detail-info h1 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 2.5rem;
}
.product-detail-info .product-price {
font-size: 2rem;
margin-bottom: 1.5rem;
}
.product-description {
color: var(--light-text);
margin-bottom: 2rem;
line-height: 1.8;
}
.product-actions {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}
.quantity-selector {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.quantity-selector button {
background: var(--accent-color);
color: var(--white);
border: none;
width: 40px;
height: 40px;
border-radius: var(--border-radius);
cursor: pointer;
font-size: 1.2rem;
transition: var(--transition);
}
.quantity-selector button:hover {
background: var(--primary-color);
}
.quantity-selector input {
width: 60px;
text-align: center;
border: 2px solid var(--bg-light);
border-radius: var(--border-radius);
padding: 0.5rem;
font-size: 1rem;
}
.product-features {
background: var(--bg-light);
padding: 2rem;
border-radius: var(--border-radius);
}
.product-features h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.product-features ul {
list-style: none;
}
.product-features ul li {
padding: 0.5rem 0;
color: var(--text-color);
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.product-features ul li:before {
content: '✓ ';
color: var(--success);
font-weight: bold;
margin-right: 0.5rem;
}
.cart-container {
padding: 3rem 0;
min-height: 60vh;
}
.cart-container h1 {
color: var(--primary-color);
margin-bottom: 2rem;
}
.cart-items {
background: var(--white);
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
margin-bottom: 2rem;
}
.cart-item {
display: grid;
grid-template-columns: 100px 2fr 1fr 1fr 1fr auto;
gap: 1.5rem;
padding: 1.5rem;
border-bottom: 1px solid var(--bg-light);
align-items: center;
}
.cart-item:last-child {
border-bottom: none;
}
.cart-item img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: var(--border-radius);
}
.cart-item h3 {
color: var(--primary-color);
}
.cart-item-quantity {
display: flex;
align-items: center;
gap: 0.5rem;
}
.cart-item-quantity button {
background: var(--accent-color);
color: var(--white);
border: none;
width: 30px;
height: 30px;
border-radius: 4px;
cursor: pointer;
transition: var(--transition);
}
.cart-item-quantity button:hover {
background: var(--primary-color);
}
.cart-item-quantity input {
width: 50px;
text-align: center;
border: 1px solid var(--bg-light);
border-radius: 4px;
padding: 0.25rem;
}
.remove-btn {
background: var(--danger);
color: var(--white);
border: none;
padding: 0.5rem 1rem;
border-radius: var(--border-radius);
cursor: pointer;
transition: var(--transition);
}
.remove-btn:hover {
background: #d32f2f;
}
.cart-summary {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
max-width: 400px;
margin-left: auto;
}
.cart-summary h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.summary-row {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--bg-light);
}
.summary-row.total {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-color);
border-bottom: none;
}
.empty-cart {
text-align: center;
padding: 3rem;
}
.empty-cart h2 {
color: var(--light-text);
margin-bottom: 1rem;
}
.checkout-container {
padding: 3rem 0;
}
.checkout-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 3rem;
}
.checkout-form {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
.checkout-form h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-color);
font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 0.75rem;
border: 2px solid var(--bg-light);
border-radius: var(--border-radius);
font-size: 1rem;
transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--accent-color);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.order-summary {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
height: fit-content;
position: sticky;
top: 100px;
}
.order-summary h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.order-item {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--bg-light);
}
.success-container {
padding: 4rem 0;
text-align: center;
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
}
.success-content {
background: var(--white);
padding: 3rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
max-width: 600px;
}
.success-icon {
color: var(--success);
margin-bottom: 1rem;
}
.success-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.success-content p {
color: var(--light-text);
margin-bottom: 2rem;
line-height: 1.8;
}
.contact-container {
padding: 3rem 0;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 2rem;
}
.contact-info {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
.contact-info h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.contact-item {
display: flex;
align-items: start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.contact-item svg {
color: var(--accent-color);
flex-shrink: 0;
margin-top: 0.25rem;
}
.contact-form {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
.contact-form h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.about-container {
padding: 3rem 0;
}
.about-hero {
text-align: center;
margin-bottom: 3rem;
}
.about-hero h1 {
color: var(--primary-color);
font-size: 3rem;
margin-bottom: 1rem;
}
.about-content {
background: var(--white);
padding: 3rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
margin-bottom: 3rem;
}
.about-content h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.about-content p {
color: var(--text-color);
margin-bottom: 1.5rem;
line-height: 1.8;
}
.team-section {
margin-top: 3rem;
}
.team-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
font-size: 2.5rem;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.team-member {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
text-align: center;
transition: var(--transition);
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.team-member img {
border-radius: 50%;
margin-bottom: 1rem;
object-fit: cover;
}
.team-member h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.team-member p:first-of-type {
color: var(--accent-color);
font-weight: 500;
margin-bottom: 1rem;
}
.team-member p:last-of-type {
color: var(--light-text);
line-height: 1.6;
}
.notification {
position: fixed;
top: 100px;
right: 20px;
background: var(--success);
color: var(--white);
padding: 1rem 1.5rem;
border-radius: var(--border-radius);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
z-index: 10000;
animation: slideInRight 0.4s ease;
display: none;
}
.notification.show {
display: block;
}
.notification.error {
background: var(--danger);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
@keyframes slideInRight {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@media (max-width: 768px) {
.nav-links {
gap: 1rem;
font-size: 0.9rem;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.product-grid {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.product-detail-grid {
grid-template-columns: 1fr;
}
.cart-item {
grid-template-columns: 80px 1fr;
gap: 1rem;
}
.cart-item h3 {
grid-column: 1 / -1;
}
.checkout-grid {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-columns: 1fr;
}
.form-row {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.timeline-wrapper::before {
left: 20px;
}
.timeline-item,
.timeline-item:nth-child(odd) {
flex-direction: column;
}
.timeline-date {
text-align: left;
justify-content: flex-start;
padding: 0 0 0 3rem;
}
.timeline-content::before,
.timeline-item:nth-child(odd) .timeline-content::before,
.timeline-item:nth-child(even) .timeline-content::before {
left: -40px;
}
.timeline-content {
margin-left: 3rem;
}
}