/**
 * Help Scout Help Center Stylesheet
 * 
 * @description Custom stylesheet for Doodle Design Co. Help Scout Help Center
 * @author Will S.
 * @version 1.0.0
 * @date 2025-02-08
 * @company Doodle Design Company
 * @website https://sharpsticker.store
 * @platform Help Scout
 * 
 * Copyright (c) 2025 Doodle Design Company. All Rights Reserved.
 * 
 * This file contains custom styles for the Help Scout help center including:
 * - CSS Custom Properties (Variables) for consistent theming
 * - Typography and Font Declarations
 * - Layout and Grid Systems
 * - Component Styles (Navigation, Search, Content, Articles)
 * - Responsive Design and Media Queries
 * - Accessibility Features and WCAG compliance
 * - Interactive Elements and Animations
 * - Help Scout specific optimizations
 * 
 * Help Scout Integration Notes:
 * - Compatible with Help Scout's CSS customization system
 * - Optimized for Help Scout's article and category layouts
 * - Maintains Help Scout's default functionality while enhancing UI
 * - Responsive design works with Help Scout's mobile experience
 */
:root {
  /* ==========================================================================
     CSS Custom Properties (Variables)
     ========================================================================== */
  
  /* Color Palette
     ========================================================================== */
  
  /* Primary Colors */
  --color-primary: #333333;
  --color-primary-dark: #2a2a2a;
  --color-primary-light: #4a4a4a;
  
  /* Secondary Colors */
  --color-secondary: #006654;
  --color-secondary-dark: #0c5b4c;
  --color-secondary-extra-dark: #0a5345;
  
  /* Accent Colors */
  --color-accent-red-light: #f26b4d;
  --color-accent-red: #c35037;
  --color-accent-red-dark: #b5432b;
  --color-accent-red-extra-dark: #a03620;
  
  /* Neutral Colors */
  --color-grey-extra-light: rgba(51, 51, 51, 0.12);
  --color-grey-light: rgba(51, 51, 51, 0.24);
  --color-grey: rgba(51, 51, 51, 0.56);
  --color-grey-dark: rgba(51, 51, 51, 0.6);
  --color-grey-extra-dark: rgba(51, 51, 51, 0.72);
  
  /* Base Colors */
  --color-black: #333333;
  --color-white: #fff5ee;
  
  /* Background Colors */
  --color-background-primary: #fff5ee;
  --color-background-secondary: #fff5ee;
  --color-background-accent: #fff5ee;
  
  /* Legacy Color Mappings (for backward compatibility) */
  --color-blue: var(--color-primary);
  --color-blue-dark: var(--color-primary-dark);
  --color-blue-extra-dark: var(--color-primary-dark);
  --color-green: var(--color-secondary);
  --color-green-dark: var(--color-secondary-dark);
  --color-green-extra-dark: var(--color-secondary-extra-dark);
  --color-red-light: var(--color-accent-red-light);
  --color-red: var(--color-accent-red);
  --color-red-dark: var(--color-accent-red-dark);
  --color-red-extra-dark: var(--color-accent-red-extra-dark);
  --color-background-grey: var(--color-background-primary);
  --color-background-yellow: var(--color-background-secondary);
  --color-background-pink: var(--color-background-accent);
  --color-background-info-blue: var(--color-background-primary);
  --color-background-error-red: var(--color-background-primary);
  --color-background-warning-yellow: var(--color-background-secondary);
  
  /* Illustration Colors */
  --color-illustration-blue: #6a6feb;
  --color-illustration-green: #1b9c84;
  --color-illustration-red: #ff7e6c;
  
  /* Typography Scale
     ========================================================================== */
  
  /* Font Families */
  --font-family-primary: "Work Sans", sans-serif;
  --font-family-secondary: "Moulay-Bold", serif;
  --font-family-text: var(--font-family-primary);
  --font-family-headline: var(--font-family-secondary);
  --font-family-sub-headline: var(--font-family-secondary);
  
  /* Font Sizes - Body Text */
  --font-size-extra-small: 12px;
  --font-size-small: 14px;
  --font-size-normal: 16px;
  --font-size-large: 18px;
  
  /* Line Heights - Body Text */
  --font-line-height-extra-small: 18px;
  --font-line-height-small: 20px;
  --font-line-height-normal: 24px;
  --font-line-height-large: 26px;
  
  /* Font Sizes - Headlines */
  --font-size-headline-small: 40px;
  --font-size-headline-normal: 80px;
  --font-size-headline-large: 120px;
  
  /* Line Heights - Headlines */
  --font-line-height-headline-small: 52px;
  --font-line-height-headline-normal: 90px;
  --font-line-height-headline-large: 124px;
  
  /* Font Sizes - Sub Headlines */
  --font-size-sub-headline-small: 24px;
  --font-size-sub-headline-normal: 28px;
  --font-size-sub-headline-large: 32px;
  
  /* Line Heights - Sub Headlines */
  --font-line-height-sub-headline-small: 32px;
  --font-line-height-sub-headline-normal: 38px;
  --font-line-height-sub-headline-large: 46px;
  
  /* Spacing Scale
     ========================================================================== */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  --spacing-4xl: 64px;
  --spacing-5xl: 96px;
  --spacing-6xl: 128px;
  --spacing-7xl: 192px;
  
  /* Legacy Spacing Mappings */
  --spacing-4: var(--spacing-xs);
  --spacing-8: var(--spacing-sm);
  --spacing-12: var(--spacing-md);
  --spacing-16: var(--spacing-lg);
  --spacing-24: var(--spacing-xl);
  --spacing-32: var(--spacing-2xl);
  --spacing-40: var(--spacing-3xl);
  --spacing-64: var(--spacing-4xl);
  --spacing-96: var(--spacing-5xl);
  --spacing-128: var(--spacing-6xl);
  --spacing-192: var(--spacing-7xl);
  
  /* Border Radius
     ========================================================================== */
  --border-radius-xs: 4px;
  --border-radius-sm: 8px;
  --border-radius-md: 10px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 50%;
  
  /* Legacy Border Radius Mappings */
  --border-radius-extra-small: var(--border-radius-md);
  --border-radius-small: var(--border-radius-md);
  --border-radius-large: var(--border-radius-md);
  
  /* Shadows
     ========================================================================== */
  --shadow-sm: 0px 1px 4px rgba(0, 0, 0, 0.16);
  --shadow-md: 0px 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0px 8px 16px rgba(0, 0, 0, 0.16), 0px 1px 4px rgba(0, 0, 0, 0.16);
  
  /* Legacy Shadow Mappings */
  --drop-shadow-small: var(--shadow-sm);
  --drop-shadow-large: var(--shadow-lg);
  
  /* Transitions
     ========================================================================== */
  --transition-fast: 0.1s ease-in-out;
  --transition-normal: 0.2s ease-in-out;
  --transition-slow: 0.3s ease-in-out;
  
  /* Z-Index Scale
     ========================================================================== */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
}

