/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Buy Packaging Boxes
Author URI: https://buypackagingboxes.co.uk/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* ----------------------------------------------------
   OPTIONAL: Poppins (safe way)
   (Agar aap Elementor me already global fonts set kar chuke hain,
   to isko hata sakte hain)
------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

/* ---------------------------------------------------
   HP TABS WRAPPER
--------------------------------------------------- */
.hp-tabs {
  margin-top: 20px;
}

/* ---------------------------------------------------
   REMOVE BULLETS + CLEAN ALIGNMENT FOR TAB NAVIGATION
--------------------------------------------------- */
.hp-tabs-nav {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;

  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;

  border-bottom: 2px solid #dfe6ef;
}

/* li reset */
.hp-tabs-nav li {
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------
   TAB BUTTONS (INACTIVE STYLE)
--------------------------------------------------- */
.hp-tab-btn {
  cursor: pointer;
  padding: 10px 18px 9px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;

  color: #1a5f5f;
  background: #f5f7fa;

  border: 0 !important;
  border-radius: 6px 6px 0 0;
  position: relative;

  transition: all 0.25s ease;
  outline: none;
}

.hp-tab-btn:hover {
  transform: translateY(-1px);
}

/* ---------------------------------------------------
   ACTIVE TAB STYLE (BLUE TOP BORDER + WHITE PANEL)
--------------------------------------------------- */
.hp-tab-btn.active {
  color: #1a5f5f;
  background: #ffffff;
  box-shadow: 0 -1px 0 #ffffff;
}

.hp-tab-btn.active::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;

  background: #1a5f5f;
  border-radius: 6px 6px 0 0;
}

/* ---------------------------------------------------
   TAB CONTENT PANEL
--------------------------------------------------- */
.hp-tabs-panel {
  background: #ffffff;
  border: 1px solid #1a5f5f;
  border-top: 0;
  padding: 18px 18px;
  border-radius: 0 8px 8px 8px;
}

.hp-tab-pane {
  display: none;
  line-height: 1.75;
  animation: hpFadeIn .22s ease;
}

.hp-tab-pane.active {
  display: block;
}

@keyframes hpFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Headings inside tab content */
.hp-tab-pane h1,
.hp-tab-pane h2,
.hp-tab-pane h3,
.hp-tab-pane h4 {
  color: #1a5f5f;
  margin-top: 0;
}

/* Tables (specifications) */
.hp-tab-pane table {
  width: 100%;
  border-collapse: collapse;
}

.hp-tab-pane table th,
.hp-tab-pane table td {
  padding: 10px 12px;
  border: 1px solid #1a5f5f;
  vertical-align: top;
}

.hp-tab-pane table th {
  width: 220px;
  background: #f7fbff;
  font-weight: 700;
}

/* ----------------------------------------------------
   Icons safe: do not force font on icons
------------------------------------------------------ */
i, i:before, i:after,
[class^="fa"], [class*=" fa"],
[class^="fas"], [class*=" fas"],
[class^="far"], [class*=" far"],
[class^="fab"], [class*=" fab"],
[class^="dashicons"], [class*=" dashicons"],
[class^="eicon"], [class*=" eicon"] {
  font-family: inherit;
}
