.elementor-65 .elementor-element.elementor-element-0b746c0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-65 .elementor-element.elementor-element-34333d2{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-65 .elementor-element.elementor-element-34333d2 img{width:100%;}.elementor-65 .elementor-element.elementor-element-a843139{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-65 .elementor-element.elementor-element-a843139:not(.elementor-motion-effects-element-type-background), .elementor-65 .elementor-element.elementor-element-a843139 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#100B0B;}.elementor-65 .elementor-element.elementor-element-58864f6{width:100%;max-width:100%;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-65 .elementor-element.elementor-element-ae57e42{color:#FFFFFF;}.elementor-65 .elementor-element.elementor-element-7efe503{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-58864f6 */.tattoo-styles-heading {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px 45px;
}


/* SMALL LABEL */

.styles-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #D6B36A;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.styles-label span {
    width: 32px;
    height: 1px;

    display: inline-block;

    background: #D6B36A;

    box-shadow:
        0 0 7px rgba(214,179,106,0.45);
}


/* MAIN HEADING */

.tattoo-styles-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 50px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;
}

.tattoo-styles-heading h2 strong {
    color: #F1D48A;

    font-weight: 700;

    text-shadow:
        0 0 8px rgba(241,212,138,0.25);
}


/* SUBHEADING */

.tattoo-styles-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #9d9d9d;

    font-size: 15px;
    line-height: 1.8;

    font-weight: 400;
}


/* MOBILE */

@media (max-width: 600px) {

    .tattoo-styles-heading {
        padding: 10px 18px 35px;
    }

    .tattoo-styles-heading h2 {
        font-size: 36px;
    }

    .tattoo-styles-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .styles-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .styles-label span {
        width: 22px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7efe503 *//* =========================================================
   PREMIUM TATTOO CATEGORY SECTION
========================================================= */

.tattoo-categories {
  width: 100%;
  padding: 30px 0;
  margin: 0;
  background: #080808;
  box-sizing: border-box;
  overflow: hidden;
}


/* =========================================================
   GRID — DESKTOP 3 × 3
========================================================= */

.tattoo-category-grid {
  width: min(1400px, 94%);
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;

  box-sizing: border-box;
}


/* =========================================================
   CARD — ALWAYS SQUARE
========================================================= */

.tattoo-category-card {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1;

  min-width: 0;

  overflow: hidden;

  background: #111;

  border: 1px solid rgba(198, 164, 74, 0.20);

  box-sizing: border-box;

  isolation: isolate;

  cursor: pointer;

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.tattoo-category-card > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1);

  filter:
    brightness(0.88)
    contrast(1.02)
    saturate(0.92);

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s ease;
}


/* =========================================================
   BLACK TRANSPARENT OVERLAY
========================================================= */

.tattoo-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.68) 30%,
      rgba(0, 0, 0, 0.38) 58%,
      rgba(0, 0, 0, 0.12) 100%
    );

  pointer-events: none;

  transition:
    background 0.6s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.tattoo-category-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  padding: 24px 26px 25px;

  box-sizing: border-box;

  color: #fff;

  transform: translateY(0);

  transition:
    transform 0.45s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.tattoo-category-number {
  display: block;

  margin: 0 0 7px;

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 8px;

  font-weight: 600;

  line-height: 1;

  letter-spacing: 2.5px;

  color: #c6a44a;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.tattoo-category-content h3 {
  margin: 0 0 10px;

  padding: 0;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 18px;

  font-weight: 700;

  line-height: 1.25;

  letter-spacing: 0.4px;

  text-transform: uppercase;

  color: #fff;

  transition:
    color 0.35s ease;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tattoo-category-content p {
  margin: 0;

  padding: 0;

  max-width: 100%;

  font-family:
    "Lora",
    Georgia,
    serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 1.52;

  color: rgba(255, 255, 255, 0.90);

  transition:
    color 0.35s ease;
}


/* =========================================================
   READ MORE
========================================================= */

.tattoo-read-more {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  position: relative;

  margin-top: 15px;

  padding: 0;

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 8px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1.8px;

  color: #fff;

  text-decoration: none;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}


/* =========================================================
   READ MORE UNDERLINE
========================================================= */

.tattoo-read-more::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: #c6a44a;

  transition:
    width 0.35s ease;
}


/* =========================================================
   ARROW
========================================================= */

.tattoo-read-more span {
  display: inline-block;

  font-size: 14px;

  line-height: 1;

  color: #c6a44a;

  transition:
    transform 0.35s ease;
}


/* =========================================================
   GOLD CORNER
========================================================= */

.tattoo-category-card::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 42px;
  height: 42px;

  border-top:
    1px solid
    rgba(198, 164, 74, 0.60);

  border-right:
    1px solid
    rgba(198, 164, 74, 0.60);

  opacity: 0.65;

  z-index: 4;

  pointer-events: none;

  transition:
    width 0.45s ease,
    height 0.45s ease,
    opacity 0.45s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.tattoo-category-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(198, 164, 74, 0.70);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.50),
    0 0 25px rgba(198, 164, 74, 0.10);

  z-index: 5;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.tattoo-category-card:hover > img {
  transform: scale(1.07);

  filter:
    brightness(1.10)
    contrast(1.05)
    saturate(1.08);
}


