-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
973 lines (891 loc) · 62.7 KB
/
index.html
File metadata and controls
973 lines (891 loc) · 62.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary SEO Meta Tags (REQUIRED) -->
<title>Piercing Angle & Depth Guide - Professional Piercing Calculator | Free Tool</title>
<meta name="title" content="Piercing Angle & Depth Guide - Professional Piercing Calculator | Free Tool">
<meta name="description" content="FREE professional piercing angle and depth calculator for licensed piercers. Get precise angles, depths, jewelry specs for 30+ piercing types. Includes anatomical positioning, safety guidelines, and refuse unsuitable anatomy protocols. 100% free, professional-only tool.">
<meta name="keywords" content="piercing angle calculator, piercing depth guide, professional piercing tool, body piercing angles, piercing jewelry specifications, anatomical piercing guide, safe piercing depths, piercing placement calculator, professional piercer tool, piercing angle reference, body piercing measurements, piercing safety guide, piercing training tool, piercing anatomy guide">
<meta name="author" content="Poli International - Professional Tattoo & Piercing Supplies">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<link rel="canonical" href="https://poliinternational.com/standalone-tools/piercing-angle-guide/">
<!-- Open Graph / Facebook (REQUIRED) -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://poliinternational.com/standalone-tools/piercing-angle-guide/">
<meta property="og:title" content="Free Professional Piercing Angle & Depth Guide - For Licensed Piercers">
<meta property="og:description" content="Comprehensive piercing angle and depth calculator for professional piercers. Get precise measurements, jewelry specs, and anatomical positioning for 30+ piercing types. Includes safety guidelines and refuse unsuitable anatomy protocols. Professional tool by Poli International. 100% free!">
<meta property="og:image" content="https://poliinternational.com/standalone-tools/piercing-angle-guide/images/social-share.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Poli International">
<meta property="og:locale" content="en_US">
<!-- Twitter Card (REQUIRED) -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://poliinternational.com/standalone-tools/piercing-angle-guide/">
<meta name="twitter:title" content="Professional Piercing Angle & Depth Guide - Free Calculator">
<meta name="twitter:description" content="Professional piercing angle/depth calculator with precise measurements for 30+ piercings. For licensed piercers only. Free professional tool!">
<meta name="twitter:image" content="https://poliinternational.com/standalone-tools/piercing-angle-guide/images/social-share.jpg">
<!-- Additional SEO Tags (REQUIRED) -->
<meta name="theme-color" content="#8B5CF6">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<!-- Schema.org JSON-LD Structured Data: WebApplication -->
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Professional Piercing Angle Guide",
"url": "https://poliinternational.com/tools/piercing-angle-guide/",
"description": "Reference guide for optimal piercing placements and angles",
"applicationCategory": "UtilityApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript. Requires HTML5.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"codeRepository": "https://github.com/poli-international/piercing-angle-guide",
"author": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com",
"sameAs": [
"https://github.com/poli-international"
]
},
"creator": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com"
},
"maintainer": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com"
},
"dateModified": "2026-02-07",
"license": "https://opensource.org/licenses/MIT",
"isAccessibleForFree": true
}
</script>
<!-- Schema.org JSON-LD Structured Data: BreadcrumbList -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://poliinternational.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Professional Tools",
"item": "https://poliinternational.com/standalone-tools/"
},
{
"@type": "ListItem",
"position": 3,
"name": "Piercing Angle & Depth Guide",
"item": "https://poliinternational.com/standalone-tools/piercing-angle-guide/"
}
]
}
</script>
<!-- Schema.org JSON-LD Structured Data: FAQPage -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What are the correct piercing angles for different body piercings?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Piercing angles vary significantly by location and anatomy. Nostril piercings typically require a 45-60 degree angle to create a straight appearance externally while navigating the cartilage curvature. Septum piercings need 90 degrees (perpendicular) through the 'sweet spot' of soft tissue. Ear cartilage piercings like helix use 70-80 degrees to follow the natural curve. Nipple piercings require 90 degrees (horizontal) at the base of the nipple. Navel piercings need 45-50 degrees to accommodate movement and clothing. Proper angle selection depends on individual anatomy, tissue thickness, and desired aesthetic outcome. Always assess each client's unique anatomy before determining the exact angle."
}
},
{
"@type": "Question",
"name": "How deep should different piercings be performed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Piercing depth is critical for proper healing and longevity. Earlobe piercings typically require 6-8mm depth through soft tissue. Nostril piercings need 8-10mm to accommodate the cartilage and internal mucosa. Septum piercings should be 10-12mm through the sweet spot, avoiding cartilage. Nipple piercings require 12-18mm depending on nipple size and projection. Navel piercings need 15-20mm to ensure adequate tissue for the top and bottom balls. Cartilage piercings (helix, tragus) are generally 8-10mm. Surface piercings require careful depth assessment, typically 5-8mm to prevent rejection. Always use proper calipers to measure tissue thickness before piercing and select jewelry length accordingly, adding 2-3mm for swelling accommodation."
}
},
{
"@type": "Question",
"name": "What jewelry gauges are recommended for different piercings?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Standard professional jewelry gauges vary by piercing type. Earlobes are typically pierced at 18g or 16g for standard piercings, with 14g for those planning to stretch. Nostril piercings use 18g or 16g. Septum piercings typically start at 16g or 14g. Nipple piercings commonly use 14g or 12g for durability. Navel piercings are standard at 14g. Most ear cartilage piercings (helix, tragus, conch) use 16g or 14g. Lip and labret piercings typically use 16g or 14g. Tongue piercings commonly start at 14g. Eyebrow piercings use 16g or 14g. Surface piercings often require 12g or 14g for stability. Thicker gauges (12g-14g) provide better stability and reduce migration risk in many locations. Always consider tissue thickness, lifestyle, and healing characteristics when selecting gauge."
}
},
{
"@type": "Question",
"name": "When should a piercer refuse to perform a piercing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Professional piercers must refuse piercings when anatomy is unsuitable or risks outweigh benefits. Refuse when: insufficient tissue depth exists (surface piercings need 5mm minimum), anatomy won't support the piercing long-term (flat navels, inverted nipples without projection), visible anatomical abnormalities like excessive scarring or previous rejection, active skin conditions or infections in the area, client is under the influence of drugs or alcohol, client has unrealistic expectations that can't be met, blood thinning medications that increase bleeding risk, client refuses to follow aftercare instructions, piercing location has poor blood supply indicating healing issues, or client's occupation creates incompatible healing environment. Refusing unsuitable piercings protects client safety, maintains professional standards, prevents complications, and preserves your professional reputation. Always document refusals and explain anatomical limitations clearly to clients. Offer alternative placements when possible."
}
},
{
"@type": "Question",
"name": "What are the most important safety considerations for body piercing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Critical safety considerations include: sterilization protocols using autoclave-sterilized instruments and implant-grade jewelry, proper hand hygiene and PPE (gloves, face protection), single-use needles that are never reused, appropriate needle gauge selection for each piercing type, correct angle and depth to avoid nerves and blood vessels, anatomical assessment for contraindications, proper jewelry material selection (implant-grade titanium, 14k+ gold, or niobium), adequate tissue thickness for piercing viability, client health screening including medications and conditions, informed consent documentation, emergency preparedness for vasovagal response or allergic reactions, proper aftercare education, and follow-up protocols. Always maintain bloodborne pathogen compliance, use proper needle disposal in sharps containers, and never pierce through scar tissue, moles, or areas with poor circulation. Professional liability insurance and APP membership demonstrate commitment to safety standards."
}
},
{
"@type": "Question",
"name": "How do anatomical variations affect piercing placement and angles?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Anatomical variations significantly impact piercing success and require careful assessment. Tissue thickness variations affect depth and jewelry length selection - thicker tissues need longer jewelry and potentially different angles. Cartilage curvature in ears varies greatly; some clients have flat helixes while others have pronounced curves requiring angle adjustments. Navel anatomy ranges from deep 'innie' to protruding 'outie' - only certain navel shapes can support standard navel piercings. Nipple size, projection, and inversion impact both angle and jewelry selection. Septum sweet spot location varies between individuals and may be off-center or very small. Nostril cartilage thickness and curve affects angle significantly. Surface anatomy like prominent tendons or blood vessels may require placement adjustments. Always perform thorough anatomical assessment before marking, use proper lighting, and have client in natural position (not reclined) when evaluating placement. Explain anatomical limitations honestly and offer alternatives when standard placement isn't viable."
}
}
]
}
</script>
<link rel="stylesheet" href="css/style.css">
<style>
/* Breadcrumb Styles */
.breadcrumb-nav {
padding: 1rem 0;
margin-bottom: 1.5rem;
font-size: 0.9rem;
}
.breadcrumb-nav a {
color: #0693e3;
text-decoration: none;
transition: color 0.3s;
}
.breadcrumb-nav a:hover {
color: #0575be;
text-decoration: underline;
}
.breadcrumb-nav span {
color: #666;
margin: 0 0.5rem;
}
.breadcrumb-nav strong {
color: #333;
}
/* Dark mode breadcrumb */
body.dark-mode .breadcrumb-nav span {
color: #999;
}
body.dark-mode .breadcrumb-nav a {
color: #60a5fa;
}
body.dark-mode .breadcrumb-nav strong {
color: #e0e0e0;
}
</style>
</head>
<body>
<nav class="breadcrumb-nav" aria-label="Breadcrumb">
<a href="https://poliinternational.com/">Home</a>
<span>›</span>
<a href="https://poliinternational.com/tools/">Tools</a>
<span>›</span>
<a href="https://poliinternational.com/tools/#piercing-tools">Piercing Tools</a>
<span>›</span>
<strong>Piercing Angle Guide</strong>
</nav>
<!-- Top Navigation Header (matching homepage style) -->
<header class="site-header">
<div class="site-header__container">
<a href="https://poliinternational.com/" class="site-header__logo-link">
<img src="images/Poli-International-Co.webp" alt="Poli International" class="site-header__logo">
</a>
<nav class="site-nav">
<a href="https://poliinternational.com/" class="site-nav__link">HOME</a>
<a href="https://poliinternational.com/who-we-are/" class="site-nav__link">ABOUT</a>
<a href="https://poliinternational.com/our-creation/" class="site-nav__link">INNOVATION</a>
<a href="https://poliinternational.com/they-trust-us/" class="site-nav__link">They trust us!</a>
<a href="https://poliinternational.com/contact-us/" class="site-nav__link">CONTACT</a>
</nav>
</nav>
</div>
</header>
<!-- Tool Title Section -->
<section class="tool-title-section">
<div class="container">
<h1 class="tool-title">Professional Piercing Angle Guide</h1>
<!-- GitHub CTA -->
<div class='github-cta' style='margin: 1.5rem 0;'>
<a href='https://github.com/poli-international/piercing-angle-guide'
target='_blank' rel='noopener noreferrer' class='btn-github'
style='display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: #24292e; color: #ffffff; border-radius: 6px; text-decoration: none; font-weight: 500;'>
<svg width='20' height='20' viewBox='0 0 16 16' fill='currentColor'>
<path d='M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z'/>
</svg>
<span>View on GitHub</span>
</a>
</div>
<!-- GitHub Stats -->
<div class='github-stats' style='display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0;'>
<img src='https://img.shields.io/github/stars/poli-international/piercing-angle-guide?style=social' alt='Stars' loading='lazy'>
<img src='https://img.shields.io/github/last-commit/poli-international/piercing-angle-guide' alt='Last commit' loading='lazy'>
</div>
<p class="tool-subtitle">Master perfect piercing angles • Technique tutorials • Professional standards</p>
</div>
</section>
<div class="piercing-angle-guide">
<!-- STANDARD HEADER (REQUIRED) -->
<header class="piercing-angle-guide__header">
<div class="piercing-angle-guide__header-content">
<!-- LEFT: Logo -->
<!-- CENTER: Title Group -->
<div class="piercing-angle-guide__title-group">
<h2 class="piercing-angle-guide__header-title">Piercing Angle & Depth Guide</h2>
<p class="piercing-angle-guide__header-subtitle">
Professional Reference Tool for Licensed Piercers Only
</p>
</div>
<!-- RIGHT: Buttons -->
<div class="piercing-angle-guide__header-buttons">
<!-- REQUIRED: Embed Button -->
<button id="embedBtn" class="piercing-angle-guide__embed-button">
<span class="embed-icon">⚡</span>
<span class="embed-text">Free Embed</span>
</button>
<!-- Ko-fi Button -->
<a href='https://ko-fi.com/C0C81NEXBV' target='_blank' class="piercing-angle-guide__kofi-button">
<span class="kofi-icon">☕</span>
<span class="kofi-text">Buy Me a Coffee</span>
</a>
<!-- REQUIRED: Dark Mode Toggle -->
<button id="darkModeToggle" class="piercing-angle-guide__dark-mode-toggle">
<span class="dark-mode-icon">◐</span>
</button>
</div>
</div>
</header>
<!-- MAIN TOOL CONTENT -->
<main class="piercing-angle-guide__main">
<div class="piercing-angle-guide__container">
<!-- PROFESSIONAL-ONLY WARNING (EMPHASIZED) -->
<div class="professional-warning">
<div class="professional-warning__icon">⚠️</div>
<div class="professional-warning__content">
<h2 class="professional-warning__title">FOR LICENSED PROFESSIONAL PIERCERS ONLY</h2>
<p class="professional-warning__text">
<strong>This tool is designed exclusively for trained, licensed body piercing professionals.</strong>
Body piercing involves significant health risks and requires proper training, certification, sterile equipment,
and compliance with health department regulations. Attempting piercings without professional training can result in
serious injury, infection, nerve damage, excessive bleeding, scarring, and transmission of bloodborne pathogens.
</p>
<p class="professional-warning__text">
<strong>If you are not a licensed piercer:</strong> Do NOT attempt to perform body piercings.
Seek services only from certified professional piercers in licensed studios.
</p>
</div>
</div>
<!-- TOOL INTRODUCTION -->
<section class="tool-intro">
<h2 class="tool-intro__title">Interactive Professional Piercing Reference</h2>
<p class="tool-intro__description">
This comprehensive guide provides precise anatomical angles, insertion depths, jewelry specifications,
and safety protocols for over 30 professional body piercing types. Select a piercing below to view
detailed technical specifications, anatomical considerations, and professional best practices.
</p>
</section>
<!-- PIERCING SELECTOR -->
<section class="piercing-selector">
<h2 class="piercing-selector__title">Select Piercing Type</h2>
<div class="piercing-categories">
<!-- EAR PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">👂 Ear Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="earlobe">Earlobe</button>
<button class="piercing-btn" data-piercing="helix">Helix</button>
<button class="piercing-btn" data-piercing="forward-helix">Forward Helix</button>
<button class="piercing-btn" data-piercing="tragus">Tragus</button>
<button class="piercing-btn" data-piercing="anti-tragus">Anti-Tragus</button>
<button class="piercing-btn" data-piercing="conch">Conch</button>
<button class="piercing-btn" data-piercing="rook">Rook</button>
<button class="piercing-btn" data-piercing="daith">Daith</button>
<button class="piercing-btn" data-piercing="industrial">Industrial</button>
</div>
</div>
<!-- FACIAL PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">😊 Facial Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="nostril">Nostril</button>
<button class="piercing-btn" data-piercing="septum">Septum</button>
<button class="piercing-btn" data-piercing="bridge">Bridge</button>
<button class="piercing-btn" data-piercing="eyebrow">Eyebrow</button>
<button class="piercing-btn" data-piercing="labret">Labret</button>
<button class="piercing-btn" data-piercing="monroe">Monroe</button>
<button class="piercing-btn" data-piercing="medusa">Medusa</button>
<button class="piercing-btn" data-piercing="tongue">Tongue</button>
</div>
</div>
<!-- BODY PIERCINGS -->
<div class="piercing-category">
<h3 class="piercing-category__title">💪 Body Piercings</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="navel">Navel</button>
<button class="piercing-btn" data-piercing="nipple">Nipple</button>
<button class="piercing-btn" data-piercing="surface">Surface</button>
<button class="piercing-btn" data-piercing="dermal">Dermal Anchor</button>
</div>
</div>
<!-- GENITAL PIERCINGS (Professional reference) -->
<div class="piercing-category">
<h3 class="piercing-category__title">🔒 Genital Piercings (Advanced)</h3>
<div class="piercing-buttons">
<button class="piercing-btn" data-piercing="prince-albert">Prince Albert</button>
<button class="piercing-btn" data-piercing="vch">VCH</button>
<button class="piercing-btn" data-piercing="christina">Christina</button>
<button class="piercing-btn" data-piercing="frenum">Frenum</button>
</div>
</div>
</div>
</section>
<!-- PIERCING DETAILS DISPLAY -->
<section class="piercing-details" id="piercingDetails" style="display: none;">
<h2 class="piercing-details__title" id="piercingName">Select a piercing to view details</h2>
<!-- ANATOMICAL SPECIFICATIONS -->
<div class="details-card">
<h3 class="details-card__title">📐 Anatomical Specifications</h3>
<div class="spec-grid">
<div class="spec-item">
<span class="spec-label">Optimal Angle:</span>
<span class="spec-value" id="optimalAngle">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Insertion Depth:</span>
<span class="spec-value" id="insertionDepth">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Tissue Type:</span>
<span class="spec-value" id="tissueType">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Healing Time:</span>
<span class="spec-value" id="healingTime">-</span>
</div>
</div>
</div>
<!-- JEWELRY SPECIFICATIONS -->
<div class="details-card">
<h3 class="details-card__title">💎 Jewelry Specifications</h3>
<div class="spec-grid">
<div class="spec-item">
<span class="spec-label">Initial Gauge:</span>
<span class="spec-value" id="jewelryGauge">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Initial Length:</span>
<span class="spec-value" id="jewelryLength">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Jewelry Type:</span>
<span class="spec-value" id="jewelryType">-</span>
</div>
<div class="spec-item">
<span class="spec-label">Downsize After:</span>
<span class="spec-value" id="downsizeTime">-</span>
</div>
</div>
</div>
<!-- ANATOMICAL POSITIONING -->
<div class="details-card">
<h3 class="details-card__title">🎯 Anatomical Positioning</h3>
<div class="positioning-content" id="positioningContent">
<p>Select a piercing to view positioning guidelines.</p>
</div>
</div>
<!-- SAFETY WARNINGS -->
<div class="details-card details-card--warning">
<h3 class="details-card__title">⚠️ Safety Considerations</h3>
<div class="safety-content" id="safetyContent">
<p>Select a piercing to view safety guidelines.</p>
</div>
</div>
<!-- REFUSE UNSUITABLE ANATOMY -->
<div class="details-card details-card--danger">
<h3 class="details-card__title">🚫 Refuse Unsuitable Anatomy</h3>
<div class="refuse-content" id="refuseContent">
<p>Select a piercing to view refusal criteria.</p>
</div>
</div>
<!-- AFTERCARE GUIDELINES -->
<div class="details-card">
<h3 class="details-card__title">🧼 Aftercare Guidelines</h3>
<div class="aftercare-content" id="aftercareContent">
<p>Select a piercing to view aftercare protocols.</p>
</div>
</div>
</section>
<!-- COMPREHENSIVE GUIDE SECTIONS (SEO CONTENT) -->
<section class="guide-section">
<h2 class="guide-section__title">How to Use This Professional Piercing Guide</h2>
<p class="guide-section__text">
This interactive tool is designed to serve as a quick reference for licensed professional piercers.
To use the guide effectively, select the specific piercing type you're planning to perform from the
categorized buttons above. The tool will instantly display comprehensive specifications including optimal
anatomical angles, precise insertion depths, recommended jewelry gauges and lengths, tissue type considerations,
and estimated healing timeframes.
</p>
<p class="guide-section__text">
Each piercing entry includes critical safety information, anatomical positioning guidelines, and specific
criteria for refusing unsuitable anatomy. Always read the safety warnings and refusal criteria carefully
before proceeding with any piercing. The positioning guidelines help you identify optimal placement based
on individual client anatomy, while the safety section highlights potential complications and contraindications.
</p>
<p class="guide-section__text">
Remember that these specifications represent standard professional practices and should be adjusted based on
individual client anatomy, lifestyle factors, and your professional assessment. Always conduct thorough
anatomical evaluation, obtain informed consent, and maintain sterile techniques throughout the procedure.
This tool supplements professional training but does not replace hands-on education, mentorship, and
continued professional development.
</p>
</section>
<section class="guide-section">
<h2 class="guide-section__title">Why Precise Piercing Angles and Depths Matter</h2>
<p class="guide-section__text">
Accurate piercing angles are fundamental to successful outcomes and client satisfaction. The angle at which
a needle enters and exits tissue determines the final appearance, comfort, and longevity of the piercing.
An incorrect angle can result in jewelry sitting at an awkward position, increased rejection risk, prolonged
healing times, or aesthetic issues that can't be corrected without re-piercing.
</p>
<p class="guide-section__text">
For example, nostril piercings require a 45-60 degree angle to accommodate the natural curve of the nose
cartilage while ensuring the jewelry sits flush against the nostril. A steeper angle might cause the jewelry
to protrude uncomfortably, while a shallower angle could result in excessive internal pressure. Similarly,
nipple piercings must be performed at precisely 90 degrees (horizontal) through the base of the nipple to
prevent migration and ensure even healing on both sides.
</p>
<p class="guide-section__text">
Insertion depth is equally critical for piercing success. Insufficient depth leads to surface piercing
characteristics, increasing rejection and migration risk. Excessive depth can damage underlying structures,
cause unnecessary trauma, and complicate jewelry changes. Professional piercers use calipers to measure
tissue thickness precisely before selecting jewelry length, always adding 2-3mm for swelling accommodation
during initial healing. Proper depth ensures adequate tissue encapsulation of the jewelry, preventing
pressure necrosis while maintaining structural integrity throughout the healing process.
</p>
</section>
<section class="guide-section">
<h2 class="guide-section__title">Understanding Professional Piercing Anatomy</h2>
<p class="guide-section__text">
Anatomical knowledge forms the foundation of professional body piercing. Every piercing location has unique
anatomical characteristics that influence placement, angle, depth, and jewelry selection. Understanding tissue
types—whether soft tissue, cartilage, or mucosal membranes—dictates needle selection, technique, and healing
expectations. Cartilage piercings like helix and tragus require different approaches than soft tissue piercings
like earlobes or septum sweet spots.
</p>
<p class="guide-section__text">
Vascular and neural anatomy must be carefully considered for every piercing. Major blood vessels and nerves
run through specific anatomical regions, and professional piercers must know these pathways to avoid complications.
The tongue contains the lingual artery and nerve branches that must be avoided. The nipple has significant
nerve density requiring careful placement to preserve sensation. Surface anatomy like prominent veins, tendons,
or scar tissue may necessitate placement adjustments or complete refusal of certain piercings.
</p>
<p class="guide-section__text">
Anatomical variations between clients require individualized assessment for every piercing. No two anatomies
are identical—cartilage thickness varies significantly, nipple size and projection differ greatly, navel shapes
range from deep to protruding, and septum sweet spot locations may be off-center or very small. Professional
piercers must evaluate each client's unique anatomy, explain limitations honestly, and refuse piercings when
anatomy is unsuitable. Attempting to pierce anatomy that won't support a piercing long-term leads to poor
outcomes, client dissatisfaction, and potential injury.
</p>
</section>
<section class="guide-section">
<h2 class="guide-section__title">Jewelry Selection for Optimal Healing and Longevity</h2>
<p class="guide-section__text">
Initial jewelry selection significantly impacts healing success, client comfort, and long-term piercing viability.
Professional piercers use implant-grade materials—titanium (ASTM F136), 14k or 18k gold (nickel-free), or
niobium—for initial piercings due to their biocompatibility and low reaction risk. Surgical steel contains
nickel and is not recommended for fresh piercings despite common misconceptions. Material quality directly
affects healing time, complication rates, and client satisfaction.
</p>
<p class="guide-section__text">
Gauge selection balances client anatomy, piercing location, and long-term stability. While thinner gauges
(18g-16g) heal faster in many locations, thicker gauges (14g-12g) provide better stability and reduce migration
risk for piercings subject to movement or pressure. Nipple piercings typically use 14g or 12g for durability
and reduced rejection risk. Cartilage piercings commonly use 16g or 14g depending on tissue thickness and
client goals. Navel piercings standardize at 14g to withstand clothing friction and body movement.
</p>
<p class="guide-section__text">
Length selection requires precise measurement with calipers plus swelling accommodation. Initial jewelry must
be long enough to accommodate swelling (typically 2-3mm extra) without being so long that it catches on clothing
or hair. Excessive length increases trauma risk and prolongs healing, while insufficient length causes pressure,
embedding, and potential emergency removal. Professional piercers schedule downsize appointments 4-8 weeks after
initial piercing (depending on location) to replace initial long jewelry with properly fitted pieces, improving
comfort and reducing snagging risk during continued healing.
</p>
</section>
<section class="guide-section">
<h2 class="guide-section__title">Professional Ethics: When to Refuse Piercings</h2>
<p class="guide-section__text">
Professional ethics require refusing piercings when anatomy is unsuitable, risks outweigh benefits, or success
likelihood is low. This protects client safety, maintains professional integrity, and prevents poor outcomes
that damage industry reputation. Refusing piercings requires clear communication about anatomical limitations,
realistic outcome expectations, and alternative options when available. Clients may be disappointed initially,
but most appreciate honest assessment and professional integrity over providers who prioritize profit over safety.
</p>
<p class="guide-section__text">
Common refusal scenarios include insufficient tissue depth for surface piercings (minimum 5mm required),
navel anatomy that won't support jewelry long-term (flat navels or insufficient lip), nipple piercings on
inverted nipples without adequate projection, cartilage piercings in areas with excessive scar tissue from
previous procedures, and any piercing through active infections, skin conditions, or compromised tissue.
Clients taking blood thinners, immunosuppressants, or other medications affecting healing may need to postpone
piercings until medication regimens change or receive physician clearance.
</p>
<p class="guide-section__text">
Mental state and decision-making capacity also factor into ethical piercing practices. Never pierce clients
under the influence of drugs or alcohol, as they cannot provide informed consent. Clients exhibiting signs of
coercion from partners or friends should be offered private consultation to ensure autonomous decision-making.
Clients with unrealistic expectations requiring extensive education about healing, appearance, or limitations
should be counseled thoroughly before proceeding, and piercings should be refused if expectations remain
unrealistic. Documentation of refusals, consultations, and consent protects both piercer and client legally
and professionally.
</p>
</section>
<section class="guide-section">
<h2 class="guide-section__title">Frequently Asked Questions About Professional Piercing</h2>
<div class="faq-item">
<h3 class="faq-question">What are the correct piercing angles for different body piercings?</h3>
<p class="faq-answer">
Piercing angles vary significantly by location and anatomy. Nostril piercings typically require a 45-60 degree
angle to create a straight appearance externally while navigating the cartilage curvature. Septum piercings need
90 degrees (perpendicular) through the 'sweet spot' of soft tissue. Ear cartilage piercings like helix use 70-80
degrees to follow the natural curve. Nipple piercings require 90 degrees (horizontal) at the base of the nipple.
Navel piercings need 45-50 degrees to accommodate movement and clothing. Proper angle selection depends on
individual anatomy, tissue thickness, and desired aesthetic outcome. Always assess each client's unique anatomy
before determining the exact angle.
</p>
</div>
<div class="faq-item">
<h3 class="faq-question">How deep should different piercings be performed?</h3>
<p class="faq-answer">
Piercing depth is critical for proper healing and longevity. Earlobe piercings typically require 6-8mm depth
through soft tissue. Nostril piercings need 8-10mm to accommodate the cartilage and internal mucosa. Septum
piercings should be 10-12mm through the sweet spot, avoiding cartilage. Nipple piercings require 12-18mm
depending on nipple size and projection. Navel piercings need 15-20mm to ensure adequate tissue for the top
and bottom balls. Cartilage piercings (helix, tragus) are generally 8-10mm. Surface piercings require careful
depth assessment, typically 5-8mm to prevent rejection. Always use proper calipers to measure tissue thickness
before piercing and select jewelry length accordingly, adding 2-3mm for swelling accommodation.
</p>
</div>
<div class="faq-item">
<h3 class="faq-question">What jewelry gauges are recommended for different piercings?</h3>
<p class="faq-answer">
Standard professional jewelry gauges vary by piercing type. Earlobes are typically pierced at 18g or 16g for
standard piercings, with 14g for those planning to stretch. Nostril piercings use 18g or 16g. Septum piercings
typically start at 16g or 14g. Nipple piercings commonly use 14g or 12g for durability. Navel piercings are
standard at 14g. Most ear cartilage piercings (helix, tragus, conch) use 16g or 14g. Lip and labret piercings
typically use 16g or 14g. Tongue piercings commonly start at 14g. Eyebrow piercings use 16g or 14g. Surface
piercings often require 12g or 14g for stability. Thicker gauges (12g-14g) provide better stability and reduce
migration risk in many locations. Always consider tissue thickness, lifestyle, and healing characteristics when
selecting gauge.
</p>
</div>
<div class="faq-item">
<h3 class="faq-question">When should a piercer refuse to perform a piercing?</h3>
<p class="faq-answer">
Professional piercers must refuse piercings when anatomy is unsuitable or risks outweigh benefits. Refuse when:
insufficient tissue depth exists (surface piercings need 5mm minimum), anatomy won't support the piercing
long-term (flat navels, inverted nipples without projection), visible anatomical abnormalities like excessive
scarring or previous rejection, active skin conditions or infections in the area, client is under the influence
of drugs or alcohol, client has unrealistic expectations that can't be met, blood thinning medications that
increase bleeding risk, client refuses to follow aftercare instructions, piercing location has poor blood supply
indicating healing issues, or client's occupation creates incompatible healing environment. Refusing unsuitable
piercings protects client safety, maintains professional standards, prevents complications, and preserves your
professional reputation. Always document refusals and explain anatomical limitations clearly to clients. Offer
alternative placements when possible.
</p>
</div>
<div class="faq-item">
<h3 class="faq-question">What are the most important safety considerations for body piercing?</h3>
<p class="faq-answer">
Critical safety considerations include: sterilization protocols using autoclave-sterilized instruments and
implant-grade jewelry, proper hand hygiene and PPE (gloves, face protection), single-use needles that are never
reused, appropriate needle gauge selection for each piercing type, correct angle and depth to avoid nerves and
blood vessels, anatomical assessment for contraindications, proper jewelry material selection (implant-grade
titanium, 14k+ gold, or niobium), adequate tissue thickness for piercing viability, client health screening
including medications and conditions, informed consent documentation, emergency preparedness for vasovagal
response or allergic reactions, proper aftercare education, and follow-up protocols. Always maintain bloodborne
pathogen compliance, use proper needle disposal in sharps containers, and never pierce through scar tissue, moles,
or areas with poor circulation. Professional liability insurance and industry certification demonstrate commitment to
safety standards.
</p>
</div>
<div class="faq-item">
<h3 class="faq-question">How do anatomical variations affect piercing placement and angles?</h3>
<p class="faq-answer">
Anatomical variations significantly impact piercing success and require careful assessment. Tissue thickness
variations affect depth and jewelry length selection - thicker tissues need longer jewelry and potentially
different angles. Cartilage curvature in ears varies greatly; some clients have flat helixes while others have
pronounced curves requiring angle adjustments. Navel anatomy ranges from deep 'innie' to protruding 'outie' -
only certain navel shapes can support standard navel piercings. Nipple size, projection, and inversion impact
both angle and jewelry selection. Septum sweet spot location varies between individuals and may be off-center or
very small. Nostril cartilage thickness and curve affects angle significantly. Surface anatomy like prominent
tendons or blood vessels may require placement adjustments. Always perform thorough anatomical assessment before
marking, use proper lighting, and have client in natural position (not reclined) when evaluating placement.
Explain anatomical limitations honestly and offer alternatives when standard placement isn't viable.
</p>
</div>
</section>
<!-- MORE TOOLS NAVIGATION -->
<section class="related-tools">
<div style="text-align: center; padding: 2rem 1rem;">
<p style="font-size: 1.05rem; margin: 0; color: #666;">
<a href="https://poliinternational.com/tools" target="_blank" rel="noopener" style="color: #0693e3; text-decoration: none; font-weight: 600; transition: color 0.2s;">
Explore all our free professional tools →
</a>
</p>
</div>
</section>
</div>
<!-- Related Tools Section -->
<section class="related-tools-section" style="padding: 2rem 1rem; background: #fff; border-top: 1px solid #eee;">
<div style="max-width: 800px; margin: 0 auto;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem; color: #1e293b;">Recommended for You</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;">
<a href="https://poliinternational.com/gauge-converter/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Gauge Converter</a>
<a href="https://poliinternational.com/healing-tracker/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Healing Tracker</a>
<a href="https://poliinternational.com/jewelry-size-visualizer/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Jewelry Size Visualizer</a>
</div>
<div style="text-align: center; margin-top: 1.5rem;">
<a href="https://poliinternational.com/tools/" style="color: #64748b; text-decoration: underline; font-size: 0.9rem;">View All 17 Free Tools</a>
</div>
</div>
</section>
<!-- GEO Semantic Block -->
<aside class="geo-summary-block" style="background: #f8fafc; border-left: 4px solid #0693e3; padding: 1.5rem; margin: 2rem 0; font-style: italic; color: #334155; border-radius: 0 8px 8px 0;">
<p style="margin: 0; line-height: 1.6;">Expert Safety Advisory: Precision in gauge and material selection is critical for bio-compatibility. Our tools utilize industry-standard AWG and ASTM mappings to protect client health and ensure procedural success in every session.</p>
</aside>
</main>
<!-- COMMUNITY FEEDBACK SECTION (REQUIRED) -->
<section class="community-feedback">
<div class="container">
<div class="feedback-card">
<div class="feedback-header">
<h2 class="feedback-title">💬 Help Us Build Better Tools, Friend!</h2>
<p class="feedback-subtitle">
Hey there, fellow body art professional! Whether you're a professional piercer, tattooist, or someone who loves body art as much as we do – we're all in this together.
Our passion doesn't get much support out there, so let's stick together and build the best tools to help our community thrive!
</p>
<p class="feedback-callout">
<strong>Your feedback matters!</strong> Found something useful? Got ideas for improvements? We're all ears!
Help us make this tool even better for everyone in our body art family.
</p>
</div>
<form class="feedback-form" id="feedbackForm">
<div class="feedback-form-grid">
<div class="form-group">
<label for="userEmail" class="form-label">Your Email (so we can reply!)</label>
<input type="email" id="userEmail" name="userEmail" class="form-input"
placeholder="your.email@example.com" required>
</div>
<div class="form-group">
<label for="userRole" class="form-label">You are a...</label>
<select id="userRole" name="userRole" class="form-select" required>
<option value="">Choose one</option>
<option value="professional_piercer">Professional Piercer</option>
<option value="tattoo_artist">Tattoo Artist</option>
<option value="shop_owner">Shop Owner</option>
<option value="apprentice">Apprentice</option>
<option value="body_art_educator">Body Art Educator</option>
<option value="enthusiast">Body Art Enthusiast/Customer</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="form-group">
<label for="feedbackText" class="form-label">Share Your Thoughts, Ideas, or Suggestions</label>
<textarea id="feedbackText" name="feedbackText" class="form-textarea"
placeholder="What do you love? What could be better? Any features you'd like to see? We genuinely want to hear from you!"
rows="5" required></textarea>
</div>
<div class="form-actions">
<button type="submit" class="feedback-submit-btn">
<span class="btn-icon">✉️</span>
<span class="btn-text">Send Feedback</span>
</button>
</div>
<!-- Success/Error Messages -->
<div class="feedback-message feedback-message--success" id="feedbackSuccess" style="display: none;">
<strong>🎉 Thank you, friend!</strong> Your feedback has been sent. We'll read it carefully and get back to you soon!
</div>
<div class="feedback-message feedback-message--error" id="feedbackError" style="display: none;">
<strong>😔 Oops!</strong> Something went wrong. Please try again or email us directly at patrick@poli-international.com
</div>
</form>
</div>
</div>
</section>
<!-- EMAIL CAPTURE SECTION -->
<section class="piercing-angle-guide__email-section">
<div class="piercing-angle-guide__container">
<div class="piercing-angle-guide__email-box">
<h2 class="piercing-angle-guide__email-title">🔔 Get Notified of New Tools!</h2>
<p class="piercing-angle-guide__email-subtitle">Be first to know when we launch new free tools for piercing professionals.</p>
<form id="footer-email-form" class="piercing-angle-guide__email-form" data-location="footer">
<div class="piercing-angle-guide__email-input-group">
<input type="email"
id="footer-email-input"
class="piercing-angle-guide__email-input"
placeholder="Your email address"
required
aria-label="Email address">
<button type="submit" class="piercing-angle-guide__email-submit">Notify Me</button>
</div>
<p class="piercing-angle-guide__email-success" id="footer-email-success" style="display: none;">
✅ Thanks! We'll notify you when new tools launch!
</p>
<p class="piercing-angle-guide__email-error" id="footer-email-error" style="display: none;">
❌ Please enter a valid email address.
</p>
<div class="piercing-angle-guide__email-trust">
<span>✅ Free tool updates only</span>
<span>✅ No spam</span>
<span>✅ Unsubscribe anytime</span>
</div>
</form>
</div>
</div>
</section>
<!-- STANDARD FOOTER (REQUIRED) -->
<footer class="piercing-angle-guide__footer">
<!-- Logo Section -->
<div class="piercing-angle-guide__footer-logo-section">
<img src="images/Poli-International-Co.webp"
alt="Poli International - Professional Tattoo & Piercing Supplies"
class="piercing-angle-guide__footer-logo">
</div>
<!-- Support Section with Ko-fi -->
<div class="piercing-angle-guide__support-section">
<p class="piercing-angle-guide__support-text">
☕ Enjoying this free tool? Support development of more professional tools!
</p>
<a href='https://ko-fi.com/C0C81NEXBV' target='_blank' class="piercing-angle-guide__kofi">
<img src='https://storage.ko-fi.com/cdn/kofi6.png?v=6'
border='0'
alt='Buy Me a Coffee at ko-fi.com'
class="piercing-angle-guide__kofi-img" />
</a>
</div>
<!-- Footer Info -->
<div class="piercing-angle-guide__footer-info">
<p class="piercing-angle-guide__copyright">
© 2025 Poli International - Professional Tattoo & Piercing Supplies
</p>
<p class="piercing-angle-guide__disclaimer">
⚠️ FOR LICENSED PROFESSIONAL PIERCERS ONLY. This tool is for educational reference purposes.
Always follow proper sterilization protocols, obtain informed consent, and comply with local health regulations.
Poli International is not liable for misuse or complications arising from piercing procedures.
</p>
</div>
</footer>
</div>
<!-- EMBED MODAL (REQUIRED) -->
<div id="embedModal" class="modal" style="display: none;">
<div class="modal-content">
<span class="modal-close" id="modalClose">×</span>
<h2>Embed This Tool</h2>
<p>Copy this code to embed the Piercing Angle & Depth Guide on your website:</p>
<textarea id="embedCode" readonly></textarea>
<button id="copyEmbedCode" class="copy-btn">Copy Code</button>
</div>
</div>
<!-- SCRIPTS (REQUIRED ORDER) -->
<script src="js/piercing-guide.js"></script>
<script src="js/common.js"></script>
<script src="js/feedback.js"></script>
<!-- Hide header when embedded in iframe -->
<script>
// Detect if page is loaded in iframe and hide header
if (window.self !== window.top) {
document.addEventListener('DOMContentLoaded', function() {
var header = document.querySelector('.site-header');
if (header) {
header.style.display = 'none';
}
// Also hide tool title section if present
var toolTitle = document.querySelector('.tool-title-section');
if (toolTitle) {
toolTitle.style.display = 'none';
}
});
}
</script>
<!-- AUTOMATIC IFRAME CONTENT HIDER (ADDED BY ANTIGRAVITY) -->
<script>
if (window.self !== window.top) {
document.addEventListener('DOMContentLoaded', function() {
const selectors = ['.breadcrumb-nav', '.site-header', '.site-footer', '.equip-checker__header',
'.equip-checker__footer', '.tool-title-section', '.more-tools-section',
'.feedback-section', '.related-tools-section', '.geo-summary-block',
'.needle-selector__header', '.needle-selector__footer',
'.needle-selector__more-tools', '.community-feedback',
'.poli-footer', '.share-card', '.need-support-card', '.explore-all-card'];
selectors.forEach(selector => {
const elements = document.querySelectorAll(selector);
elements.forEach(el => el.style.display = 'none');
});
// Force reset body margins for embed
document.body.style.paddingTop = '0';
document.body.style.marginTop = '0';
document.body.style.paddingBottom = '0';
document.body.style.marginBottom = '0';
/* Center align tool headers when in iframe */
if (window.self !== window.top) {
const style = document.createElement('style');
style.textContent = `
/* Center the entire header section */
[class*="__header-content"],
[class*="__title-group"],
[class*="__header-buttons"] {
text-align: center !important;
justify-content: center !important;
align-items: center !important;
}
/* Center H2 headings */
[class*="__header"] h2,
[class*="__title-group"] h2,
header h2 {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
/* Center subtitles/descriptions */
[class*="__subtitle"],
[class*="__header"] p {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
/* Center button containers */
[class*="__header-buttons"] {
display: flex !important;
justify-content: center !important;
align-items: center !important;
flex-wrap: wrap !important;
}
`;
document.head.appendChild(style);
}
});
}
</script>
</body>
</html>