body {
font-family: sans-serif;
  /* Use a CSS variable for consistent header offset across breakpoints */
  padding-top: var(--header-height, 64px);
    background-color: #191919;
	   color: #D3D3D3;
}

/* ===== Design Tokens: Navigation Dropdown ===== */
:root {
  /* Header height used to offset fixed navbar */
  --header-height: 64px;
  --tmx-brand-green: #5CA316;
  --tmx-brand-green-soft: #7BC428;
  --tmx-ink-900: #0F0F0F;
  --tmx-ink-800: #1A1A1A;
  --tmx-ink-700: #232323;
  --tmx-ink-100: #E5E5E5;
  --tmx-ink-050: #F8F8F8;
  --tmx-bronze-accent: #B58A55;
  --tmx-radius-md: 12px;
  --tmx-radius-sm: 8px;
  --tmx-spacing-xxs: 4px;
  --tmx-spacing-xs: 8px;
  --tmx-spacing-sm: 12px;
  --tmx-spacing-md: 16px;
  --tmx-spacing-lg: 24px;
  --tmx-transition-ease: 0.25s ease;
  --tmx-transition-sculpted: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --tmx-drop-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* ===== Crafts-Themed Navigation Dropdown ===== */

/* Dropdown Container */
.navbar-nav .dropdown {
  position: relative;
}

/* Dropdown Toggle - Sophisticated Link Style */
.navbar-nav .dropdown > .dropdown-toggle {
  position: relative;
  padding: 15px 20px;
  color: var(--tmx-ink-100);
  transition: all var(--tmx-transition-ease);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.navbar-nav .dropdown > .dropdown-toggle:hover,
.navbar-nav .dropdown > .dropdown-toggle:focus {
  color: var(--tmx-brand-green-soft);
  background-color: rgba(92, 163, 22, 0.08);
}

/* Active/Open State */
.navbar-nav .dropdown.open > .dropdown-toggle,
.navbar-nav .dropdown > .dropdown-toggle[aria-expanded="true"] {
  color: var(--tmx-brand-green);
  background-color: rgba(92, 163, 22, 0.12);
}

/* Caret Enhancement - Artisan Touch */
.navbar-nav .dropdown .caret {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--tmx-transition-ease);
  border: none;
  width: 0;
  height: 0;
  vertical-align: middle;
}

.navbar-nav .dropdown.open .caret,
.navbar-nav .dropdown .dropdown-toggle[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

/* Dropdown Menu - Crafts Aesthetic */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  /* z-index managed by z-index.css */
  display: none;
  min-width: 320px;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, var(--tmx-ink-800) 0%, var(--tmx-ink-700) 100%);
  border: 1px solid rgba(92, 163, 22, 0.2);
  border-radius: var(--tmx-radius-md);
  box-shadow: var(--tmx-drop-shadow-soft);
  overflow: hidden;
  animation: dropdownSlideIn var(--tmx-transition-sculpted);
}

/* Dropdown visible states */
.navbar-nav .dropdown.open .dropdown-menu,
.navbar-nav .dropdown-menu[style*="display: block"] {
  display: block;
}

/* Smooth entrance animation */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Hero Section - Featured Image */
.dropdown-hero {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(to bottom, var(--tmx-ink-900), var(--tmx-ink-800));
  border-bottom: 2px solid var(--tmx-brand-green);
  overflow: hidden;
}

.dropdown-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(92, 163, 22, 0.15) 0%, 
    rgba(181, 138, 85, 0.1) 100%
  );
  opacity: 0;
  transition: opacity var(--tmx-transition-ease);
  pointer-events: none;
}

.dropdown-hero:hover::before {
  opacity: 1;
}

.dropdown-hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--tmx-transition-ease);
}

.dropdown-hero-link:hover {
  transform: scale(1.02);
}

.dropdown-hero-figure {
  margin: 0;
  padding: var(--tmx-spacing-md);
  position: relative;
}

.dropdown-hero-figure img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--tmx-radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--tmx-transition-ease);
}

