/* Dog Tags Testimonials Widget */
.dog-tags-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dog-tags-section {
  height: 400vh;
  position: relative;
  background: #0a0a0a;
}

.dog-tags-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dog-tags-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  z-index: 1;
  text-transform: uppercase;
}

.tag-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transform-origin: top center;
  min-height: 100px;
}

.chain-ball {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #e5e7eb, #6b7280);
  border-radius: 50%;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.6),
    inset -1px -1px 2px rgba(0,0,0,0.3),
    inset 1px 1px 2px rgba(255,255,255,0.3);
}

.dog-tag {
  width: 400px;
  height: 220px;
  background: 
    linear-gradient(135deg, 
      #cbd5e1 0%,
      #94a3b8 20%,
      #64748b 40%,
      #475569 60%,
      #334155 80%,
      #1e293b 100%
    );
  border: 3px solid #475569;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 
    0 25px 70px rgba(0,0,0,0.8),
    inset 0 2px 0 rgba(255,255,255,0.2),
    inset 0 -2px 5px rgba(0,0,0,0.5),
    inset 2px 0 10px rgba(255,255,255,0.1),
    inset -2px 0 10px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  border-style: solid;
}

.dog-tag::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  pointer-events: none;
}

.dog-tag::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #f3f4f6, #6b7280);
  border-radius: 50%;
  box-shadow: 
    0 0 0 4px #475569,
    0 3px 8px rgba(0,0,0,0.6),
    inset -2px -2px 4px rgba(0,0,0,0.4),
    inset 2px 2px 4px rgba(255,255,255,0.3);
}

.embossed-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, 
    transparent,
    rgba(0,0,0,0.3) 20%,
    rgba(0,0,0,0.3) 80%,
    transparent
  );
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}

.tag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tag-header h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #0a0a0a;
  letter-spacing: 2px;
  text-shadow: 
    1px 1px 0 rgba(255,255,255,0.3),
    -1px -1px 0 rgba(0,0,0,0.5),
    0 2px 3px rgba(0,0,0,0.3);
}

.tag-id {
  font-size: 13px;
  color: #1e293b;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.2);
}

.tag-stars {
  color: #0a0a0a;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 4px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.tag-content {
  font-size: 15px;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 14px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.2);
}

.tag-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-role {
  font-size: 12px;
  text-transform: uppercase;
  color: #334155;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}

.tag-verified {
  padding: 5px 14px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 
    0 2px 6px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dog-tags-section {
    height: 500vh;
  }
  
  .tag-header h3 {
    font-size: 20px;
  }
  
  .tag-id {
    font-size: 11px;
  }
  
  .tag-stars {
    font-size: 18px;
    letter-spacing: 3px;
  }
  
  .tag-content {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .tag-role {
    font-size: 11px;
  }
  
  .tag-verified {
    padding: 4px 12px;
    font-size: 9px;
  }
  
  .dog-tags-bg-text {
    font-size: 60px;
  }
  
  .chain-ball {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 480px) {
  .dog-tag {
    width: 300px;
    height: 180px;
    padding: 20px 24px;
  }
  
  .tag-header h3 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .tag-content {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .dog-tags-bg-text {
    font-size: 50px;
  }
}

/* Elementor Editor Support */
.elementor-editor-active .dog-tags-section {
  height: auto !important;
  min-height: 100vh;
}

.elementor-editor-active .dog-tags-sticky {
  position: relative;
  min-height: 600px;
}

.elementor-editor-active .tag-container {
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
  margin-bottom: 20px;
  display: flex;
}