/* ==========================================================================
   Font Declarations
   ========================================================================== */




@font-face {
  font-family: "Moulay-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.shopify.com/s/files/1/0684/1162/1687/files/Moulay-Bold.otf?v=1750723857") format("opentype");
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&display=swap");
}
/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
  background-color: var(--color-background-primary);
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-family-headline);
  font-weight: 700;
}

h1 {
  font-size: var(--font-size-sub-headline-large);
  line-height: var(--font-line-height-sub-headline-large);
}

h2 {
  font-size: var(--font-size-sub-headline-normal);
  line-height: var(--font-line-height-sub-headline-normal);
}

h3, h4, h5 {
  font-size: var(--font-size-sub-headline-small);
  line-height: var(--font-line-height-sub-headline-small);
}

p {
  font-family: var(--font-family-text);
  color: var(--color-black);
}

hr {
  height: 1px;
  background-color: var(--color-grey-extra-light);
  border: none;
}

.container-fluid {
  max-width: 1200px;
}

#contentArea {
  padding: 0 24px;
}

@media (max-width: 768px) {
  #contentArea {
    padding: 0 8px;
  }
  
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  #main-content {
    padding: 0 16px;
  }
  
  .contentWrapper {
    padding: 0 16px;
  }
}
#docsSearch {
  background-color: var(--color-background-yellow);
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
  padding: 0;
  margin-bottom: 32px;
}
#docsSearch h1 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-headline-normal);
  line-height: var(--font-line-height-headline-normal);
  margin: 0;
  margin-bottom: 16px;
  color: var(--color-black);
  font-weight: 700;
}
#docsSearch #searchBar {
  width: 520px !important;
  display: flex;
  align-items: center;
  position: relative;
}
#docsSearch #searchBar button {
  
  background: var(--color-blue);
  height: 50px;
  border-radius: 30px;
  border: 1px solid var(--color-blue);
  text-shadow: none;
  font-size: var(--font-size-large);
  font-family: var(--font-family-text);
  font-weight: 600;
  padding: 0 32px;
  line-height: 1;
  transition: all 0.1s ease-in !important;
  outline: none;
  position: absolute;
  right: 4px;
  top: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;}
#docsSearch #searchBar button .icon-search::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIg\a         ZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldm\a         Vub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDExQzQgNy4xMzQwMSA3LjEzNDAxIDQgMTEgNEMxNC44NjYg\a         NCAxOCA3LjEzNDAxIDE4IDExQzE4IDE0Ljg2NiAxNC44NjYgMTggMTEgMThDNy4xMzQwMSAxOCA0IDE0Ljg2NiA0ID\a         ExWk0xMSAyQzYuMDI5NDQgMiAyIDYuMDI5NDQgMiAxMUMyIDE1Ljk3MDYgNi4wMjk0NCAyMCAxMSAyMEMxMy4xMjUg\a         MjAgMTUuMDc4IDE5LjI2MzUgMTYuNjE3NyAxOC4wMzE5TDIwLjI5MjkgMjEuNzA3MUMyMC42ODM0IDIyLjA5NzYgMj\a         EuMzE2NiAyMi4wOTc2IDIxLjcwNzEgMjEuNzA3MUMyMi4wOTc2IDIxLjMxNjYgMjIuMDk3NiAyMC42ODM0IDIxLjcw\a         NzEgMjAuMjkyOUwxOC4wMzE5IDE2LjYxNzdDMTkuMjYzNSAxNS4wNzggMjAgMTMuMTI1IDIwIDExQzIwIDYuMDI5ND\a         QgMTUuOTcwNiAyIDExIDJaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}
#docsSearch #searchBar button:hover {
  background: var(--color-blue-dark);
}
#docsSearch #searchBar button:focus {
  background: var(--color-blue-extra-dark);
}
#docsSearch textarea, #docsSearch input[type=text] {
  box-shadow: none;
  transition: none;
  -webkit-appearance: none;
  transition: all 0.1s ease-in;
}
#docsSearch .search-query {
  border: 1px solid var(--color-grey-extra-light) !important;
  border-radius: 30px !important;
  color: var(--color-black) !important;
  height: 56px !important;
  font-family: var(--font-family-text) !important;
  font-size: 18px !important;
  padding-left: 16px !important;
  padding-right: 140px;
  width: 100%;
  box-sizing: border-box;
}

