:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #f5f5f5;
    --text-color: #333;
    --light-gray: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-accept:hover {
    background: #c29d2f;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.logo img {
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Sections */
.features-section,
.detailed-description,
.inspiration-section,
.products-section,
.testimonials-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Detailed Description */
.detailed-description {
    background: var(--light-gray);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    color: var(--secondary-color);
    margin: 30px 0 20px;
    font-size: 2rem;
}

.description-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.quality-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.guarantee-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
}

.guarantee-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Inspiration Section */
.inspiration-section {
    background: var(--secondary-color);
    color: white;
}

.inspiration-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.inspiration-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.inspiration-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.inspiration-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inspiration-card p {
    font-style: italic;
    line-height: 1.8;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: white;
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--primary-color);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 10px 0;
    color: var(--secondary-color);
}

.product-description {
    color: #666;
    margin: 10px 0;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-cart,
.btn-buy {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn-cart {
    background: var(--secondary-color);
    color: white;
}

.btn-cart:hover {
    background: #333;
}

.btn-buy {
    background: var(--primary-color);
    color: var(--secondary-color);
    display: inline-block;
}

.btn-buy:hover {
    background: #c29d2f;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-detail-info {
    position: sticky;
    top: 100px;
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.product-detail-description {
    margin: 30px 0;
    line-height: 1.8;
}

.product-features {
    margin: 30px 0;
}

.product-features h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
}

.detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.detail-actions .btn-cart,
.detail-actions .btn-buy {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
}

/* Cart Page */
.cart-container {
    padding: 80px 0;
    min-height: 60vh;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-empty {
    text-align: center;
    padding: 100px 20px;
}

.cart-empty i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.cart-item-image img {
    width: 100%;
    border-radius: 5px;
}

.cart-item-details h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
}

.cart-item-remove {
    text-align: right;
}

.item-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-remove {
    background: var(--error-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove:hover {
    background: #d32f2f;
}

.cart-summary {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-checkout:hover {
    background: #c29d2f;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Checkout */
.checkout-container {
    padding: 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-place-order {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-place-order:hover {
    background: #c29d2f;
}

.order-summary-checkout {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary-checkout h2 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.order-item-details p {
    font-size: 0.9rem;
    color: #666;
}

/* Success Page */
.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.success-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-continue {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-continue:hover {
    background: #c29d2f;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-section h1 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info-text p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #c29d2f;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Blog Post Styles */
.blog-post-container {
    padding: 80px 0;
}

.blog-post-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-date,
.post-read-time {
    color: #666;
    font-size: 0.9rem;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
}

.author-title {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.post-featured-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 40px;
}

.post-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-left: 5px solid var(--primary-color);
}

.blog-post-content h2 {
    color: var(--secondary-color);
    margin: 40px 0 20px;
    font-size: 2rem;
}

.blog-post-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.blog-post-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.blog-callout {
    background: #fff9e6;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.blog-callout i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.blog-quote {
    margin: 40px 0;
    padding: 40px;
    background: var(--light-gray);
    border-left: 5px solid var(--primary-color);
}

.blog-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--secondary-color);
}

.blog-quote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

.post-conclusion {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.post-conclusion h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.post-tags {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.post-tags h4 {
    display: inline-block;
    margin-right: 15px;
    color: var(--secondary-color);
}

.post-tags a {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.post-share {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.post-share h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.pinterest {
    background: #bd081c;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-posts h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 20px;
}

.related-post-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-card a:hover {
    color: var(--primary-color);
}

.related-post-meta {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .product-detail-grid,
    .checkout-grid,
    .contact-grid,
    .cart-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }
}