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

        :root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #1a1a1a;
            --accent-bg: #2a2a2a;
            --card-bg: #141414;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --text-muted: #808080;
            --accent-color: #ffffff;
            --border-color: #333333;
            --hex-color: #404040;
            --gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --dw-header-offset: 0px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

/* Hexagon Background Elements */
.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 1px 1px, var(--hex-color) 1px, transparent 0);
    background-size: 60px 60px;
    z-index: 1;
}

.floating-hex {
    position: absolute;
    width: 40px;
    height: 23px;
    background: transparent;
    border: 1px solid var(--hex-color);
    opacity: 0.1;
    animation: hexDrift 15s linear infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes hexDrift {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.bg-floating-hex {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    z-index: 2;
    animation: hexFloat 25s linear infinite, colorRotate 20s ease-in-out infinite;
}

@keyframes hexFloat {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.8; 
    }
    95% { 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(-120px) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes colorRotate {
    0% { 
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
    33% { 
        border-color: rgba(128, 128, 128, 0.1);
        background: rgba(128, 128, 128, 0.05);
    }
    66% { 
        border-color: rgba(64, 64, 64, 0.1);
        background: rgba(64, 64, 64, 0.05);
    }
    100% { 
        border-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
}

        /* Header */
        header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(15px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
			padding: 5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }
		
		a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }
		
		a:hover {
            color: var(--text-primary);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .hero .tagline {
            font-size: 1.8rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .cta-primary, .cta-secondary {
            padding: 18px 35px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--border-color);
        }

        .cta-primary {
            background: var(--text-primary);
            color: var(--primary-bg);
            border-color: var(--text-primary);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
			color: #000000;
            box-shadow: var(--shadow);
        }

        .cta-secondary {
            background: transparent;
            color: var(--text-primary);
        }

        .cta-secondary:hover {
            background: var(--accent-bg);
            transform: translateY(-2px);
        }

        /* Why Choose Us Section */
        .why-us {
            padding: 100px 0;
            background: var(--secondary-bg);
            position: relative;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .why-card {
            text-align: center;
            padding: 2rem;
        }

        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--accent-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid var(--border-color);
			.feature-icon svg:hover,

  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  transform: scale(1.05);
  transition: all 0.2s ease;



        }

        .why-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .why-card p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background: var(--primary-bg);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--text-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--text-primary);
            box-shadow: var(--shadow);
            background: var(--secondary-bg);
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .product-card h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            font-weight: 700;
            flex: 1;
        }

        .status-badge {
            background: var(--accent-bg);
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
            margin-left: 1rem;
            white-space: nowrap;
        }

        .product-card p {
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            color: var(--text-secondary);
            padding: 0.5rem 0;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-item::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--text-primary);
            font-weight: bold;
        }

        .product-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pricing {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .more-info-btn {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .more-info-btn:hover {
            background: var(--accent-bg);
            border-color: var(--text-primary);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--secondary-bg);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .photo-placeholder {
            background: var(--accent-bg);
            border: 2px dashed var(--border-color);
            border-radius: 12px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }

        .photo-placeholder:hover {
            border-color: var(--text-primary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--card-bg);
            margin: 5% auto;
            padding: 3rem;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
        }

        .modal-title {
            font-size: 2rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .close {
            color: var(--text-muted);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: var(--text-primary);
        }

        .modal-body h4 {
            font-size: 1.4rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
        }

        .modal-body p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .modal-body ul {
            color: var(--text-secondary);
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--primary-bg);
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact-item strong {
            color: var(--text-primary);
            margin-right: 1rem;
            min-width: 80px;
        }

        .contact-form {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: var(--primary-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            font-size: 1rem;
        }

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

        .submit-btn {
            background: var(--text-primary);
            color: var(--primary-bg);
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

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

        /* Footer */
        footer {
            background: var(--primary-bg);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
        }

        footer p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 2px solid var(--border-color);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--text-primary);
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookie-btn.accept {
    background: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
}

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.cookie-btn.decline:hover {
    background: var(--accent-bg);
    color: var(--text-primary);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.cookie-btn.settings:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.cookie-modal-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-category h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-bg);
    transition: 0.3s;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--text-primary);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
    background-color: var(--primary-bg);
}

.cookie-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.post-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-left {
  flex: 1 1 40%;
  max-width: 500px;
}

.post-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-short-desc,
.product-long-desc {
  color: var(--text-primary);
}

.product-cart {
  margin-top: 1rem;
}

.blog-post-layout {
  color: var(--text-primary);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto; /* This centres it */
  max-width: 1200px;
  box-shadow: 0 0 0 1px var(--border-color);
  width: calc(100% - 2rem); /* Take full width minus margins */
}

/* Image at top-left, not centred */
.post-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start; /* Image at top-left */
  flex-wrap: wrap;
}

.post-image {
  flex: 0 0 400px;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px var(--border-color);
  position: relative;
}

.post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-image .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 3;
}

.post-image .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #111111;
  transform: translateY(6px);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 18a8 8 0 1 1 0-16a8 8 0 0 1 0 16m0-2a6 6 0 1 0 0-12a6 6 0 0 0 0 12m9.707 4.293l-5.387-5.387a1 1 0 0 1 1.414-1.414l5.387 5.387a1 1 0 0 1-1.414 1.414'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 18a8 8 0 1 1 0-16a8 8 0 0 1 0 16m0-2a6 6 0 1 0 0-12a6 6 0 0 0 0 12m9.707 4.293l-5.387-5.387a1 1 0 0 1 1.414-1.414l5.387 5.387a1 1 0 0 1-1.414 1.414'/%3E%3C/svg%3E") center / contain no-repeat;
}

.post-image .woocommerce-product-gallery__trigger:hover {
  transform: translateY(-1px);
}

.post-image .woocommerce-product-gallery__trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.post-image .woocommerce-product-gallery {
  margin: 0;
}

.post-image .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.post-image .woocommerce-product-gallery__image {
  margin: 0;
}

.post-image .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: transparent;
  border-top: 1px solid var(--border-color);
}