/* Rotating placeholder styles */
#docsSearch .search-query::placeholder {
  color: var(--color-grey);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#docsSearch .search-query:focus::placeholder {
  opacity: 0.7;
}
#docsSearch .search-query:hover {
  border: 1px solid var(--color-grey-light) !important;
}
#docsSearch .search-query:focus {
  border-color: var(--color-blue) !important;
  box-shadow: inset 0px 0px 0px 1px var(--color-blue);
}
#docsSearch #serp-dd {
  border-radius: 12px;
  box-shadow: var(--drop-shadow-large);
  top: 84px;
  margin-top: 10px;
}
#docsSearch #serp-dd .noResults {
  padding: 16px 24px;
  font-size: var(--font-size-normal);
  color: var(--color-grey);
}
#docsSearch #serp-dd a {
  color: var(--color-blue);
  font-size: var(--font-size-normal);
  padding: 16px 16px;
}

@media (max-width: 768px) {
  #docsSearch #searchBar {
    padding: 1.5em 0;
    width: 90% !important;
    max-width: 575px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  #docsSearch {
    height: 300px;
    padding: 0 16px;
  }
  
  #docsSearch h1 {
    font-size: 2.8em;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    padding: 0 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  #docsSearch #searchBar button {
    padding: 0 20px;
    font-size: 16px;
    height: 48px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  #docsSearch .search-query {
    padding-right: 120px !important;
  }
}

@media (max-width: 480px) {
  .navbar .brand {
    height: 50px;
    gap: 6px;
  }
  
  .navbar .brand::before {
    height: 50px !important;
    width: 50px !important;
    max-height: 50px !important;
    max-width: 50px !important;
    min-height: 50px !important;
    min-width: 50px !important;
    background-size: 50px 50px;
  }
  
  .navbar .brand::after {
    font-size: 18px;
    margin-left: 6px;
  }
  
  .navbar .nav a {
    padding: 0 16px 16px 0 !important;
    font-size: 16px;
  }
  
  .collection-category h2 {
    font-size: 2em;
  }
  
  .category {
    width: 100% !important;
    margin-bottom: 16px !important;
  }
  
  #docsSearch h1 {
    font-size: 2.4em;
    white-space: normal;
    line-height: 1.2;
    padding: 0 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  #docsSearch #searchBar {
    width: 95% !important;
  }
  
  #docsSearch #searchBar button {
    padding: 0 16px;
    font-size: 14px;
    height: 44px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #docsSearch .search-query {
    padding-right: 100px !important;
  }
  
  #sidebar .search-query {
    height: 48px !important;
    font-size: 16px !important;
  }
}
.collection-category {
  color: var(--color-black);
}
.collection-category h2 {
  text-align: center;
  font-size: 3em;
  font-family: var(--font-family-headline);
  font-weight: 700;
  pointer-events: none;
  cursor: default;
  color: inherit; 
  text-decoration: none;   
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.category {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-position-x: 50% !important;
  background-position-y: 24px !important;
  background-color: var(--color-white) !important;
  border: 4px solid var(--color-grey-extra-light);
  border-radius: 10px;
  padding-top: 232px !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  width: 31% !important;
  transition: all 0.1s ease-in !important;
}
.category h3 {
  color: var(--color-black);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-sub-headline-small);
  line-height: var(--font-line-height-sub-headline-small);
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 24px;
  margin-top: 0;
  border-radius: 12px;
  font-weight: 700;
}
.category .article-count, .category p {
  display: none;
}
.category:hover {
  box-shadow: 0 0 0 2px var(--color-grey-extra-light), var(--drop-shadow-large);
}

@media (max-width: 768px) {
  .category {
    width: 42% !important;
  }
}
@media (max-width: 600px) and (max-width: 768px) {
  .category {
    width: 100% !important;
    margin-bottom: 12px !important;
  }
}
.icon-print {
  opacity: 0.72;
}
.icon-print:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIg\a         ZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldm\a         Vub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01IDVWM0M1IDEuODk1NDMgNS44OTU0MyAxIDcgMUgxN0MxOC4x\a         MDQ2IDEgMTkgMS44OTU0MyAxOSAzVjVDMjEuMjA5MSA1IDIzIDYuNzkwODYgMjMgOVYxNEMyMyAxNi4yMDkxIDIxLj\a         IwOTEgMTggMTkgMThWMjFDMTkgMjIuMTA0NiAxOC4xMDQ2IDIzIDE3IDIzSDdDNS44OTU0MyAyMyA1IDIyLjEwNDYg\a         NSAyMVYxOEMyLjc5MDg2IDE4IDEgMTYuMjA5MSAxIDE0VjlDMSA2Ljc5MDg2IDIuNzkwODYgNSA1IDVaTTcgM0gxN1\a         Y1SDdWM1pNNSAxNlYxNEM1IDEyLjg5NTQgNS44OTU0MyAxMiA3IDEySDE3QzE4LjEwNDYgMTIgMTkgMTIuODk1NCAx\a         OSAxNFYxNkMyMC4xMDQ2IDE2IDIxIDE1LjEwNDYgMjEgMTRWOUMyMSA3Ljg5NTQzIDIwLjEwNDYgNyAxOSA3SDVDMy\a         44OTU0MyA3IDMgNy44OTU0MyAzIDlWMTRDMyAxNS4xMDQ2IDMuODk1NDMgMTYgNSAxNlpNNyAxNEgxN1YyMUg3VjE0\a         WiIgZmlsbD0iYmxhY2siLz4KPGNpcmNsZSBjeD0iMTkiIGN5PSI5IiByPSIxIiBmaWxsPSJibGFjayIvPgo8cGF0aC\a         BkPSJNOCAxNkM4IDE1LjQ0NzcgOC40NDc3MiAxNSA5IDE1SDE1QzE1LjU1MjMgMTUgMTYgMTUuNDQ3NyAxNiAxNlYx\a         NkMxNiAxNi41NTIzIDE1LjU1MjMgMTcgMTUgMTdIOUM4LjQ0NzcyIDE3IDggMTYuNTUyMyA4IDE2VjE2WiIgZmlsbD\a         0iYmxhY2siLz4KPHBhdGggZD0iTTggMTlDOCAxOC40NDc3IDguNDQ3NzIgMTggOSAxOEgxNUMxNS41NTIzIDE4IDE2\a         IDE4LjQ0NzcgMTYgMTlWMTlDMTYgMTkuNTUyMyAxNS41NTIzIDIwIDE1IDIwSDlDOC40NDc3MiAyMCA4IDE5LjU1Mj\a         MgOCAxOVYxOVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=");
}