.dropdown-hero:hover .dropdown-hero-figure img {
  box-shadow: 0 6px 20px rgba(92, 163, 22, 0.4);
}

.dropdown-hero-caption {
  margin-top: var(--tmx-spacing-sm);
  padding: 0 var(--tmx-spacing-xs);
  font-size: 13px;
  line-height: 1.5;
  color: var(--tmx-ink-100);
  text-align: center;
  font-style: italic;
  opacity: 0.85;
}

/* Dropdown Menu Items - Artisan Typography */
.dropdown-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(92, 163, 22, 0.1);
  transition: background-color var(--tmx-transition-ease);
}

.dropdown-menu > li:last-child {
  border-bottom: none;
}

.dropdown-menu > li > a {
  display: block;
  padding: var(--tmx-spacing-sm) var(--tmx-spacing-lg);
  color: var(--tmx-ink-100);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: all var(--tmx-transition-ease);
  position: relative;
  overflow: hidden;
}

/* Subtle accent bar on hover */
.dropdown-menu > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tmx-brand-green);
  transform: translateX(-4px);
  transition: transform var(--tmx-transition-ease);
}

.dropdown-menu > li > a:hover::before,
.dropdown-menu > li > a:focus::before {
  transform: translateX(0);
}

/* Hover State - Crafted Elegance */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: var(--tmx-brand-green-soft);
  background: linear-gradient(90deg, 
    rgba(92, 163, 22, 0.15) 0%, 
    rgba(92, 163, 22, 0.05) 100%
  );
  padding-left: calc(var(--tmx-spacing-lg) + var(--tmx-spacing-xs));
}

/* Active/Current Page Indicator */
.dropdown-menu > li.active > a,
.dropdown-menu > li > a[aria-current="page"] {
  color: var(--tmx-brand-green);
  background-color: rgba(92, 163, 22, 0.1);
  font-weight: 500;
}

/* Keyboard Focus States - Accessibility */
.dropdown-menu > li > a:focus {
  outline: 2px solid var(--tmx-brand-green);
  outline-offset: -2px;
}

.dropdown-toggle:focus {
  outline: 2px solid var(--tmx-brand-green);
  outline-offset: 2px;
}

/* Role-based styling for screen readers */
.dropdown-menu[role="menu"] > li[role="presentation"] > a[role="menuitem"] {
  cursor: pointer;
}

/* Mobile Responsive - Touch-Friendly */
@media (max-width: 767px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background: var(--tmx-ink-800);
    border: none;
    border-radius: 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-hero {
    display: none; /* Hide hero image on mobile for cleaner experience */
  }
  
  .dropdown-menu > li > a {
    padding: var(--tmx-spacing-md) var(--tmx-spacing-lg);
    font-size: 16px; /* Larger touch targets */
  }
}

/* Desktop Hover Enhancement */
@media (min-width: 768px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    animation: dropdownSlideIn var(--tmx-transition-sculpted);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .navbar-nav .dropdown-menu {
    border: 2px solid var(--tmx-brand-green);
  }
  
  .dropdown-menu > li > a:focus {
    outline: 3px solid var(--tmx-brand-green);
  }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  .navbar-nav .dropdown-menu {
    animation: none;
    transition: none;
  }
  
  .dropdown-menu > li > a,
  .dropdown-toggle,
  .dropdown-hero-link {
    transition: none;
  }
  
  .navbar-nav .dropdown .caret {
    transition: none;
  }
}

