:root {
    --black: #000;
    --white: #fff;
    --gold: #D4AF37;
    --light-gray: #f5f5f5;
    --dark-gray: #222;
}

/* Base Styles */
body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--black);
}

/* Header Styles */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(255,255,255,0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    position: relative;
}

.logo:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover:after {
    transform: scaleX(1);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover:after {
    transform: scaleX(1);
}

.cart-icon {
    position: relative;
    margin-left: 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: var(--light-gray);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../images/srjgoe.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}


.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Product Grid */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.product-price {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.buy-now {
    background: var(--gold);
    color: var(--black);
    display: block;
    width: 100%;
}

.buy-now:hover {
    background: #c9a227;
    color: var(--black);
}

.view-all {
    text-align: center;
    margin: 50px 0;
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    font-family: inherit;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #c9a227;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
}
/* Product Page Styles */
.product-page {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--gold);
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rating {
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.stock-status {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-status.in-stock {
    color: #28a745;
}

.stock-status.out-of-stock {
    color: #dc3545;
}

.price-section {
    margin-bottom: 25px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin: 5px 0;
    font-size: 1.2rem;
}

.discount {
    color: #28a745;
    font-weight: bold;
    margin: 0;
}

.description h3, .specifications h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.description-content {
    line-height: 1.7;
}

.specifications ul {
    list-style: none;
    padding: 0;
}

.specifications li {
    margin-bottom: 10px;
    display: flex;
}

.specifications li strong {
    min-width: 150px;
    color: #666;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.product-actions .btn {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.product-share a {
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.product-share a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.related-products {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        gap: 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


.shop {
    padding: 60px 0;
    background: #f8f8f8;
}

.page-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card .price {
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.product-card .btn {
    display: inline-block;
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}


@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}




/* Blog Styles */
.blog-hero {
    padding: 60px 0;
    background: var(--light-gray);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-content {
    padding: 20px;
}

.category-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-listing {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card .post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .post-image img {
    transform: scale(1.05);
}

.blog-card .post-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-card .post-content {
    padding: 20px;
}

.blog-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.blog-card .excerpt {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    background: white;
    color: var(--black);
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

/* Single Post Styles */
.blog-single {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.blog-single .featured-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-single .featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tags a {
    color: var(--gold);
    text-decoration: none;
    margin-right: 10px;
}

.sharing a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-left: 10px;
    color: var(--black);
    transition: all 0.3s ease;
}

.sharing a:hover {
    background: var(--gold);
    color: white;
}

.related-posts {
    margin-top: 80px;
}

.related-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.related-card .post-image {
    height: 150px;
    overflow: hidden;
}

.related-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .post-image img {
    transform: scale(1.05);
}

.related-card h4 {
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        order: -1;
        padding: 0 0 30px 0;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-footer {
        flex-direction: column;
    }
    
    .sharing {
        margin-top: 20px;
    }
}