.icon-article-doc {
  opacity: 0.72;
  position: relative;
  top: 6px;
  margin-right: 8px !important;
}
.icon-article-doc:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIg\a         ZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldm\a         Vub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOCAzSDZDNS40NDc3MiAzIDUgMy40NDc3MiA1IDRWMjBDNSAy\a         MC41NTIzIDUuNDQ3NzIgMjEgNiAyMUgxOEMxOC41NTIzIDIxIDE5IDIwLjU1MjMgMTkgMjBWNEMxOSAzLjQ0NzcyID\a         E4LjU1MjMgMyAxOCAzWk02IDFDNC4zNDMxNSAxIDMgMi4zNDMxNSAzIDRWMjBDMyAyMS42NTY5IDQuMzQzMTUgMjMg\a         NiAyM0gxOEMxOS42NTY5IDIzIDIxIDIxLjY1NjkgMjEgMjBWNEMyMSAyLjM0MzE1IDE5LjY1NjkgMSAxOCAxSDZaIi\a         BmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNNyA3QzcgNi40NDc3MiA3LjQ0NzcyIDYgOCA2SDE2QzE2LjU1MjMgNiAx\a         NyA2LjQ0NzcyIDE3IDdDMTcgNy41NTIyOCAxNi41NTIzIDggMTYgOEg4QzcuNDQ3NzIgOCA3IDcuNTUyMjggNyA3Wi\a         IgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTcgMTFDNyAxMC40NDc3IDcuNDQ3NzIgMTAgOCAxMEgxNkMxNi41NTIz\a         IDEwIDE3IDEwLjQ0NzcgMTcgMTFDMTcgMTEuNTUyMyAxNi41NTIzIDEyIDE2IDEySDhDNy40NDc3MiAxMiA3IDExLj\a         U1MjMgNyAxMVoiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGQ9Ik03IDE1QzcgMTQuNDQ3NyA3LjQ0NzcyIDE0IDggMTRI\a         MTRDMTQuNTUyMyAxNCAxNSAxNC40NDc3IDE1IDE1QzE1IDE1LjU1MjMgMTQuNTUyMyAxNiAxNCAxNkg4QzcuNDQ3Nz\a         IgMTYgNyAxNS41NTIzIDcgMTVaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
}