.post-image .flex-control-thumbs li {
  flex: 0 0 72px;
  max-width: 72px;
}

.post-image .flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.post-image .flex-control-thumbs img.flex-active {
  border-color: rgba(255, 255, 255, 0.35);
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--highlight);
}

.short-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.product-meta {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.product-status {
  display: inline-block;
  background: var(--badge-bg, #333);
  color: var(--badge-text, #fff);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.out-of-stock {
  color: red;
  font-weight: bold;
  font-size: 1rem;
}

.single_add_to_cart_button {
  background: var(--button-bg, #007acc);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.single_add_to_cart_button:hover {
  background: var(--button-hover-bg, #005fa3);
}

.site-main{
	padding-top: 50px;
}

.blog-card-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--text-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: row;
  background: var(--card-bg, #111);
  color: var(--text-primary, #fff);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  transform: translateY(0);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--text-primary);
  box-shadow: var(--shadow);
  background: var(--secondary-bg);
  cursor: pointer;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-4px);
  border: 1px solid rgba(255, 255, 255, 1.0);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.05);
}

.blog-card .blog-thumb {
  flex: 0 0 250px;
  height: 200px;
  background: var(--card-bg-lighter, #181818);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-thumb {
  overflow: hidden;
}

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

.blog-card:hover .blog-thumb img {
  transform: scale(1.5);
}

.blog-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card .blog-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--text-primary, #fff);
}

.blog-card .blog-excerpt {
  margin: 0;
  color: var(--text-secondary, #ccc);
  line-height: 1.6;
}

code {
  display: block;
  background: #0a0a0a;
  color: #f8f8f2;
  padding: 1rem;
  border-radius: 10px;
  font-family: monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  transition: all 0.2s ease;
  transform: scale(1);
  box-shadow: none;
  border-top: 3px solid transparent;
  border: 1px solid var(--border-color);
}

code:hover {
  transform: scale(1.01);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.6);
  border-top: 3px solid #fff;
}

/* Contact Form 7 Styling */
.contact-form {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 40px 30px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px #1b1b1b inset;
}

.contact-form .wpcf7-form p {
  margin-bottom: 24px;
}

.contact-form .wpcf7-form label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  color: #f5f5f5;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #111;
  border: 1px solid #444;
  border-radius: 4px;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease-in-out;
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
  border-color: #888;
  outline: none;
}

.contact-form .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .wpcf7-submit {
  width: 100%;
  background: white;
  color: black;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  margin-top: 10px;
}

.contact-form .wpcf7-submit:hover {
  background: #e5e5e5;
}

.contact-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  color: #f5f5f5;
}

.contact-form .screen-reader-response {
  display: none;
}

/* MAIN NAV */
#main-nav .main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#main-nav .main-menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#main-nav .main-menu li a {
color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

#main-nav .main-menu li a:hover {
  color: var(--accent-color);
}

.header-inner.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-logo{
	height:80px;
	width:auto;
	padding:5px;
	font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
	padding: 5px;
}

/* WOOCOMMERCE PRODUCT GRID - PROPER WAY */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
  list-style: none;
}

