/* Main styles */
:root {
    --primary-color: #2C5530;
    --secondary-color: #8B9D83;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --background-light: #FAFAFA;
    --background-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
    --border-radius-small: 8px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0;
}

.top-bar-info span,
.top-bar-actions span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i,
.top-bar-actions i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.top-bar-actions span:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar-info span,
    .top-bar-actions span {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Enhanced Navbar */
.navbar {
    background-color: var(--background-white);
    box-shadow: var(--shadow-light);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.navbar-brand:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.navbar-brand:hover i {
    color: var(--primary-color);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 1.5rem 1.25rem;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(44, 85, 48, 0.05);
    transform: none;
}

.nav-link:hover i {
    color: var(--primary-color);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Enhanced Search Form */
.search-form {
    position: relative;
    margin: 0 1rem;
}

.search-form .input-group {
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.search-form .form-control {
    border: none;
    border-radius: 0;
    padding: 0.75rem 1rem;
    width: 280px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--background-white);
}

.search-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.search-form .btn {
    border: none;
    background: var(--primary-color);
    color: var(--background-white);
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: var(--secondary-color);
    transform: none;
}

/* Enhanced Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.snipcart-checkout {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    padding: 0.75rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.snipcart-checkout:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.snipcart-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: left 0.5s ease;
}

.snipcart-checkout:hover::before {
    left: 100%;
}

.snipcart-items-count {
    background-color: var(--accent-color);
    color: var(--background-white);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    text-align: center;
}

/* Breadcrumb Container */
.breadcrumb-container {
    margin-top: 100px; /* Reduced space for fixed navbar + top bar */
    padding: 0.5rem 0; /* Reduced padding */
}

/* Enhanced Breadcrumb */
.breadcrumb {
    margin: 0;
    padding: 0.5rem 0; /* Reduced padding */
    background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item a:hover i {
    color: var(--primary-color);
}

.breadcrumb-item.active a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d1e 100%);
    color: var(--background-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer address {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    line-height: 1.8;
}

.footer address i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 16px;
}

/* Enhanced Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--background-white);
    padding: 1.5rem 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-consent .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-consent .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cookie-consent .btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent .btn-link:hover {
    color: var(--secondary-color);
}

/* Enhanced Product Page Styles */
.product-page {
    padding: 3rem 0;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 2rem 0;
}

.product-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

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

.product-details h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.product-details .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-details .price::before {
    content: 'kr';
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-details .description {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.product-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--background-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.card-img-top {
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Buttons */
.btn {
    border-radius: var(--border-radius-small);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--background-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    margin-top: 0.5rem; /* Reduced top margin */
    height: 600px; /* Increased height */
}

.carousel-item {
    position: relative;
    height: 600px; /* Increased height */
}

.carousel-item img {
    height: 600px; /* Increased height */
    object-fit: cover;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.3), rgba(139, 157, 131, 0.3));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-heavy);
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    top: auto;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    margin-right: 0.5rem;
}

/* Green text for second button in carousel */
.hero-buttons .btn:nth-child(2) {
    color: var(--primary-color) !important;
}

.hero-buttons .btn:nth-child(2):hover {
    color: var(--secondary-color) !important;
}

/* Features Section */
.features-section {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 4rem 0;
}

.feature-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--background-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Category Cards */
.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: var(--background-white);
    height: 400px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.category-card img {
    transition: transform 0.3s ease;
    height: 100%;
    object-fit: cover;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 85, 48, 0.95));
    color: var(--background-white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.category-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.category-cta i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-cta i {
    transform: translateX(5px);
}

/* Enhanced Product Cards */
.product-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--background-white);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    transition: transform 0.3s ease;
    height: 250px;
    object-fit: cover;
}

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

.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateX(0);
}

.product-overlay .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    transform: scale(1.1);
}

.product-category {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

.product-card .card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .price-old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.product-rating .rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.product-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.product-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-card .btn-primary i {
    margin-right: 0.5rem;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter-section h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-control {
    border: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
    background: var(--background-white);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    background: var(--accent-color);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.newsletter-form .btn i {
    margin-right: 0.5rem;
}

.newsletter-form small {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Enhanced Service Highlights */
.service-highlights {
    padding: 4rem 0;
    background: var(--background-white);
    border-radius: var(--border-radius);
    margin: 4rem 0;
    box-shadow: var(--shadow-light);
}

.service-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-small);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(44, 85, 48, 0.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--background-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Enhanced Buttons */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid var(--background-white);
    color: var(--background-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--background-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .nav-link {
        padding: 1rem;
        margin: 0;
    }
    
    .nav-buttons {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .breadcrumb-container {
        margin-top: 80px; /* Reduced space on mobile */
    }
    
    .carousel-caption {
        padding: 2rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-details h1 {
        font-size: 2rem;
    }
    
    .product-details .price {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-card {
        height: 300px;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
    
    .hero-section,
    .carousel-item,
    .carousel-item img {
        height: 400px; /* Smaller height on mobile */
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}