.navbar {
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar .navbar-inner {
  background: none;
  box-shadow: none;
}
.navbar .brand {
  padding: 0;
  height: 75px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar .brand span {
  display: none !important;
}
.navbar .brand img {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 75px;
  width: 75px;
}
.navbar .brand::before {
  content: "";
  height: 75px!important;
  width: 75px!important;
  max-height: 75px!important;
  max-width: 75px!important;
  min-height: 75px!important;
  min-width: 75px!important;
  display: inline-block;
  background-image: url("https://cdn.shopify.com/s/files/1/0684/1162/1687/files/1_5a043f3b-99cd-4b05-9d87-516606abe61a.svg?v=1752549972");
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  transform: scale(1);
  box-sizing: border-box;
  flex-shrink: 0;
}

.navbar .brand::after {
  content: "Help";
  font-family: var(--font-family-headline);
  font-size: 24px;
  font-weight: 700;
  color: #333333 !important;
  line-height: 1;
  margin-left: 12px;
}
.navbar .nav a {
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
  color: var(--color-black) !important;
  padding: 0 24px 24px 0 !important;
}

/* Sharpsticker Store Button */
.navbar .nav .sharpsticker-btn {
  background-color: #333333;
  color: #FFF5EE !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
  margin-left: 16px;
}

.navbar .nav .sharpsticker-btn:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.navbar .nav .sharpsticker-btn .arrow-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* New Store Button for sharpsticker.store */
.navbar .nav .store-btn {
  background-color: #333333;
  color: #fff5ee !important;
  padding: 12px 24px !important;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
  margin-left: auto;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .nav .store-btn:hover {
  background-color: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.navbar .nav .store-btn:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
}

.navbar .nav .store-btn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23fff5ee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.navbar .nav a [class^=icon-] {
  color: black !important;
}
.navbar .nav a:hover {
  color: var(--color-blue-dark) !important;
}
.navbar .nav .active .caret {
  display: none !important;
  color: var(--color-background-yellow);
}
.navbar .icon-bar {
  background: var(--color-black) !important;
  box-shadow: none !important;
  width: 22px !important;
}

/* Polaris Menu Icon for Navbar Button */
.navbar .navbar-toggle {
  position: relative;
}

.navbar .navbar-toggle::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 5H17.5M2.5 10H17.5M2.5 15H17.5' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide the default icon bars when using Polaris menu icon */
.navbar .navbar-toggle .icon-bar {
  display: none !important;
}
.navbar .nav-collapse {
  padding-top: var(--spacing-32);
}

@media (max-width: 768px) {
  .navbar {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .navbar .brand {
    padding-left: 0px;
    height: 60px;
    gap: 8px;
  }
  
  .navbar .brand::before {
    height: 60px !important;
    width: 60px !important;
    max-height: 60px !important;
    max-width: 60px !important;
    min-height: 60px !important;
    min-width: 60px !important;
    background-size: 60px 60px;
  }
  
  .navbar .brand::after {
    font-size: 20px;
    margin-left: 8px;
  }
  
  /* Mobile header layout with store button next to menu */
  .navbar .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .navbar .navbar-header .store-btn {
    order: 2;
    margin-left: auto;
    margin-right: 12px;
    padding: 8px 16px !important;
    font-size: 13px;
  }
  
  .navbar .navbar-toggle {
    order: 3;
  }
}
@media (max-width: 768px) {
  .navbar .nav {
    margin: 0;
  }
  .navbar .nav li a {
    line-height: var(--font-line-height-large);
    font-size: var(--font-size-large);
    margin: 0;
    padding: 0 !important;
    padding-bottom: var(--spacing-32) !important;
  }
  
  .navbar .nav .sharpsticker-btn {
    margin-left: 12px;
    padding: 8px 16px !important;
    font-size: 13px;
  }
  
  .navbar .nav .store-btn {
    margin-left: auto;
    margin-right: 12px;
    padding: 10px 20px !important;
    font-size: 13px;
  }
}
#sidebar {
  margin-top: 40px;
}
#sidebar #searchBar {
  margin-bottom: 40px;
}
#sidebar #searchBar.sm button {
  height: 56px;
}
#sidebar .search-query {
  border: 1px solid var(--color-grey-extra-light) !important;
  border-radius: 12px !important;
  color: var(--color-black) !important;
  height: 56px !important;
  font-family: var(--font-family-text) !important;
  font-size: 18px !important;
  padding-left: 16px !important;
  padding-right: 48px !important;
}
#sidebar .search-query:hover {
  border: 1px solid var(--color-grey-light) !important;
}
#sidebar .search-query:focus {
  border-color: var(--color-blue) !important;
  box-shadow: inset 0px 0px 0px 1px var(--color-blue) !important;
}
#sidebar textarea, #sidebar input[type=text] {
  box-shadow: none;
  transition: none;
  transition: all 0.1s ease-in-out !important;
}
#sidebar form button {
  right: 16px;
}
#sidebar .icon-search:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIg\a             ZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldm\a             Vub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDExQzQgNy4xMzQwMSA3LjEzNDAxIDQgMTEgNEMxNC44NjYg\a             NCAxOCA3LjEzNDAxIDE4IDExQzE4IDE0Ljg2NiAxNC44NjYgMTggMTEgMThDNy4xMzQwMSAxOCA0IDE0Ljg2NiA0ID\a             ExWk0xMSAyQzYuMDI5NDQgMiAyIDYuMDI5NDQgMiAxMUMyIDE1Ljk3MDYgNi4wMjk0NCAyMCAxMSAyMEMxMy4xMjUg\a             MjAgMTUuMDc4IDE5LjI2MzUgMTYuNjE3NyAxOC4wMzE5TDIwLjI5MjkgMjEuNzA3MUMyMC42ODM0IDIyLjA5NzYgMj\a             EuMzE2NiAyMi4wOTc2IDIxLjcwNzEgMjEuNzA3MUMyMi4wOTc2IDIxLjMxNjYgMjIuMDk3NiAyMC42ODM0IDIxLjcw\a             NzEgMjAuMjkyOUwxOC4wMzE5IDE2LjYxNzdDMTkuMjYzNSAxNS4wNzggMjAgMTMuMTI1IDIwIDExQzIwIDYuMDI5ND\a             QgMTUuOTcwNiAyIDExIDJaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
  position: 24px;
  width: 24px;
  height: 24px;
  opacity: 0.56;
}
#sidebar #serp-dd {
  top: 60px;
  box-shadow: var(--drop-shadow-large);
  color: var(--color-blue);
  border-radius: 8px;
}
#sidebar #serp-dd .noResults {
  padding: 16px 24px;
  font-size: var(--font-size-normal);
  color: var(--color-grey);
}
#sidebar #serp-dd a {
  color: var(--color-blue);
  font-size: var(--font-size-normal);
  padding: 16px 24px;
}
#sidebar h3 {
  display: none;
}
#sidebar .nav-list li {
  margin: 0;
}
#sidebar .nav-list a {
  color: var(--color-black);
  font-size: var(--font-size-normal);
  line-height: 40px !important;
  padding: 0 !important;
  text-shadow: none !important;
}
#sidebar .nav-list a:focus {
  color: var(--color-grey-extra-dark);
}
#sidebar .nav-list a:hover {
  color: var(--color-blue-dark);
}
#sidebar .nav-list .active a {
  color: var(--color-blue);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
  font-weight: 600 !important;
}
#sidebar .nav-list .active a i {
  visibility: hidden;
}
#sidebar .nav-list .active a::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6L12 10L8 14' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
}
#sidebar .nav-list .active a:focus {
  color: var(--color-blue) !important;
}
#sidebar .nav-list a:hover {
  color: var(--color-blue) !important;
}