/* WOOCOMMERCE PRODUCT ITEMS */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
  margin: 0;
  width: auto;
  float: none;
}

.woocommerce ul.products li.product::before,
.woocommerce-page ul.products li.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.woocommerce ul.products li.product:hover::before,
.woocommerce-page ul.products li.product:hover::before {
  transform: scaleX(1);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-10px);
  border-color: var(--text-primary);
  box-shadow: var(--shadow);
  background: var(--secondary-bg);
}

/* WOOCOMMERCE PRODUCT LINKS */
.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* WOOCOMMERCE PRODUCT IMAGES */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
  background: transparent;
  padding: 0;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  display: block;
}

.woocommerce ul.products li.product a img.woocommerce-placeholder,
.woocommerce-page ul.products li.product a img.woocommerce-placeholder {
  filter: invert(1) brightness(0.9) contrast(1.1);
  opacity: 0.9;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img {
  transform: scale(1.05);
}

/* WOOCOMMERCE PRODUCT TITLES */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  flex-grow: 1;
}

/* WOOCOMMERCE PRODUCT PRICES */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0.5rem 0;
}

/* WOOCOMMERCE ADD TO CART BUTTONS */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  background: var(--text-primary);
  color: var(--primary-bg);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: var(--text-secondary);
  transform: translateY(-2px);
}

/* CUSTOM PRODUCT GRID FOR YOUR PHP TEMPLATE */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
}

.product-grid .product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-grid .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.product-grid .product-card:hover::before {
  transform: scaleX(1);
}

.product-grid .product-card:hover {
  transform: translateY(-10px);
  border-color: var(--text-primary);
  box-shadow: var(--shadow);
  background: var(--secondary-bg);
}

.product-grid .product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  gap: 1rem;
}

.product-grid .product-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 4px;
  min-height: 200px;
  overflow: hidden;
}

.product-grid .product-thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.product-grid .product-thumb img.woocommerce-placeholder {
  filter: invert(1) brightness(0.9) contrast(1.1);
  opacity: 0.9;
}

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

.product-grid .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  gap: 0.5rem;
}

.product-grid .product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.product-grid .product-info .price {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
/* RESPONSIVE BREAKPOINTS FOR WOOCOMMERCE */
@media (max-width: 1024px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .tagline {
        font-size: 1.4rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        min-width: 80px;
        padding: 10px 16px;
    }

    .post-wrapper {
        flex-direction: column;
    }

    .post-image,
    .post-content {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        padding: 1.2rem;
    }
    
    .woocommerce ul.products li.product h2,
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce-page ul.products li.product h2,
    .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.1rem !important;
    }
    
    .woocommerce ul.products li.product .price,
    .woocommerce-page ul.products li.product .price {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .product-grid .product-card {
        padding: 1.2rem;
    }
    
    .product-grid .product-title {
        font-size: 1.1rem;
    }
    
    .product-grid .product-info .price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        max-width: 100%;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-grid .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Animations */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--dw-header-offset) + 16px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HOMEPAGE PRODUCTS - MATCH THE WORKING DESIGN */

/* Product card link takes full height */
.product-card-home .product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Product description styling */
.product-card-home .product-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  flex-grow: 0;
}

