        /* ============================================ */				
        /* RESET & BASE STYLES                          */				
        /* ============================================ */				
				
        * {				
            margin: 0;				
            padding: 0;				
            box-sizing: border-box;				
        }				
				
        body {				
            background-color: #FDFBF7;				
            color: #333333;				
            line-height: 1.6;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
        }				
				
        body.menu-open {				
            overflow: hidden;				
        }				
				
        /* ============================================ */				
        /* CSS VARIABLES (THEME)                        */				
        /* ============================================ */				
				
        :root {				
            --navy-dark: #1F2937;				
            --navy-main: #2C3E50;				
            --navy-light: #34495E;				
            --gold-primary: #B08D57;				
            --gold-light: #C5A059;				
            --gold-bright: #D4AF37;				
            --champagne-border: #E8DCC8;				
            --bg-ivory: #FDFBF7;				
            --bg-soft: #F9F7F2;				
            --text-dark: #333333;				
            --text-medium: #555555;				
            --white: #FFFFFF;				
        }				
				
        /* ============================================ */				
        /* HEADER & NAVIGATION                          */				
        /* ============================================ */				
				
        .site-header {				
            background-color: var(--white);				
            border-bottom: 1px solid var(--champagne-border);				
            padding: 0.75rem 0;				
            position: sticky;				
            top: 0;				
            z-index: 100;				
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);				
        }				
				
        .header-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            gap: 2rem;				
        }				
				
        .logo-section {				
            display: flex;				
            align-items: center;				
            gap: 0.5rem;				
            flex-shrink: 0;				
        }				
				
        .logo-section img {				
            width: auto;				
            height: 40px;				
            max-width: 220px;				
            object-fit: contain;				
            display: block;				
        }				
				
        .search-wrapper {				
            flex: 1;				
            max-width: 650px;				
            margin: 0 auto;				
            position: relative;				
        }				
				
        .search-box {				
            display: flex;				
            align-items: center;				
            background: var(--bg-soft);				
            border-radius: 4px;				
            padding: 5px;				
            border: 1px solid var(--champagne-border);				
            transition: all 0.3s ease;				
            height: 42px;				
        }				
				
        .search-box:hover,				
        .search-box:focus-within {				
            box-shadow: 0 2px 12px rgba(176, 141, 87, 0.15);				
            border-color: var(--gold-primary);				
            background: var(--white);				
        }				
				
        .search-box input {				
            flex: 1;				
            border: none;				
            outline: none;				
            padding: 12px 15px;				
            font-size: 0.95rem;				
            background: transparent;				
            color: var(--text-dark);				
            height: 100%;				
        }				
				
        .search-box button {				
            background: var(--navy-main);				
            border: none;				
            border-radius: 2px;				
            padding: 0 20px;				
            cursor: pointer;				
            color: var(--white);				
            transition: all 0.3s ease;				
            font-weight: 500;				
            font-size: 0.9rem;				
            display: flex;				
            align-items: center;				
            gap: 5px;				
            height: 100%;				
        }				
				
        .search-box button:hover {				
            background: var(--navy-light);				
        }				
				
        .search-box button svg {				
            width: 18px;				
            height: 18px;				
            stroke: var(--white);				
        }				
				
        .search-button-text {				
            display: inline-block;				
        }				
				
        .share-button {				
            display: flex;				
            align-items: center;				
            gap: 0.5rem;				
            background: transparent;				
            border: 1px solid var(--gold-primary);				
            border-radius: 4px;				
            padding: 0.6rem 1.2rem;				
            cursor: pointer;				
            transition: all 0.3s;				
            justify-content: center;				
            color: var(--gold-primary);				
        }				
				
        .share-button:hover {				
            background: var(--gold-primary);				
            color: var(--white);				
            transform: translateY(-2px);				
            box-shadow: 0 4px 12px rgba(176, 141, 87, 0.3);				
        }				
				
        .share-button svg {				
            width: 16px;				
            height: 16px;				
            stroke: currentColor;				
        }				
				
        .share-button span {				
            font-weight: 500;				
            font-size: 0.9rem;				
        }				
				
        .mobile-menu-toggle {				
            display: none;				
            background: transparent;				
            border: 1px solid var(--gold-primary);				
            border-radius: 4px;				
            padding: 0.5rem 1rem;				
            cursor: pointer;				
            color: var(--navy-main);				
            touch-action: manipulation;				
        }				
				
        .mobile-menu-toggle svg {				
            width: 20px;				
            height: 20px;				
        }				
				
        .nav-overlay {				
            display: none;				
            position: fixed;				
            top: 0;				
            left: 0;				
            width: 100%;				
            height: 100%;				
            background: rgba(31, 41, 55, 0.6);				
            z-index: 998;				
            opacity: 0;				
            transition: opacity 0.3s;				
        }				
				
        .nav-overlay.active {				
            display: block;				
            opacity: 1;				
        }				
				
        .nav-bar {				
            background: linear-gradient(135deg, var(--navy-main) 0%, var(--navy-light) 100%);				
            border-bottom: 2px solid var(--gold-primary);				
            position: sticky;				
            top: 60px;				
            z-index: 99;				
        }				
				
        .nav-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: flex;				
            justify-content: center;				
            align-items: center;				
        }				
				
        .nav-menu {				
            display: flex;				
            list-style: none;				
            gap: 0.1rem;				
            justify-content: center;				
            flex-wrap: wrap;				
        }				
				
        .nav-item {				
            position: static;				
        }				
				
        .menu-main-link {				
            display: inline-flex;				
            align-items: center;				
            gap: 0.3rem;				
            padding: 1rem 1.1rem;				
            text-decoration: none;				
            color: #E2E8F0;				
            font-weight: 500;				
            font-size: 0.85rem;				
            letter-spacing: 0.5px;				
            text-transform: uppercase;				
            border-bottom: 2px solid transparent;				
            transition: all 0.2s;				
            white-space: nowrap;				
            background: none;				
            cursor: pointer;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
        }				
				
        .menu-main-link:hover {				
            border-bottom-color: var(--gold-primary);				
            color: var(--white);				
            background: rgba(176, 141, 87, 0.1);				
        }				
				
        .dropdown-arrow-btn {				
            display: none;				
            background: transparent;				
            border: none;				
            padding: 0.8rem 1rem;				
            cursor: pointer;				
            color: #E2E8F0;				
            transition: all 0.2s;				
            touch-action: manipulation;				
        }				
				
        .dropdown-arrow-btn:hover {				
            background: rgba(176, 141, 87, 0.2);				
        }				
				
        .dropdown-arrow-btn svg {				
            width: 16px;				
            height: 16px;				
            transition: transform 0.3s;				
            stroke: currentColor;				
        }				
				
        .nav-item.active .dropdown-arrow-btn svg {				
            transform: rotate(180deg);				
        }				
				
        .chevron-down-svg {				
            margin-left: 0.3rem;				
            width: 16px;				
            height: 16px;				
            transition: transform 0.3s;				
            stroke: #E2E8F0;				
        }				
				
        .mobile-nav-header {				
            display: none;				
            justify-content: space-between;				
            align-items: center;				
            padding: 1rem 1.5rem;				
            border-bottom: 1px solid var(--gold-primary);				
            background: var(--white);				
        }				
				
        .mobile-nav-header h3 {				
            font-size: 1.1rem;				
            color: var(--navy-main);				
        }				
				
        .mobile-close-btn {				
            background: transparent;				
            border: none;				
            cursor: pointer;				
            color: var(--text-medium);				
            width: 40px;				
            height: 40px;				
            display: flex;				
            align-items: center;				
            justify-content: center;				
            border-radius: 50%;				
            touch-action: manipulation;				
        }				
				
        .mobile-close-btn:hover {				
            background: var(--bg-soft);				
            color: var(--navy-main);				
        }				
				
        .mobile-close-btn svg {				
            width: 26px;				
            height: 26px;				
        }				
				
        /* ============================================ */				
        /* MEGA MENU                                    */				
        /* ============================================ */				
				
        .mega-menu {				
            display: none;				
            position: absolute;				
            left: 0;				
            width: 100%;				
            background-color: var(--white);				
            border-top: 2px solid var(--gold-primary);				
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);				
            padding: 2.5rem 0;				
            z-index: 1000;				
        }				
				
        .nav-item:hover .mega-menu {				
            display: block;				
        }				
				
        .mega-menu-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: grid;				
            grid-template-columns: repeat(4, 1fr);				
            gap: 2rem;				
        }				
				
        .mega-menu-container.mega-menu-grid-3 {				
            grid-template-columns: repeat(3, 1fr);				
        }				
				
        .nav-item.menu-diy .mega-menu-container {				
            display: grid;				
            grid-template-columns: repeat(5, 1fr);				
            gap: 1.5rem;				
        }				
				
        @media (max-width: 1100px) {				
            .nav-item.menu-diy .mega-menu {				
                overflow-x: auto;				
            }				
            .nav-item.menu-diy .mega-menu-container {				
                min-width: 900px;				
            }				
        }				
				
        .menu-col h4 {				
            font-size: 0.8rem;				
            font-weight: 700;				
            text-transform: uppercase;				
            letter-spacing: 1px;				
            color: var(--navy-main);				
            margin-bottom: 1rem;				
            border-bottom: 2px solid var(--gold-primary);				
            padding-bottom: 0.5rem;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
        }				
				
        .menu-col ul {				
            list-style: none;				
        }				
				
        .menu-col li {				
            margin-bottom: 0.6rem;				
        }				
				
        .menu-col a {				
            text-decoration: none;				
            color: var(--text-medium);				
            font-size: 0.9rem;				
            display: block;				
            transition: all 0.2s;				
        }				
				
        .menu-col a:hover {				
            color: var(--gold-primary);				
            padding-left: 5px;				
        }				
				
        /* ============================================ */				
        /* MAIN CONTENT & HERO                          */				
        /* ============================================ */				
				
        .content-wrapper {				
            max-width: 1280px;				
            margin: 2rem auto;				
            padding: 0 1rem;				
        }				
				
        .ct-breadcrumb {				
            color: var(--text-medium);				
            font-size: 0.9rem;				
            margin-bottom: 1.5rem;				
            padding-bottom: 0.5rem;				
            border-bottom: 1px solid var(--champagne-border);				
        }				
				
        .ct-breadcrumb a {				
            color: var(--gold-primary);				
            text-decoration: none;				
        }				
				
        .ct-breadcrumb a:hover {				
            text-decoration: underline;				
            color: var(--gold-bright);				
        }				
				
        .hero {				
            background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(44, 62, 80, 0.8)), url('/images/wedding-arch-hero.webp') center/cover no-repeat;				
            padding: 4rem 2rem;				
            text-align: center;				
            margin-bottom: 3rem;				
            min-height: 300px;				
            margin-left: -1rem;				
            margin-right: -1rem;				
            margin-top: -1rem;				
            display: flex;				
            flex-direction: column;				
            justify-content: center;				
            align-items: center;				
            border-bottom: 4px solid var(--gold-primary);				
        }				
				
        .hero h1 {				
            font-size: 3rem;				
            margin-bottom: 1rem;				
            font-weight: 700;				
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);				
            color: var(--white);				
            line-height: 1.2;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .hero p {				
            font-size: 1.2rem;				
            margin-bottom: 2rem;				
            opacity: 0.95;				
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);				
            color: #F9FAFB !important;				
            max-width: 700px;				
            font-style: italic;				
            font-weight: 300;				
        }				
				
        .btn {				
            display: inline-block;				
            padding: 0.8rem 2rem;				
            background: var(--gold-primary);				
            color: var(--white);				
            text-decoration: none;				
            border-radius: 2px;				
            font-weight: 600;				
            transition: all 0.3s;				
            border: none;				
            text-transform: uppercase;				
            letter-spacing: 1px;				
            font-size: 0.9rem;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
        }				
				
        .btn:hover {				
            background: var(--gold-light);				
            transform: translateY(-2px);				
            box-shadow: 0 5px 20px rgba(176, 141, 87, 0.4);				
            color: var(--white);				
        }				
				
        /* ============================================ */				
        /* CONTENT STYLES                               */				
        /* ============================================ */				
				
        .ct-toc {				
            background: white;				
            border: 1px solid var(--champagne-border);				
            border-radius: 4px;				
            padding: 2rem 2.5rem;				
            margin-bottom: 3rem;				
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);				
        }				
				
        .ct-toc h2 {				
            font-size: 1.3rem;				
            color: var(--navy-main);				
            margin-bottom: 1.5rem;				
            font-weight: 700;				
            border-bottom: 1px solid var(--champagne-border);				
            padding-bottom: 0.75rem;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .ct-toc ol {				
            margin: 0;				
            padding-left: 0;				
            list-style: none;				
            display: grid;				
            grid-template-columns: repeat(2, 1fr);				
            gap: 0.75rem 2rem;				
            counter-reset: toc-counter;				
        }				
				
        .ct-toc li {				
            counter-increment: toc-counter;				
        }				
				
        .ct-toc a {				
            color: var(--text-dark);				
            text-decoration: none;				
            font-size: 0.95rem;				
            transition: color 0.2s;				
            display: flex;				
            align-items: center;				
        }				
				
        .ct-toc a::before {				
            content: "0" counter(toc-counter);				
            color: var(--gold-primary);				
            font-weight: 700;				
            margin-right: 0.75rem;				
            font-size: 0.85rem;				
        }				
				
        .ct-toc a:hover {				
            color: var(--gold-primary);				
        }				
				
        .ct-section-title {				
            font-size: 2rem;				
            margin: 3.5rem 0 1.5rem;				
            color: var(--navy-main);				
            position: relative;				
            padding-bottom: 0.75rem;				
            text-align: center;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .ct-section-title::after {				
            content: '';				
            position: absolute;				
            bottom: 0;				
            left: 50%;				
            transform: translateX(-50%);				
            width: 80px;				
            height: 3px;				
            background: var(--gold-primary);				
            border-radius: 2px;				
        }				
				
        .ct-sub-title {				
            font-size: 1.3rem;				
            margin: 2rem 0 1rem;				
            color: var(--navy-main);				
            font-weight: 600;				
            border-left: 4px solid var(--gold-primary);				
            padding-left: 1rem;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .ct-content p {				
            color: var(--text-dark);				
            font-size: 1.05rem;				
            line-height: 1.8;				
            margin-bottom: 1rem;				
        }				
				
        .ct-content a {				
            color: var(--gold-primary);				
            text-decoration: none;				
            font-weight: 500;				
            transition: color 0.2s;				
            border-bottom: 1px dotted var(--gold-primary);				
        }				
				
        .ct-content a:hover {				
            color: var(--gold-bright);				
            border-bottom-style: solid;				
        }				
				
        .ct-info-box {				
            background: linear-gradient(135deg, var(--bg-soft), var(--white));				
            border-left: 4px solid var(--gold-primary);				
            padding: 1.5rem 2rem;				
            margin: 2rem 0;				
            border-radius: 0 4px 4px 0;				
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);				
        }				
				
        .ct-info-box p {				
            margin-bottom: 0.5rem;				
        }				
				
        .ct-info-box p:last-child {				
            margin-bottom: 0;				
        }				
				
        .ct-tip-box {				
            background: linear-gradient(135deg, #FFFBEB, #FEF3C7);				
            border-left: 4px solid var(--gold-bright);				
            padding: 1.5rem 2rem;				
            margin: 2rem 0;				
            border-radius: 0 4px 4px 0;				
            color: #92400E;				
        }				
				
        .ct-tip-box strong {				
            color: var(--navy-main);				
        }				
				
        .ct-tip-box p {				
            margin-bottom: 0.5rem;				
            color: #78350F;				
        }				
				
        .ct-tip-box p:last-child {				
            margin-bottom: 0;				
        }				
				
        /* ============================================ */				
        /* ARCH TYPE GRID                               */				
        /* ============================================ */				
				
        .ct-types-grid {				
            display: grid;				
            grid-template-columns: repeat(2, 1fr);				
            gap: 2rem;				
            margin: 1.5rem 0 2rem;				
        }				
				
        .ct-type-card {				
            background: white;				
            border: 1px solid var(--champagne-border);				
            border-radius: 4px;				
            overflow: hidden;				
            transition: all 0.3s;				
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);				
        }				
				
        .ct-type-card:hover {				
            transform: translateY(-5px);				
            box-shadow: 0 15px 30px rgba(176, 141, 87, 0.15);				
            border-color: var(--gold-primary);				
        }				
				
        .ct-type-image {				
            height: 220px;				
            overflow: hidden;				
            background: var(--bg-soft);				
        }				
				
        .ct-type-image img {				
            width: 100%;				
            height: 100%;				
            object-fit: cover;				
            transition: transform 0.5s ease;				
            display: block;				
        }				
				
        .ct-type-card:hover .ct-type-image img {				
            transform: scale(1.05);				
        }				
				
        .ct-type-body {				
            padding: 1.5rem;				
        }				
				
        .ct-type-body h3 {				
            font-size: 1.2rem;				
            color: var(--navy-main);				
            margin-bottom: 0.5rem;				
            font-weight: 600;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .ct-type-body p {				
            color: var(--text-medium);				
            font-size: 0.9rem;				
            line-height: 1.6;				
            margin-bottom: 0.75rem;				
        }				
				
        /* ============================================ */				
        /* FAQ ACCORDION                                */				
        /* ============================================ */				
				
        .ct-faq-list {				
            margin: 1.5rem 0 0;				
        }				
				
        .ct-faq-item {				
            border: 1px solid var(--champagne-border);				
            border-radius: 4px;				
            margin-bottom: 1rem;				
            overflow: hidden;				
            background: white;				
            transition: all 0.3s;				
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);				
        }				
				
        .ct-faq-item.active {				
            border-color: var(--gold-primary);				
            box-shadow: 0 5px 15px rgba(176, 141, 87, 0.1);				
        }				
				
        .ct-faq-question {				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            padding: 1.25rem 1.5rem;				
            cursor: pointer;				
            background: none;				
            border: none;				
            width: 100%;				
            text-align: left;				
            color: var(--navy-main);				
            font-size: 1.05rem;				
            font-weight: 600;				
            gap: 1rem;				
            transition: background 0.2s;				
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;				
            -webkit-tap-highlight-color: transparent;				
        }				
				
        .ct-faq-question:hover {				
            background: var(--bg-soft);				
        }				
				
        .ct-faq-icon {				
            width: 24px;				
            height: 24px;				
            flex-shrink: 0;				
            transition: transform 0.3s;				
            stroke: var(--gold-primary);				
        }				
				
        .ct-faq-item.active .ct-faq-icon {				
            transform: rotate(180deg);				
        }				
				
        .ct-faq-answer {				
            max-height: 0;				
            overflow: hidden;				
            transition: max-height 0.35s ease, padding 0.35s ease;				
        }				
				
        .ct-faq-item.active .ct-faq-answer {				
            max-height: 500px;				
        }				
				
        .ct-faq-answer-inner {				
            padding: 0 1.5rem 1.5rem;				
            color: var(--text-medium);				
            font-size: 0.95rem;				
            line-height: 1.7;				
            border-top: 1px solid var(--bg-soft);				
            padding-top: 1.5rem;				
        }				
				
        .ct-faq-answer-inner a {				
            color: var(--gold-primary);				
            text-decoration: none;				
            font-weight: 500;				
            border-bottom: 1px dotted var(--gold-primary);				
        }				
				
        .ct-faq-answer-inner a:hover {				
            border-bottom-style: solid;				
        }				
				
        /* ============================================ */				
        /* PRODUCTS & FOOTER                            */				
        /* ============================================ */				
				
        .products-container {				
            max-width: 1280px;				
            margin: 3rem auto;				
            padding: 0 1rem;				
        }				
				
        .products-section {				
            background: white;				
            border-radius: 4px;				
            padding: 2.5rem;				
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);				
            border: 1px solid var(--champagne-border);				
        }				
				
        .products-section .section-title {				
            font-size: 1.8rem;				
            margin: 0 0 2rem 0;				
            color: var(--navy-main);				
            position: relative;				
            padding-bottom: 0.5rem;				
            text-align: left;				
            font-family: Georgia, 'Times New Roman', Times, serif;				
        }				
				
        .products-section .section-title::after {				
            left: 0;				
            transform: none;				
        }				
				
        .products-grid {				
            display: grid;				
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));				
            gap: 25px;				
            margin-top: 20px;				
        }				
				
        .product-card {				
            border: 1px solid var(--champagne-border);				
            border-radius: 4px;				
            padding: 0;				
            background-color: white;				
            transition: all 0.3s;				
            overflow: hidden;				
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);				
            height: 100%;				
            display: flex;				
            flex-direction: column;				
        }				
				
        .product-card:hover {				
            transform: translateY(-5px);				
            box-shadow: 0 15px 30px rgba(176, 141, 87, 0.15);				
            border-color: var(--gold-primary);				
        }				
				
        .product-image {				
            width: 100%;				
            height: 220px;				
            object-fit: contain;				
            background: var(--bg-soft);				
            border-bottom: 1px solid var(--champagne-border);				
            padding: 20px;				
            transition: transform 0.3s ease;				
        }				
				
        .product-content {				
            padding: 20px;				
            display: flex;				
            flex-direction: column;				
            flex-grow: 1;				
        }				
				
        .product-title {				
            font-size: 1rem;				
            color: var(--text-dark);				
            margin-bottom: 12px;				
            line-height: 1.4;				
            font-weight: 600;				
            display: -webkit-box;				
            -webkit-line-clamp: 2;				
            -webkit-box-orient: vertical;				
            overflow: hidden;				
            min-height: 2.8rem;				
        }				
				
        .product-price {				
            font-size: 1.25rem;				
            color: var(--navy-main);				
            font-weight: 700;				
            margin-bottom: 8px;				
        }				
				
        .product-button {				
            display: inline-flex;				
            align-items: center;				
            justify-content: center;				
            background: var(--navy-main);				
            color: var(--white);				
            border: none;				
            padding: 12px 20px;				
            border-radius: 2px;				
            font-size: 0.9rem;				
            font-weight: 600;				
            text-decoration: none;				
            transition: all 0.2s ease;				
            margin-top: auto;				
            cursor: pointer;				
            text-align: center;				
            min-height: 44px;				
            text-transform: uppercase;				
            letter-spacing: 0.5px;				
        }				
				
        .product-button:hover {				
            background: var(--gold-primary);				
            transform: translateY(-1px);				
            box-shadow: 0 4px 12px rgba(176, 141, 87, 0.3);				
            color: var(--white);				
            text-decoration: none;				
        }				
				
        .affiliate-disclosure-notice {				
            margin: 13px 0;				
            background-color: var(--bg-soft);				
            padding: 12px;				
            border-radius: 2px;				
            border-left: 4px solid var(--gold-primary);				
        }				
				
        .affiliate-disclosure-notice p {				
            margin: 0;				
            font-size: 12px;				
            color: #666;				
        }				
				
        .affiliate-disclosure-notice a {				
            color: var(--gold-primary);				
            text-decoration: underline;				
        }				
				
        .disclaimer-global {				
            background-color: var(--bg-soft);				
            border-left: 4px solid var(--gold-primary);				
            padding: 1.25rem;				
            margin: 2rem 0;				
            border-radius: 0 4px 4px 0;				
        }				
				
        .disclaimer-title {				
            color: var(--navy-main);				
            font-size: 1.1rem;				
            font-weight: 600;				
            margin-top: 0;				
            margin-bottom: 0.75rem;				
        }				
				
        .disclaimer-global p {				
            color: var(--text-medium);				
            font-size: 0.85rem;				
            line-height: 1.6;				
            margin: 0;				
        }				
				
        .disclaimer-global a {				
            color: var(--gold-primary);				
            text-decoration: none;				
            font-weight: 600;				
        }				
				
        .adsense-container {				
            background-color: var(--bg-soft);				
            border: 1px dashed var(--champagne-border);				
            padding: 20px;				
            text-align: center;				
            margin: 40px auto;				
            border-radius: 4px;				
            max-width: 1250px;				
        }				
				
        footer {				
            background: var(--navy-dark);				
            color: #D1D5DB;				
            padding: 4rem 0 1rem;				
            margin-top: 5rem;				
            border-top: 4px solid var(--gold-primary);				
        }				
				
        .footer-container {				
            max-width: 1280px;				
            margin: 0 auto;				
            padding: 0 1rem;				
            display: grid;				
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));				
            gap: 2rem;				
        }				
				
        .footer-section h4 {				
            font-size: 1rem;				
            margin-bottom: 1.5rem;				
            border-bottom: 1px solid var(--gold-primary);				
            padding-bottom: 0.5rem;				
            color: var(--gold-light);				
            text-transform: uppercase;				
            letter-spacing: 1px;				
        }				
				
        .footer-section p {				
            font-size: 0.9rem;				
            line-height: 1.7;				
            color: #9CA3AF;				
        }				
				
        .footer-section a {				
            color: #9CA3AF;				
            text-decoration: none;				
            display: block;				
            margin-bottom: 0.75rem;				
            font-size: 0.9rem;				
            transition: color 0.3s;				
        }				
				
        .footer-section a:hover {				
            color: var(--gold-light);				
            padding-left: 5px;				
        }				
				
        .copyright {				
            text-align: center;				
            margin-top: 3rem;				
            padding-top: 2rem;				
            border-top: 1px solid rgba(176, 141, 87, 0.2);				
            color: #6B7280;				
            font-size: 0.85rem;				
        }				
				
        /* ============================================ */				
        /* UI ELEMENTS                                  */				
        /* ============================================ */				
				
        .toast {				
            position: fixed;				
            bottom: 20px;				
            left: 50%;				
            transform: translateX(-50%) translateY(100px);				
            background: var(--navy-main);				
            color: var(--white);				
            padding: 12px 24px;				
            border-radius: 4px;				
            font-size: 0.9rem;				
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);				
            z-index: 1000;				
            opacity: 0;				
            transition: all 0.3s;				
            border-left: 4px solid var(--gold-primary);				
        }				
				
        .toast.show {				
            transform: translateX(-50%) translateY(0);				
            opacity: 1;				
        }				
				
        .back-to-top {				
            position: fixed;				
            bottom: 80px;				
            right: 20px;				
            width: 50px;				
            height: 50px;				
            background: var(--navy-main);				
            color: var(--white);				
            border: 1px solid var(--gold-primary);				
            border-radius: 4px;				
            cursor: pointer;				
            display: none;				
            align-items: center;				
            justify-content: center;				
            transition: all 0.3s ease;				
            z-index: 999;				
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);				
            opacity: 0;				
            transform: scale(0.8);				
        }				
				
        .back-to-top:hover {				
            background: var(--gold-primary);				
            border-color: var(--gold-primary);				
            transform: translateY(-3px) scale(1);				
        }				
				
        .back-to-top.show {				
            display: flex;				
            opacity: 1;				
            transform: scale(1);				
        }				
				
        .back-to-top svg {				
            width: 24px;				
            height: 24px;				
            stroke: currentColor;				
        }				
				
        .cookie-consent {				
            position: fixed;				
            bottom: 0;				
            left: 0;				
            right: 0;				
            background: var(--navy-dark);				
            color: var(--white);				
            padding: 1rem;				
            z-index: 1001;				
            transform: translateY(100%);				
            transition: transform 0.3s ease;				
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);				
            border-top: 2px solid var(--gold-primary);				
        }				
				
        .cookie-consent.show {				
            transform: translateY(0);				
        }				
				
        .cookie-content {				
            max-width: 1280px;				
            margin: 0 auto;				
            display: flex;				
            align-items: center;				
            justify-content: space-between;				
            gap: 1rem;				
            flex-wrap: wrap;				
        }				
				
        .cookie-text {				
            flex: 1;				
            font-size: 0.9rem;				
            line-height: 1.5;				
        }				
				
        .cookie-text a {				
            color: var(--gold-light);				
            text-decoration: none;				
        }				
				
        .cookie-buttons {				
            display: flex;				
            gap: 0.8rem;				
            flex-wrap: wrap;				
        }				
				
        .cookie-btn {				
            padding: 0.6rem 1.2rem;				
            border-radius: 2px;				
            border: none;				
            cursor: pointer;				
            font-weight: 500;				
            transition: all 0.3s;				
            text-transform: uppercase;				
            font-size: 0.8rem;				
            letter-spacing: 0.5px;				
        }				
				
        .cookie-btn-accept {				
            background: var(--gold-primary);				
            color: var(--white);				
        }				
				
        .cookie-btn-accept:hover {				
            background: var(--gold-light);				
        }				
				
        .cookie-btn-decline {				
            background: transparent;				
            color: #9CA3AF;				
            border: 1px solid #4B5563;				
        }				
				
        .cookie-btn-decline:hover {				
            background: #4B5563;				
            color: white;				
        }				
				
        /* ============================================ */				
        /* RESPONSIVE STYLES                            */				
        /* ============================================ */				
				
        @media (min-width: 769px) and (max-width: 1024px) {				
            .mega-menu-container {				
                grid-template-columns: repeat(2, 1fr) !important;				
            }				
            .nav-item.menu-diy .mega-menu-container {				
                grid-template-columns: repeat(2, 1fr) !important;				
                min-width: auto;				
            }				
            .ct-toc ol {				
                grid-template-columns: 1fr;				
            }				
            .ct-types-grid {				
                grid-template-columns: 1fr;				
            }				
        }				
				
        @media (max-width: 768px) {				
            .header-container {				
                flex-wrap: wrap;				
                gap: 1rem;				
            }				
            .logo-section {				
                width: 100%;				
                justify-content: space-between;				
            }				
            .search-wrapper {				
                order: 3;				
                width: 100%;				
                max-width: none;				
                margin: 0;				
            }				
            .share-button {				
                display: none;				
            }				
            .search-button-text {				
                display: none;				
            }				
            .mobile-menu-toggle {				
                display: block;				
            }				
            .nav-bar {				
                position: fixed;				
                top: 0;				
                right: -100%;				
                width: 85%;				
                max-width: 400px;				
                height: 100vh;				
                background: white;				
                z-index: 999;				
                border-left: 1px solid var(--gold-primary);				
                transition: right 0.3s ease;				
                overflow-y: auto;				
                top: 0 !important;				
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);				
            }				
            .nav-bar.active {				
                right: 0;				
            }				
            .nav-container {				
                flex-direction: column;				
                padding: 0;				
            }				
            .mobile-nav-header {				
                display: flex;				
                width: 100%;				
            }				
            .nav-menu {				
                flex-direction: column;				
                width: 100%;				
                margin: 0;				
                gap: 0;				
            }				
            .nav-item {				
                display: flex;				
                flex-wrap: wrap;				
                align-items: center;				
                justify-content: space-between;				
                width: 100%;				
                border-bottom: 1px solid var(--bg-soft);				
            }				
            .menu-main-link {				
                display: inline-flex !important;				
                align-items: center;				
                justify-content: space-between;				
                flex: 1;				
                padding: 1rem 1.5rem;				
                border-bottom: none;				
                font-size: 1rem;				
                color: var(--navy-main);				
                background: white;				
            }				
            .menu-main-link:hover {				
                background: var(--bg-soft);				
                color: var(--gold-primary);				
            }				
            .dropdown-arrow-btn {				
                display: flex !important;				
                align-items: center;				
                justify-content: center;				
                background: white;				
                color: var(--navy-main);				
                padding: 1rem 1.2rem;				
                border-left: 1px solid var(--bg-soft);				
            }				
            .dropdown-arrow-btn svg {				
                stroke: var(--navy-main);				
            }				
            .chevron-down-svg {				
                margin-left: 0 !important;				
                flex-shrink: 0 !important;				
                stroke: var(--navy-main);				
            }				
            .mega-menu {				
                position: static;				
                box-shadow: none;				
                border: none;				
                padding: 0;				
                background: var(--bg-soft);				
                display: none;				
                width: 100%;				
            }				
            .nav-item:hover .mega-menu {				
                display: none;				
            }				
            .nav-item.active .mega-menu {				
                display: block;				
            }				
            .mega-menu-container {				
                grid-template-columns: 1fr !important;				
                gap: 1.5rem;				
                padding: 1.5rem;				
            }				
            .nav-item.menu-diy .mega-menu-container {				
                grid-template-columns: 1fr !important;				
                min-width: auto;				
            }				
            .hero {				
                padding: 2.5rem 1.5rem;				
                margin-left: -1rem;				
                margin-right: -1rem;				
                margin-top: -1rem;				
            }				
            .hero h1 {				
                font-size: 2rem;				
            }				
            .ct-toc {				
                padding: 1.5rem;				
            }				
            .ct-toc ol {				
                grid-template-columns: 1fr;				
            }				
            .ct-section-title {				
                font-size: 1.5rem;				
                margin: 2.5rem 0 1rem;				
            }				
            .products-grid {				
                grid-template-columns: 1fr;				
            }				
        }				
				
        @media (min-width: 1025px) {				
            .dropdown-arrow-btn {				
                display: none !important;				
            }				
            .nav-item:hover .mega-menu {				
                display: block;				
            }				
        }				
				
        @keyframes spin {				
            from {				
                transform: rotate(0deg);				
            }				
            to {				
                transform: rotate(360deg);				
            }				
        }				
				
        .search-results {				
            position: absolute;				
            top: 100%;				
            left: 0;				
            width: 100%;				
            background: white;				
            border: 1px solid var(--champagne-border);				
            border-radius: 0 0 4px 4px;				
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);				
            z-index: 1000;				
            max-height: 400px;				
            overflow-y: auto;				
            margin-top: 5px;				
            display: none;				
        }				
				
        .search-result-item {				
            display: block;				
            padding: 15px;				
            text-decoration: none;				
            color: var(--text-dark);				
            border-bottom: 1px solid var(--bg-soft);				
            transition: all 0.2s;				
        }				
				
        .search-result-item:hover {				
            background-color: var(--bg-soft);				
        }				
				
        .search-result-content h4 {				
            font-size: 1rem;				
            margin-bottom: 5px;				
            color: var(--navy-main);				
        }				
				
        .search-result-content p {				
            font-size: 0.85rem;				
            color: var(--text-medium);				
            margin-bottom: 3px;				
        }				
				
        .search-loading {				
            position: absolute;				
            top: 100%;				
            left: 0;				
            width: 100%;				
            background: white;				
            padding: 15px;				
            text-align: center;				
            border: 1px solid var(--champagne-border);				
            border-radius: 0 0 4px 4px;				
            color: var(--text-medium);				
            z-index: 1000;				
            display: none;				
            align-items: center;				
            justify-content: center;				
            gap: 8px;				
        }				
				
        .search-loading svg {				
            animation: spin 1s linear infinite;				
        }