@media (max-width: 768px) {
  #sidebar {
    margin-top: 32px;
    padding-bottom: 32px;
  }
}
#categoryHead {
  margin-bottom: 32px;
}
#categoryHead h1 {
  font-size: var(--font-size-sub-headline-large);
  line-height: var(--font-line-height-sub-headline-large);
  color: var(--color-black);
  margin-right: 224px;
  margin-bottom: 8px;
}
#categoryHead .sort {
  top: 0;
}
#categoryHead #sortBy {
  border: 1px solid var(--color-grey-extra-light);
  border-radius: 12px;
  padding: 0 12px;
  width: 220px;
  height: 48px;
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACeSURBVHgB7dZbCsMwDETR2aln51mCl9CGtoISEvqInVjkHhD4S5r5swQAAAAAF1DmqfNMr3e2/Y/Ft7dpeaQsdld1UBdHWpUoK3sndeCVQ3tLlI2dVidWuxKHhw/W/hKnhQ/W/yVODx+s30sMEz5Y35cYLnywPpcYNnywtksMHz5Y60FThA9W4vDBShw+WInDB+v5KatKGB4AAAC4gDvnIpU1Nol5ewAAAABJRU5ErkJggg==");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
}
#categoryHead #sortBy:hover {
  border: 1px solid var(--color-grey-light) !important;
}
#categoryHead #sortBy:focus {
  border: 1px solid var(--color-blue) !important;
  box-shadow: inset 0px 0px 0px 1px var(--color-blue) !important;
  outline: 0;
}

#main-content {
  background-image: none;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  #main-content {
    padding-top: 0;
  }
}
.contentWrapper {
  background-color: var(--color-white);
  border-radius: var(--border-radius-small);
  box-shadow: var(--drop-shadow-small);
  border: none !important;
  padding: var(--spacing-40);
}
.contentWrapper a {
  text-decoration: underline;
  word-break: break-word;
  font-weight: 500;
}

.related {
  border-radius: var(--border-radius-small);
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .contentWrapper {
    padding: 24px 24px;
  }
}
.articleList li {
  margin-top: 18px;
  margin-bottom: 18px;
  padding-left: 24px !important;
}

#serp h1 {
  color: var(--color-black);
  font-size: var(--font-line-height-sub-headline-normal);
  line-height: var(--font-line-height-sub-headline-normal);
  margin-bottom: 12px !important;
}
#serp .articlesFound {
  color: var(--color-grey) !important;
  margin-bottom: 24px;
  font-size: 16px;
}
#serp ul {
  margin-bottom: 0;
}
#serp li {
  margin: 24px 0;
  max-width: 560px;
}
#serp li a {
  font-size: var(--font-size-normal) !important;
  font-weight: 500;
}
#serp li:last-of-type {
  margin-bottom: 0;
}
#serp li:first-of-type {
  margin-top: 0;
}
#serp li p {
  color: var(--color-dark-grey);
  margin-left: 12px;
  font-size: var(--font-size-small);
  line-height: var(--font-line-height-small);
}

#fullArticle h1, #fullArticle h2, #fullArticle h3, #fullArticle h4, #fullArticle h5, #fullArticle strong, #fullArticle p, #fullArticle i {
  color: var(--color-black);
}
#fullArticle h1, #fullArticle .title {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-sub-headline-large);
  font-weight: 700;
  line-height: var(--font-line-height-sub-headline-large);
  margin-bottom: var(--spacing-16);
}
#fullArticle h2 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-sub-headline-normal);
  line-height: var(--font-line-height-sub-headline-normal);
  font-weight: 700;
  margin: var(--spacing-12) 0;
  margin-top: 32px;
}
#fullArticle h3 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-sub-headline-small);
  line-height: var(--font-line-height-sub-headline-small);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
#fullArticle h4 {
  font-size: var(--font-size-large);
  line-height: var(--font-size-large);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}
