@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #d4af37;
    /* Gold */
    --primary-dark: #b5952f;
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #b5952f 100%);
    --secondary-color: #ffffff;
    --accent-color: #680b0d;
    /* Deeper richer maroon */
    --accent-gradient: linear-gradient(135deg, #7b1113 0%, #4a0000 100%);
    --bg-light: #faf9f5;
    /* Very light warm grey/cream for luxury feel */
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
    --border-color: #e5e0d8;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.15);
}

html {
    font-size: 95%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Top Bar Redesign */
.top-bar {
    background: var(--accent-gradient);
    color: var(--text-light);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.top-bar-center {
    justify-content: center;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social {
    display: flex;
    gap: 20px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.top-bar-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
}

.top-bar-gst span {
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .top-bar-center {
        display: none;
    }
}

@media (max-width: 576px) {
    .top-bar-right {
        display: none;
    }

    .top-bar {
        justify-content: center;
    }
}

.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-right {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 90px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    line-height: 1.2;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-dark);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 25px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.header-icons i {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.header-icons i:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    visibility: hidden;
}

.mobile-menu-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.1s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}


.mobile-logo {
    display: flex;
    align-items: center;
    min-height: 140px;
}

.mobile-menu-header {
    min-height: 160px;
}

.mobile-logo img {
    height: 140px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
}

.mobile-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin-bottom: auto;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-links li a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav-links li a.active {
    color: var(--primary-color);
}

.mobile-menu-footer {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.mobile-social {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.mobile-social a {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.mobile-menu-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    display: flex;
    gap: 15px;
}

.floating-contact-buttons .whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
}

.floating-contact-buttons .call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.floating-btn:hover::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ead50 100%);
    animation: pulse-glow 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.call-btn {
    background: var(--accent-gradient);
}

.call-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: url('http://swarnabhoomijewels.com/public/assets/background.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(90deg, rgba(250, 249, 245, 0.2) 0%, rgba(250, 249, 245, 0.95) 70%, rgba(250, 249, 245, 1) 100%); */
}

.hero-content {
    position: relative;
    max-width: 550px;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    animation: slideInRight 1s ease-out;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    opacity: 0.5;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    letter-spacing: 2px;
    line-height: 1.1;
    font-style: italic;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #444;
    font-weight: 300;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--accent-gradient);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* Section Shared Styles */
.section {
    padding: 80px 5%;
    background-color: var(--bg-white);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Shop by Category (Circular Layout) */
.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.category-circle-card {
    text-align: center;
    width: 260px;
    animation: fadeInUp 0.8s ease-out backwards;
}

.category-circle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-circle-card:nth-child(2) {
    animation-delay: 0.3s;
}

.category-circle-card:nth-child(3) {
    animation-delay: 0.5s;
}

.category-image-wrapper {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 2px solid transparent;
    padding: 8px;
    transition: var(--transition);
    background: linear-gradient(white, white) padding-box,
        var(--primary-gradient) border-box;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 1s ease;
}

.category-circle-card:hover .category-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.category-circle-card:hover .category-image-wrapper img {
    transform: scale(1.15) rotate(3deg);
}

.category-circle-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.category-circle-card:hover h3 {
    color: var(--primary-dark);
}

/* Featured Products & All Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 0 0 25px 0;
    position: relative;
    border-radius: 2px;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.product-card:hover::after {
    width: 100%;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 100%);
    margin-bottom: 25px;
    transition: transform 0.8s ease;
    padding: 20px;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 0 25px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

.enquire-btn {
    padding: 12px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-color);
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
}

.enquire-btn:hover {
    background: var(--primary-gradient);
    color: var(--text-light);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Category Headings in All Products */
.category-heading {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.category-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Redesign */
.footer {
    background: var(--accent-gradient);
    color: var(--bg-white);
    padding: 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-top {
    padding: 60px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-newsletter {
    max-width: 700px;
    margin: 0 auto;
}

.footer-newsletter h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Lato', sans-serif;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 5% 60px;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    /* font-size: 1.5rem; */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: var(--accent-color);
    border-color: transparent;
    transform: translateY(-5px) rotate(360deg);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.contact-info p {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.gst-tag {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.footer-bottom {
    padding: 30px 5%;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Page Header for specific pages (like Products) */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('http://swarnabhoomijewels.com/public/assets/background4.png') center/cover no-repeat;
    overflow: hidden;
}

/* Dark + Gradient Overlay (Fixes visibility) */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(89, 5, 6, 0.6));
}

/* Content Wrapper */
.page-header-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Heading */
.page-header h1 {
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

/* Optional subtitle (future use) */
.page-header p {
    color: #eee;
    margin-top: 10px;
}

/* About Us Enhancements */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text h3 {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    border-radius: 4px;
}

.feature-card {
    padding: 40px 30px;
}

/* Shop by Category (Circular Layout) */
.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.category-circle-card {
    text-align: center;
    width: 220px;
    transition: var(--transition);
}

.category-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 1px solid var(--border-color);
    padding: 10px;
    background: #fff;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.category-circle-card:hover .category-image-wrapper {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.category-circle-card:hover img {
    transform: scale(1.1);
}

.category-circle-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

/* Trust / Promises Section */
.promises-section {
    background-color: #faf9f6;
    padding: 80px 5%;
    text-align: center;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.promise-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.promise-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Blog Redesign */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

.read-more-link {
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-dark);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Blog Detail Page */
.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--accent-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.blog-detail-content blockquote {
    padding: 30px 40px;
    background: #fdfaf5;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 40px 0;
    font-family: 'Playfair Display', serif;
}

/* Sidebar Styling */
.sidebar-widget {
    background: white;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
}

.recent-post-info h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }

    .hero {
        justify-content: center;
        background-position: 70% center;
    }

    /*.hero::before {
        background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
    }*/

    .hero-content {
        margin-top: 50px;
        padding: 40px 30px;
    }

    .about-content {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        padding: 15px 5%;
        /*justify-content: center;*/
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .header-right {
        position: absolute;
        right: 5%;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-container img {
        height: 65px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 50px 5%;
    }

    .category-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .about-content-reverse {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }





    .floating-contact-buttons .whatsapp-btn {
        left: 15px;
        bottom: 15px;
    }

    .floating-contact-buttons .call-btn {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}