/* Print Styles - Dropdown */
@media print {
  .navbar-nav .dropdown-menu {
    display: none !important;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /* z-index managed by z-index.css */
  background: rgba(24, 24, 24, 0.95);
  color: #f4f1e6;
  padding: 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__message {
  flex: 1 1 240px;
  margin: 0;
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner__btn {
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  background: #3f6b42;
  color: #fff;
  transition: background 180ms ease;
}

.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #2f5132;
  outline: none;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: #f4f1e6;
  border: 1px solid rgba(244, 241, 230, 0.4);
}

.cookie-banner__btn--secondary:hover,
.cookie-banner__btn--secondary:focus {
  background: rgba(244, 241, 230, 0.1);
}

.cookie-banner__link {
  color: #c6a15b;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn,
  .cookie-banner__btn--secondary {
    width: 100%;
    text-align: center;
  }
}

.masthead {
  padding-top: 35px;
  position: relative;
  z-index: var(--z-header);
}

h1 {
margin-bottom: 30px;
  margin-top: 30px;
  }
.frontblock {
background-color: #eee;
margin-top: -20px;
padding: 35px 0px;
text-align: center;
  margin-bottom: 20px;
}
.process {
text-align: center;
color: #fff;
margin: 35px 0px;
}
.process .row {
border-top: solid 5px #333;
}
.centerline {
background-color: #eee;
color: #333;
text-align: center;
padding: 10px 0px 18px 0px;
}

h1, h2, h3, h4 {
font-family: sans-serif;
 color: #fff;
}
h4#myModalLabel {
  color: #000;
}
.services .panel-body img {
width:100%;
max-width: 100%;
height: auto;
}
.frontblock.serviceb {
  background-image: url("../images/services.jpg");
  height: 300px;
  color: #fff;
}
.frontblock.designerb {
  background-color:#A1A1A3;
  height: 220px;
  color: #fff;
}
.frontblock.designerb h1 {
margin-top:40px;
}
.frontblock.contactb {
  background-image: url("../images/workshop.jpg");
  height: 300px;
  color: #fff;
}
.frontblock.workshopb {
  background-image: url("../images/workshop.jpg");
  height: 300px;
  color: #fff;
}
.frontblock.homeb {
  background-image: url("../images/home.jpg");
  height: 400px;
    margin-bottom: 0;
  color: #fff;
}
.frontblock h1 {
  font-size: 60px;
  text-shadow: 1px 1px 1px #000;
}
.frontblock.homeb h2 {
  font-size: 28px;
  margin: 19px 0px;
  text-shadow: 1px 1px 1px #000;
  font-weight: bold;
}
footer.footer-bottom a {
  color: #B3B3B3;
}
.panel-default>.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
  font-weight: bold;
}
.services h2 {
  border-left: solid 35px #A17BB6;
  padding-left: 6px;
  color: #333;
  border-bottom: solid 2px #A17BB6;
  margin-bottom: 30px;
  padding-bottom: 4px;
  font-size: 26px;
}
.services .panel-body span {
  font-size: 32px;
  width: 100%;
  display: inline-block;
  margin-bottom: 0px;
}
.services .panel-body p {
  margin-top: 10px;
  margin-bottom: 5px;
}
.services .panel-body {
text-align:center;
}
footer.footer-bottom {
background-color: #333;
color: #B3B3B3;
margin-top: 35px;
padding-top: 35px;
padding-bottom: 10px;
}
footer.footer-bottom h4 {
  color: #F2F2F2;
    margin-bottom: 20px;
}
.btn-primary {
  color: #fff;
  background-color: #4F8E10;
  border-color: #447712;
}
.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open>.dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #447712;
  border-color: #447712;
}
.homecta {
  background-image: url("../images/ctaback.jpg");
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: .9;
}
.centerline .row {
margin: 30px 0px;
}
.item h3 {
font-size: 24px;
font-weight: bold;
}
.centerline h2 {
  color: #333;
  font-size: 46px;
  text-transform: uppercase;
}
.process .col-md-3 {
padding: 35px 0px;
}
.green {
background-color:#5CA316;
}
.blue {
background-color:#007EE1;
}
.yellow {
background-color:#A17BB6;
}
.process h2 {
color: #333;
font-size: 46px;
text-transform: uppercase;
}
.red {
background-color:#EB3C00;
}
.navbar-default {
background: #000;
background-color: #000;
border: 0px;
border-radius: 0px;
  border-bottom: solid 1px #333;
}
.navbar {
  min-height: var(--header-height);
}
/* Enhanced Navbar Brand Logo - Crafts Theme */
a.navbar-brand {
  position: relative;
  /* Vertically center brand within header height */
  height: var(--header-height);
  padding: 0 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

a.navbar-brand:hover {
  background: linear-gradient(135deg, rgba(92, 163, 22, 0.1) 0%, rgba(92, 163, 22, 0.05) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 163, 22, 0.2);
}

a.navbar-brand img {
  display: block;
  /* Constrain by height for responsiveness; width scales automatically */
  max-height: calc(var(--header-height) - 16px);
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1.1);
}