#fullArticle p {
  margin-bottom: var(--spacing-16);
}
#fullArticle strong {
  font-weight: 600;
}
#fullArticle p, #fullArticle ul, #fullArticle ol, #fullArticle li, #fullArticle blockquote, #fullArticle dd, #fullArticle table {
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle img {
  border: none;
  border: 1px solid var(--color-grey-extra-light);
  padding: 0;
  border-radius: 10px;
}
#fullArticle hr {
  border: none;
  margin: var(--spacing-40) 0;
}
#fullArticle article {
  margin-bottom: 32px;
}
#fullArticle dl {
  margin: var(--spacing-32) 0;
}
#fullArticle dt {
  color: var(--color-black);
  background: none;
  font-size: var(--font-size-normal);
  font-weight: 600;
  line-height: var(--font-line-height-normal);
  padding: 0;
  padding-top: 4px;
  text-align: left;
  width: 32px;
}
#fullArticle dt::after {
  content: ".";
}
#fullArticle dd {
  padding-top: var(--spacing-4);
  margin-left: var(--spacing-40);
  margin-bottom: var(--spacing-16);
}
#fullArticle dd h1, #fullArticle dd h2, #fullArticle dd h3, #fullArticle dd h4, #fullArticle dd h5, #fullArticle dd h6 {
  margin: 0;
  margin-bottom: 4px;
  font-size: var(--font-size-large);
  line-height: var(--font-line-height-large);
  font-weight: 600;
  margin: 0;
  color: var(--color-black);
}
#fullArticle dd p {
  margin: 0;
}
#fullArticle dd img {
  margin: 0;
  margin-top: 16px;
  margin-bottom: 24px;
}
#fullArticle ul {
  list-style: none;
  margin-left: 32px;
}
#fullArticle li {
  margin-bottom: 12px;
}
#fullArticle li strong + p {
  margin-top: 0;
}
#fullArticle li:last-of-type {
  margin-bottom: 0;
}
#fullArticle ul li::before {
  content: "•";
  color: var(--color-black);
  font-weight: bold;
  display: inline-block;
  width: 24px;
  margin-left: -24px;
  color: var(--color-blue);
}
#fullArticle .callout-blue {
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-yellow {
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-warning {
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-grey {
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-red{
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-green{
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
#fullArticle .callout-gray{
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  font-family: var(--font-family-text);
  font-size: var(--font-size-normal);
  line-height: var(--font-line-height-normal);
}
/* Our Custom Classes below */
.articleRatings {
  box-shadow: none;
  border-radius: 4px;
  border-color: var(--color-grey-light);
  margin-top: 64px;
}

.beaconContent {
  display: none;
}

.userGuides ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
.userGuides li {
  width: 29%;
  border-top: solid 2px var(--color-blue);
  border-top: solid 2px var(--color-grey-extra-light);
  padding: 0;
  padding-bottom: 40px;
  padding-top: 8px;
  margin-left: 2% !important;
  margin-right: 2% !important;
  margin-bottom: 24px !important;
}
.userGuides a {
  text-decoration: none;
  word-break: break-word !important;
}
.userGuides li::before {
  content: "" !important;
  width: 0 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .userGuides li {
    width: 100%;
  }
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  border: 4px solid #333333;
  border-radius: 10px;
}
.tabs input[type=radio] {
  display: none;
}
.tabs input + label {
  flex-grow: 3;
}
.tabs label {
  background: var(--color-grey-extra-light);
  order: 1;
  outline: none;
  display: block;
  padding: 1rem 2rem;
  margin: 0;
  width: auto;
  color: var(--color-dark-grey);
  font-size: var(--font-size-normal);
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}
.tabs label:hover {
  color: var(--color-blue-dark);
}
.tabs label:first-of-type {
  border-top-left-radius: 8px;
}
.tabs label:last-of-type {
  border-top-right-radius: 8px;
}
.tabs [id^=tab]:checked + label {
  top: 0;
  padding-top: 17px;
  background: var(--color-background-grey);
  color: var(--color-blue);
  font-weight: 500;
}
.tabs [id^=tab]:checked + label + .tab-content {
  display: block;
  width: 100%;
}
.tabs .tab-content {
  background: var(--color-background-grey);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: none;
  flex-grow: 1;
  order: 99;
  padding: 24px;
}

@media (max-width: 768px) {
  .tabs label {
    width: 100%;
  }
  .tabs label:first-of-type, .tabs label:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.callout {
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
  background: var(--color-background-info-blue) !important;
  
}
.callout h3 {
  margin: 0 0 12px !important;
  font-family: var(--font-family-headline) !important;
  font-size: var(--font-size-sub-headline-small) !important;
  line-height: var(--font-line-height-sub-headline-small) !important;
  font-weight: 700 !important;
}
.callout p {
  font-size: var(--font-size-normal) !important;
  font-family: var(--font-family-text);
  color: var(--color-black);
}
.callout.grey {
  background: var(--color-background-grey) !important;
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
}
.callout.yellow {
  background: var(--color-background-warning-yellow) !important;
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
}
.callout.warning {
  background: var(--color-background-error-red) !important;
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
}
.quick-answers {
  background-color: #333333;
  color: #FFF5EE;
  border-left: none !important;
  border-radius: 10px;
  padding: 32px !important;
}

  .quick-anwsers-heading{
    color:#FFF5EE !important;
}

.quick-answers details {
  margin: 0px 0px 12px 12px;
  outline: none;
  color:#333333;
}

.quick-answers details summary {
  background: var(--color-background-grey);
  padding: 24px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}
.quick-answers details summary:hover {
  color: var(--color-blue-dark);
}
.quick-answers details[open] {
  background: #FFF5EE;
  border-radius: 10px;
  padding: 24px;
  margin: 12px;
  outline: none;
}
.quick-answers details[open] summary {
  padding: 0;
  padding-bottom: 16px;
  box-shadow: none;
  border-radius: 0;
  outline: none;
}
.quick-answers details p {
  margin-left: 20px;
}

/*-----------------------*/
#contactModal {
  border: none !important;
  border-radius: 10px;
  padding: 24px !important;
}
#contactModal h2 {
  border: none;
  color: var(--color-black);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-sub-headline-normal);
  font-weight: 700;
  padding: 0;
}
#contactModal .form-horizontal .control-label {
  width: 100px;
  text-align: left;
  font-size: var(--spacing-16);
  color: var(--color-black);
}
#contactModal .controls input {
  text-align: left;
  font-size: var(--spacing-16);
  color: var(--color-black);
  border-radius: 10px;
  border: 1px solid var(--color-grey-extra-light);
}

.articleFoot {
  display: none;
}

footer {
  padding-top: 248px;
  color: var(--color-grey-dark) !important;
}
footer p, footer span, footer a {
  color: var(--color-grey-dark) !important;
  font-size: var(--font-size-small);
}


@media (max-width: 768px) {
  body {
    background-size: 1400px;
  }
}
#category-5 {
  background-size: 200px 200px;
  background-image: url(https://cdn.shopify.com/s/files/1/0684/1162/1687/files/returns_Icon_538f793e-2046-4852-bc09-0fd5205b0ef5.svg?v=1754153300);
}

#category-33 {
  background-size: 200px 200px;
  background-image: url(https://cdn.shopify.com/s/files/1/0684/1162/1687/files/product_info.svg?v=1754363867);
  background-position: center;
}