/* Features grid - this is what makes it look like image 2 */
.product-card-home .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-card-home .feature-item {
  color: var(--text-secondary);
  padding: 0.4rem 0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.4;
}

.product-card-home .feature-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-weight: bold;
  font-size: 0.9rem;
}

/* Product footer stays at bottom */
.product-card-home .product-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* Pricing styling */
.product-card-home .pricing {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* More info button styling */
.product-card-home .more-info-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-home:hover .more-info-btn {
  background: var(--accent-bg);
  border-color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-card-home .features-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .product-card-home .feature-item {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
  
  .product-card-home .product-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* MOBILE HEADER STYLES */

/* Hide hamburger by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between; /* This spaces them out properly! */
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

/* Hamburger to X animation - ACTUALLY CENTERED! */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Update header layout for mobile */
@media (max-width: 768px) {
  /* Fix header container - no squishing! */
  .header-inner.container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 80px;
    padding: 0 20px;
  }

  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  /* Centre the logo properly */
  #header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  /* Hide desktop navigation */
  #main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0; /* LEFT SIDE - we're in England! */
    width: 280px;
    height: 100vh;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color); /* Right border now */
    z-index: 1000;
    transform: translateX(-100%); /* Slide in from left */
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
  }

  /* Show mobile navigation when open */
  #main-nav.mobile-open {
    display: block;
    transform: translateX(0);
  }

  /* Mobile menu styling */
  #main-nav .main-menu {
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
  }

  #main-nav .main-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  #main-nav .main-menu li:last-child {
    border-bottom: none;
  }

  #main-nav .main-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    border: none;
  }

  #main-nav .main-menu li a:hover {
    color: var(--accent-color);
    background: var(--accent-bg);
    padding-left: 1rem;
    transition: all 0.3s ease;
  }

  /* Keep logo size consistent - no squishing! */
  .custom-logo {
    height: 60px;
    width: auto;
    max-width: none;
  }

  /* Ensure header doesn't collapse */
  header {
    min-height: 80px;
  }
}

/* Desktop styles remain unchanged */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }

  #main-nav {
    display: block !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }
}



/* MOBILE BLOG CARD LAYOUT */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column; /* Stack vertically */
    max-width: 100%;
  }

  .blog-card .blog-thumb {
    flex: none; /* Remove flex sizing */
    width: 100%; /* Full width */
    height: 200px; /* Fixed height */
    order: 1; /* Image first */
  }

  .blog-info {
    order: 2; /* Text below image */
    padding: 1.5rem;
  }

  .blog-card .blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .blog-card .blog-excerpt {
    /* Fade out effect with text clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    max-height: 4.5rem; /* 3 lines worth */
    line-height: 1.5;
  }

  /* Add fade out gradient */
  .blog-card .blog-excerpt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5rem; /* One line height */
    background: linear-gradient(transparent, var(--card-bg));
    pointer-events: none;
  }

  /* Alternative fade method if the above doesn't work */
  .blog-card .blog-excerpt {
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .blog-card .blog-thumb {
    height: 150px; /* Smaller image */
  }

  .blog-info {
    padding: 1rem;
  }

  .blog-card .blog-title {
    font-size: 1.1rem;
  }

  .blog-card .blog-excerpt {
    -webkit-line-clamp: 2; /* Even less text */
    max-height: 3rem; /* 2 lines */
    font-size: 0.9rem;
  }
}

/* Better spacing for mobile */
@media (max-width: 768px) {
  .blog-post-layout {
    margin: 1rem auto; /* Keep auto centering */
    padding: 1.5rem;
    width: calc(100% - 2rem);
  }
  
  .post-wrapper {
    gap: 2rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-post-layout {
    margin: 0.5rem auto; /* Keep auto centering */
    padding: 1rem;
    width: calc(100% - 2rem);
  }
}