a.navbar-brand:hover img {
  filter: brightness(1.05) contrast(1.15) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transform: scale(1.02);
}
.navbar-default .navbar-nav>li>a {
color: #cbcbcb;
font-size: 16px;
text-transform: uppercase;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
color: #FFF;
background-color: #0B0B0B;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
color: #FFF;
background-color: black;
}
.nav>li>a {
position: relative;
display: block;
padding: 10px 25px;
}

.copyright {
  border-top: solid 1px rgba(255, 255, 255, 0.13);
  padding: 10px 0px;
    font-size: 13px;
	  margin-top: 30px;
}
.copyright span {
  color:#BABABA;
}
.copyright a {
  color:#fff;
}
.hcta {
font-size: 20px;
}
.hcta span {
color: #5CA316;
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  /* Center the hamburger within the header height */
  margin-top: calc((var(--header-height) - 34px) / 2);
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 0px solid transparent;
  border-radius: 4px;
  color: #FFFFFF;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: #525252;
}

@media (max-width: 660px) {
.frontblock.homeb h2 {
  font-size: 18px;
  margin: 19px 0px;
  text-shadow: 1px 1px 1px #000;
  font-weight: bold;
  line-height: 28px;
}
.frontblock h1 {
  font-size: 34px;
  text-shadow: 1px 1px 1px #000;
}
.frontblock.homeb span {
  font-size: 16px!important;
}
.frontblock.homeb h3 {
  font-size: 16px;
}
.frontblock.homeb {

  font-size: 6px!important;
}

}


@media (max-width: 768px) {
.col-md-6 img {
width:100%;
max-width: 100%;
height: auto;
}
.masthead img {
width:100px;
max-width: 100px;
height: auto;
margin-bottom: 14px;
}
.modal-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  float: none;
  margin-bottom: 10px;
}
}
.item h3 {
  font-size: 15px;
  font-weight: bold;
}
.item h2 {
  font-size: 19px;
  font-weight: bold;
}
.navbar {
  min-height: var(--header-height);
  margin-bottom: 0px;
}
body {
  padding-top: var(--header-height);
}
.masthead {
  padding-top: 0px;
}

/* Hide language switcher on mobile - takes up too much space */
p.usano,
div.usano {
    display: none;
}

@media (min-width: 768px) {
:root { --header-height: 80px; }

/* Show language switcher on desktop */
div.usano,
p.usano {
    display: inline-flex !important;
}

.navbar-nav>li>a {
  /* Align nav links to header without extra padding */
  padding-top: 0;
  padding-bottom: 0;
  line-height: var(--header-height);
}
.navbar-nav>li {
float: left;
}
div#navbar {
  /* Remove legacy offset that caused misalignment */
  margin-top: 0;
}

/* Legacy dropdown styles - superseded by crafts-themed styles above */
/* Keeping minimal compatibility for transition period */


}



figcaption {
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  opacity: 0;

}
figure {
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
}
figure:hover figcaption {
opacity: .60;
-webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
color: #fff;
}
.cf {
  position:relative;
  height:360px;

  margin:0 auto;
   margin-bottom: 30px;
}
.col-md-4 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Modal images should be responsive */
.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ensure images in content blocks are responsive */
.content img {
  max-width: 100%;
  height: auto;
}
.cf img {
  position:absolute;
  left:0;
  -webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}
figure:hover img.top,
.cf img.top:hover {
  opacity:0;
}
.modal-content {
  color: #000;
}
figcaption h2 {
  margin-top: 145px;
  font-size: 22px;
  text-align: center;
}
.modal-body table.table {
  color: #000!important;
  font-size: 13px;
}