/* =========================================================
   OVERLAY HOVER — IMAGE CLEARER
========================================================= */

.tattoo-category-card:hover .tattoo-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.40) 30%,
      rgba(0, 0, 0, 0.12) 62%,
      rgba(0, 0, 0, 0.02) 100%
    );
}


/* =========================================================
   CONTENT HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-category-content {
  transform: translateY(-4px);
}


/* =========================================================
   TITLE HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-category-content h3 {
  color: #f0cf70;
}


/* =========================================================
   DESCRIPTION HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-category-content p {
  color: #fff;
}


/* =========================================================
   READ MORE HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-read-more {
  color: #f0cf70;

  gap: 10px;
}


/* =========================================================
   UNDERLINE HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-read-more::after {
  width: 100%;
}


/* =========================================================
   ARROW HOVER
========================================================= */

.tattoo-category-card:hover
.tattoo-read-more span {
  transform: translateX(4px);
}


/* =========================================================
   GOLD CORNER HOVER
========================================================= */

.tattoo-category-card:hover::after {
  width: 72px;
  height: 72px;

  opacity: 1;
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1150px) {

  .tattoo-category-grid {
    width: 94%;

    gap: 18px;
  }

  .tattoo-category-content {
    padding: 21px 22px 22px;
  }

  .tattoo-category-number {
    font-size: 7.5px;

    letter-spacing: 2.2px;
  }

  .tattoo-category-content h3 {
    font-size: 16px;

    margin-bottom: 9px;
  }

  .tattoo-category-content p {
    font-size: 11px;

    line-height: 1.48;
  }

  .tattoo-read-more {
    margin-top: 13px;

    font-size: 7.5px;

    letter-spacing: 1.5px;
  }

  .tattoo-read-more span {
    font-size: 13px;
  }
}


/* =========================================================
   TABLET — 2 COLUMNS
========================================================= */

@media (max-width: 850px) {

  .tattoo-category-grid {
    width: 92%;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 17px;
  }

  .tattoo-category-content {
    padding: 22px;
  }

  .tattoo-category-number {
    font-size: 8px;
  }

  .tattoo-category-content h3 {
    font-size: 17px;
  }

  .tattoo-category-content p {
    font-size: 11.5px;

    line-height: 1.5;
  }

  .tattoo-read-more {
    font-size: 8px;

    margin-top: 14px;
  }
}


/* =========================================================
   MOBILE — 1 COLUMN
========================================================= */

@media (max-width: 600px) {

  .tattoo-categories {
    padding: 15px 0;
  }

  .tattoo-category-grid {
    width: 92%;

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .tattoo-category-card {
    aspect-ratio: 1 / 1;

    transform: none;
  }

  .tattoo-category-content {
    padding: 25px;
  }

  .tattoo-category-number {
    font-size: 8px;

    margin-bottom: 8px;

    letter-spacing: 2.5px;
  }

  .tattoo-category-content h3 {
    font-size: 20px;

    line-height: 1.28;

    margin-bottom: 10px;
  }

  .tattoo-category-content p {
    font-size: 13px;

    line-height: 1.55;
  }

  .tattoo-read-more {
    margin-top: 15px;

    font-size: 8px;

    letter-spacing: 1.7px;
  }

  .tattoo-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.56) 43%,
        rgba(0, 0, 0, 0.14) 100%
      );
  }

  .tattoo-category-card:hover {
    transform: none;

    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.35);
  }

  .tattoo-category-card:hover > img {
    transform: scale(1.04);
  }

  .tattoo-category-card:hover
  .tattoo-category-content {
    transform: none;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

  .tattoo-category-grid {
    width: 93%;

    gap: 15px;
  }

  .tattoo-category-content {
    padding: 22px 21px;
  }

  .tattoo-category-number {
    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 7px;
  }

  .tattoo-category-content h3 {
    font-size: 18px;

    margin-bottom: 8px;
  }

  .tattoo-category-content p {
    font-size: 12px;

    line-height: 1.5;
  }

  .tattoo-read-more {
    margin-top: 13px;

    font-size: 7px;

    letter-spacing: 1.4px;
  }

  .tattoo-read-more span {
    font-size: 12px;
  }

  .tattoo-category-card::after {
    width: 32px;
    height: 32px;
  }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

  .tattoo-category-content {
    padding: 19px 18px;
  }

  .tattoo-category-content h3 {
    font-size: 16px;

    margin-bottom: 7px;
  }

  .tattoo-category-content p {
    font-size: 10.5px;

    line-height: 1.45;
  }

  .tattoo-read-more {
    margin-top: 11px;

    font-size: 6.5px;

    letter-spacing: 1.2px;
  }

  .tattoo-category-number {
    font-size: 6.5px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tattoo-category-card,
  .tattoo-category-card > img,
  .tattoo-overlay,
  .tattoo-category-content,
  .tattoo-read-more,
  .tattoo-read-more span,
  .tattoo-read-more::after,
  .tattoo-category-card::after {
    transition: none !important;
  }
}/* End custom CSS */