#category-20 {
  background-size: 200px 200px;
  background-image: url(https://cdn.shopify.com/s/files/1/0684/1162/1687/files/Product_Icon_b5f463f1-741d-449f-939c-da7d8723fe4a.svg?v=1754154124);
}

#category-21 {
  background-size: 200px 200px;
  background-image: url(https://cdn.shopify.com/s/files/1/0684/1162/1687/files/Sticker_icon_1a39a916-0b20-44f9-8f19-82cf53144707.svg?v=1754364347)
}

#category-407, #category-585 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/6137837a00c03d6720754967/file-GGrVX3UuPS.png);
}

#category-411, #category-586 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783982b380503dfdeebca/file-s4sX3roUYN.png);
}

#category-410, #category-588 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/6137836012c07c18afdd19fe/file-TfdpZunZ1P.png);
}

#category-713 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613679c012c07c18afdd167a/file-oUhm3wt4HO.png);
  width: 75% !important;
  margin-top: 25px !important;
}

#category-673 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613679c012c07c18afdd167a/file-oUhm3wt4HO.png);
}

#category-674 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783d22b380503dfdeebcc/file-in5dPp2E52.png);
}

#category-675 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783fd2bd60b76c2e6c00f/file-8Xn6TsitJS.png);
}

#category-677 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783e36c65aa15b87d7e16/file-mkJu8TtPjW.png);
}

#category-735 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783f400c03d672075496a/file-staRQuy3Tm.png);
  order: -1;
}

#category-714 {
  background-size: 200px 200px;
  background-image: url(https://s3.amazonaws.com/helpscout.net/docs/assets/5769525d9033601c8a8ec820/images/613783982b380503dfdeebca/file-s4sX3roUYN.png);
  width: 75% !important;
  margin-top: 25px !important;
}

#collection-category-308, #support-center {
  display: none;
}

/* Modal Overlay Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  display: none;
}

.modal-content {
  background-color: #FFF5EE;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: block !important;
  font-family: inherit;
}

.modal-content h2 {
  font-family: var(--font-family-headline);
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333333;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid #333333;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  transition: all 0.2s ease-in-out;
}

#modal-continue-btn {
  background-color: #333333;
  color: #FFF5EE;
}

#modal-continue-btn:hover {
  opacity: 0.8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#modal-cancel-btn {
  background-color: transparent;
  color: #333333;
}

#modal-cancel-btn:hover {
  background-color: #e0d5cd;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
  .modal-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================================================
   CSS-Only Rotating Placeholders Example Implementation
   ========================================================================== */

/* Example styles to demonstrate the CSS-only rotating placeholders feature */
.example-section {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 20px 0;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  box-sizing: border-box;
  position: relative;
}

.search-button {
  position: absolute;
  right: 4px;
  top: 4px;
  background: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS-only rotating placeholder implementation */
.search-input {
  position: relative;
}

.search-input::before {
  content: "Search for help articles...";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  z-index: 1;
  animation: rotatePlaceholders 15s infinite;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.search-input:focus::before {
  opacity: 0;
}

.search-input:not(:placeholder-shown)::before {
  opacity: 0;
}

/* CSS-only rotating placeholder animation */
@keyframes rotatePlaceholders {
  0%, 8% {
    content: "Search for help articles...";
  }
  10%, 18% {
    content: "How to return an item?";
  }
  20%, 28% {
    content: "Where is my order?";
  }
  30%, 38% {
    content: "How to contact support?";
  }
  40%, 48% {
    content: "Product information...";
  }
  50%, 58% {
    content: "Shipping questions...";
  }
  60%, 68% {
    content: "Account help...";
  }
  70%, 78% {
    content: "Payment issues...";
  }
  80%, 88% {
    content: "Size guide...";
  }
  90%, 98% {
    content: "Track my package...";
  }
  100% {
    content: "Search for help articles...";
  }
}

.search-input::placeholder {
  color: transparent;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.search-input:focus::placeholder {
  opacity: 0;
}

/* ==========================================================================
   End of Stylesheet
   ========================================================================== */

/**
 * Production Notes - Help Scout Help Center:
 * 
 * This stylesheet has been optimized for Help Scout production use with:
 * - Organized CSS custom properties with clear naming conventions
 * - Comprehensive responsive design with mobile-first approach
 * - Accessibility features including proper focus states (WCAG compliant)
 * - Performance optimizations with efficient selectors
 * - Cross-browser compatibility considerations
 * - Professional documentation and code organization
 * - Help Scout specific optimizations and compatibility
 * 
 * Help Scout Integration Guidelines:
 * - Test all changes in Help Scout's CSS customization interface
 * - Ensure compatibility with Help Scout's default article layouts
 * - Maintain Help Scout's search functionality and navigation
 * - Verify responsive behavior on Help Scout's mobile experience
 * - Check accessibility with Help Scout's built-in features
 * 
 * For maintenance and updates:
 * - Use CSS custom properties for consistent theming
 * - Follow the established naming conventions
 * - Test across different devices and browsers
 * - Maintain accessibility standards (WCAG 2.1 AA)
 * - Document any new features or changes
 * - Test in Help Scout's preview mode before publishing
 * - Backup original Help Scout styles before major changes
 * 
 * Rotating Placeholder Feature:
 * - CSS-only solution using animations and pseudo-elements
 * - No JavaScript required - fully functional with CSS only
 * - Placeholder text rotates every 15 seconds with smooth transitions
 * - Automatically pauses when user focuses on the input field
 * - Works with both main search bar and sidebar search
 * - Uses ::before pseudo-element with CSS animations for rotation
 */