.sidebar-nav {
    padding: 9px 0;
}


.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  color: #FFF;
  background-color: rgba(231, 231, 231, 0);
}

/* Legacy dropdown menu styles - now handled by crafts theme above */
/* Social Media Icons - Crafts Theme */
.socialm {
  margin-top: 20px;
}

.socialm h4 {
  color: #5CA316;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid #5CA316;
  padding-bottom: 8px;
  display: inline-block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socialm a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 8px;
  color: #B3B3B3;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.socialm a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(92, 163, 22, 0.2), transparent);
  transition: left 0.6s ease;
}

.socialm a:hover::before {
  left: 100%;
}

.socialm a:hover {
  color: #fff;
  border-color: #5CA316;
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 20px rgba(92, 163, 22, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socialm .fa,
.socialm .fab {
  width: auto;
  text-align: center;
  position: relative;
  /* z-index managed by z-index.css */
}
.frontthree {
margin-top:30px;
}
.productcat .cattitle {
  position: absolute;
  /* z-index managed by z-index.css */
  background-color: rgba(0, 0, 0, 0.1);
  width: 92.5%;
  height: 100%;
  padding-top: 168px;
  font-size: 20px;
  color: #FFF;
  text-align: center;
  text-shadow: 2px 1px 2px #000;
  -webkit-transition: .5s;
  transition: .5s;
}
.productcat .cattitle:hover {
  background-color: rgba(0, 0, 0, 0.51);
  padding-top: 155px;
}
a.slidebtn {
  border: solid 2px #FFF;
  padding: 10px;
  color: #FFF;
}
label.error {
  color: #F6FA46;
  font-weight: normal;
}
span.green.textcenter {
  background-color: #6AB520;
  display: inline-block;
  width: 100%;
  padding: 10px 0px 1px 10px;
  color: #fff;
  border-radius: 5px;
}
div#error span {
  background-color: #B54820;
  display: inline-block;
  width: 100%;
  padding: 10px 0px 1px 10px;
  color: #fff;
  border-radius: 5px;

}
#success, #error {
    display:none
}
.carousel-caption h2 {
  margin-top: 0px;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  /* z-index managed by z-index.css */
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.98);
}
p.usano {
    position: absolute;
    right: 8%;
    top: 10px;
}

/* Language Switcher Flags - Override masthead img sizing */
.usano img,
div.usano img {
    width: 25px !important;
    max-width: 25px !important;
    height: 25px !important;
    margin-bottom: 0 !important;
    display: inline-block;
    vertical-align: middle;
}

.usano a {
    display: inline-block;
    margin: 0 4px;
    line-height: 1;
}

.usano {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Google Translate Element - Proper Positioning */
div#google_translate_element {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: var(--z-google-translate);
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
}

/* Hide Google Translate on mobile to avoid clutter */
@media (max-width: 767px) {
    div#google_translate_element {
        display: none !important;
    }
}

/* Desktop positioning - below header */
@media (min-width: 768px) {
    div#google_translate_element {
        top: calc(var(--header-height) + 10px);
        right: 20px;
    }
}

/* Dropdown hover behavior is now handled in crafts-themed section above */

/* ===== RELIABLE SOCIAL MEDIA ICONS (No External Dependencies) ===== */

/* Custom social media icons that don't depend on Font Awesome */
.social-icon-custom {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white !important;
    text-decoration: none;
    margin-right: 10px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #333;
}

.social-icon-custom:hover {
    color: white !important;
    text-decoration: none;
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon-custom:focus {
    color: white !important;
    text-decoration: none;
}

/* Platform-specific colors and symbols */
.facebook-custom {
    background-color: #1877f2;
}

.facebook-custom::before {
    content: "f";
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: bold;
}

.twitter-custom {
    background-color: #1da1f2;
}

.twitter-custom::before {
    content: "𝕏";
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.instagram-custom {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram-custom::before {
    content: "📷";
    font-size: 18px;
}

.pinterest-custom {
    background-color: #bd081c;
}

.pinterest-custom::before {
    content: "P";
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.linkedin-custom {
    background-color: #0077b5;
}

.linkedin-custom::before {
    content: "in";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

/* Enhanced Social Media Icons - Crafts Theme Override */

/* Platform-specific hover effects with crafts theme colors */
.socialm a[href*="facebook"]:hover {
  background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
  border-color: #1877f2;
  box-shadow:
    0 8px 20px rgba(24, 119, 242, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socialm a[href*="twitter"]:hover {
  background: linear-gradient(135deg, #1da1f2 0%, #1991db 100%);
  border-color: #1da1f2;
  box-shadow:
    0 8px 20px rgba(29, 161, 242, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socialm a[href*="instagram"]:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  box-shadow:
    0 8px 20px rgba(225, 48, 108, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socialm a[href*="pinterest"]:hover {
  background: linear-gradient(135deg, #bd081c 0%, #a0071a 100%);
  border-color: #bd081c;
  box-shadow:
    0 8px 20px rgba(189, 8, 28, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.socialm a[href*="linkedin"]:hover {
  background: linear-gradient(135deg, #0077b5 0%, #006ba1 100%);
  border-color: #0077b5;
  box-shadow:
    0 8px 20px rgba(0, 119, 181, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile responsive design for social icons */
@media (max-width: 768px) {
  .socialm a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .social-links {
    justify-content: center;
    gap: 8px;
  }

  .socialm h4 {
    text-align: center;
    font-size: 16px;
  }
}

/* Font Awesome fallback styles with crafts theme integration */
.socialm a[href*="facebook"] .fab:before,
.socialm a[href*="facebook"] .fa:before {
    content: "f" !important;
    font-family: Georgia, serif !important;
    font-style: italic !important;
    font-weight: bold !important;
}

.socialm a[href*="twitter"] .fab:before,
.socialm a[href*="twitter"] .fa:before {
    content: "𝕏" !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
}

.socialm a[href*="instagram"] .fab:before,
.socialm a[href*="instagram"] .fa:before {
    content: "📷" !important;
    font-size: 18px !important;
}

.socialm a[href*="pinterest"] .fab:before,
.socialm a[href*="pinterest"] .fa:before {
    content: "P" !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
}

.socialm a[href*="linkedin"] .fab:before,
.socialm a[href*="linkedin"] .fa:before {
    content: "in" !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    font-size: 14px !important;
}

/* Hide Font Awesome fallback text */
.socialm a span {
    display: none !important;
}

/* ===== END RELIABLE SOCIAL MEDIA ICONS ===== */

/* ===== BOOTSTRAP CARET FIX ===== */
/* Prevent Font Awesome from overriding Bootstrap carets */

/* Bootstrap caret styles - high specificity to override Font Awesome */
.dropdown-toggle .caret,
.dropdown .caret,
.navbar .caret,
.nav .caret,
span.caret {
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: 2px !important;
    vertical-align: middle !important;
    border-top: 4px solid !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    font-family: inherit !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specifically override Font Awesome caret content */
.dropdown-toggle .caret:before,
.dropdown .caret:before,
.navbar .caret:before,
.nav .caret:before,
span.caret:before {
    content: none !important;
    display: none !important;
}

/* Additional protection for navbar dropdown carets */
.navbar-nav .dropdown .caret {
    border-top-color: inherit !important;
}

/* Ensure dropdown carets inherit text color */
.navbar-default .navbar-nav > li > a .caret {
    border-top-color: #cbcbcb !important;
}

.navbar-default .navbar-nav > li:hover > a .caret,
.navbar-default .navbar-nav > li.open > a .caret {
    border-top-color: #fff !important;
}

/* Dropup caret (pointing up) */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0 !important;
    border-bottom: 4px solid !important;
    content: "" !important;
}

.dropup .caret:before,
.navbar-fixed-bottom .dropdown .caret:before {
    content: none !important;
    display: none !important;
}

/* ===== END BOOTSTRAP CARET FIX ===== */

/* ===== ENHANCED LOGO STYLING - CRAFTS THEME ===== */

/* Payment Info Section */
.payment-info {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Company Logo in Footer */
.company-logo {
  margin-bottom: 25px;
}

.company-logo a {
  display: inline-block;
  padding: 15px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.company-logo a:hover {
  border-color: #5CA316;
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(92, 163, 22, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.company-logo img {
  width: 112px;
  height: 112px;
  transition: all 0.3s ease;
  filter: brightness(0.9) contrast(1.1);
}

.company-logo a:hover img {
  filter: brightness(1) contrast(1.2) drop-shadow(0 4px 8px rgba(92, 163, 22, 0.2));
}

/* PayPal Logo Styling */
.payment-logo {
  margin-top: 20px;
}

.payment-logo a {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.payment-logo a:hover {
  border-color: #5CA316;
  transform: translateY(-2px);
  box-shadow:
    0 6px 15px rgba(92, 163, 22, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.payment-logo img {
  width: 150px;
  height: 60px;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1.05);
}

.payment-logo a:hover img {
  filter: brightness(1.02) contrast(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Enhanced Trust Badge */
.trust-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5CA316 0%, #4a8d12 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  box-shadow:
    0 4px 12px rgba(92, 163, 22, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-icon {
  font-size: 14px;
}

.badge-text {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Tagline */
.company-tagline {
  color: #B3B3B3;
  font-size: 12px;
  margin: 8px 0 0 0;
  font-style: italic;
  text-align: center;
}

/* Payment Text */
.payment-text {
  color: #5CA316;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px 0;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .payment-info {
    margin: 15px auto;
    padding: 20px 15px;
    max-width: 90%;
  }

  .company-logo img {
    width: 80px;
    height: 80px;
  }

  .payment-logo img {
    width: 120px;
    height: 48px;
  }

  a.navbar-brand img {
    max-width: 180px;
    max-height: 40px;
  }
}

/* ===== END ENHANCED LOGO STYLING ===== */

/* ===== Product Modal & Gallery (React) ===== */
.product-modal {
  margin-top: 32px;
  margin-bottom: 48px;
}

.product-modal h2,
.product-modal h3,
.product-modal h4 {
  color: #EFEFEF;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* z-index managed by z-index.css */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Modal content */
.modal-content {
  background: #111;
  color: #EDEDED;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  max-width: 860px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 16px;
  max-height: 90vh;
  overflow: auto;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  color: #ccc;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #fff;
  outline: 2px solid #5CA316;
  outline-offset: 2px;
}

/* Lightbox */
.lightbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lightbox-main {
  position: relative;
  text-align: center;
}

.lightbox-main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.lightbox-controls button {
  background: #1c1c1c;
  color: #e5e5e5;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

.lightbox-controls button:hover,
.lightbox-controls button:focus {
  background: #232323;
  outline: 2px solid #5CA316;
  outline-offset: 2px;
}

.lightbox-index {
  color: #bdbdbd;
  font-size: 13px;
}

.lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.thumb {
  display: block;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 0;
  background: #141414;
}

.thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.thumb.active,
.thumb:focus,
.thumb:hover {
  outline: 2px solid #5CA316;
  outline-offset: 2px;
}

/* Variants */
.variants {
  margin-top: 12px;
}

.variant-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant {
  background: #121212;
  color: #f0f0f0;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.variant:hover,
.variant:focus {
  background: #1b1b1b;
  outline: 2px solid #5CA316;
  outline-offset: 2px;
}

.variant.active {
  background: #24341c;
  border-color: #5CA316;
}

/* Responsive modal grid on wider screens */
@media (min-width: 768px) {
  .lightbox {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox-main img,
  .thumb,
  .variant,
  .lightbox-controls button {
    transition: none !important;
  }
}

/* Print: hide overlay */
@media print {
  .modal-overlay {
    display: none !important;
  }
}
/* ===== End Product Modal & Gallery ===== */

/* Extracted dropdown styles moved to: css/dropdown-social.css */
