/*
Theme Name: IDIDTHAT DIVI CHILD
Template: Divi
Author: IDIDTHAT
Author URI: https://ididthatmedia.com/
Description: Divi child theme
Version: 1.0.0.1764957984
Updated: 2025-12-05 18:06:24

*/

/* Remove underline from Divi buttons and swap-video links */
.swap-video,
.et_pb_button,
.et_pb_button:hover {
  text-decoration: none !important;
}

/* Bold + underline links in page content only (not header/menu/buttons) */
.et_pb_section a:not(.swap-video),
.et_pb_row a:not(.swap-video),
.et_pb_column a:not(.swap-video),
.et_pb_text a:not(.swap-video) {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/*Collapsible Row*/
.acc-panel{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .6s ease, opacity .25s ease;
  will-change:max-height, opacity;
}
.acc-panel.is-open{ opacity:1; }

/* after it finishes opening */
.acc-panel.is-open.acc-stable{
  max-height:none;
  overflow:visible;
  transition:opacity .25s ease;
}
/* Make accordion trigger rows look clickable */
.acc-trigger,
.acc-trigger *{cursor:pointer;}

/********BEGIN Return to Top*/
.toTopBtn{
  position:fixed;
  top:100px;               /* adjust vertical position */
  z-index:99999;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(234,88,12,.65);
  color:#fff;
  text-decoration:none;
  font-size:20px;
  line-height:1;
  box-shadow:0 6px 18px rgba(0,0,0,.2);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}

.toTopBtn.show{
  opacity:1;
  visibility:visible;
}

/* Right button */
#toTopBtnRight{
  right:18px;
}

/* Left button */
#toTopBtnLeft{
  left:18px;
}

/* Hover */
.toTopBtn:hover{
  background:rgba(234,88,12);
}
/********END Return to Top*/

/* Base style for the cookie settings link */
.nsc-bara-manage-cookie-settings {
    color: #737373;
    transition: color 0.3s ease;
}

/* Black hover effect for the cookie settings link */
.nsc-bara-manage-cookie-settings:hover {
    color: #f78c2a;
}

/* Customizing text selection for Firefox */
::-moz-selection {
    /* Background color when text is selected in Firefox */
    background-color: #1F2937; /* orange color */
    /* Text color when text is selected in Firefox */
    color: #fff;
}
 
/* Customizing text selection for other browsers */
::selection {
    /* Background color when text is selected in other browsers */
    background-color: #1F2937; /* orange color */
    /* Text color when text is selected in other browsers */
    color: #fff;
}

/* Style the back to top button on hover */
body .et_pb_scroll_top:hover {
	background-color: #1F2937 !important;
}

/********* Menu Icons BEGIN */
/* Base icon-only menu items */
.menu-home > a,
.menu-search > a,
.menu-shop > a{
  font-size: 0 !important;   /* hide text label */
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
}

/* Icon glyphs */
.menu-home > a::before,
.menu-search > a::before,
.menu-shop > a::before{
  font-family: 'ETMODULES';
  font-size: 18px;
  color: #000;
  display: inline-block;
  transition: transform .3s ease, color .3s ease;
}

/* Individual icons */
.menu-home > a::before{
  content: '\e009'; /* home */
}

.menu-shop > a::before{
  content: '\e015'; /* shopping cart */
}

.menu-search > a::before{
  content: '\55'; /* shopping cart */
}

/* Shared hover animation */
.menu-home > a:hover::before,
.menu-search > a:hover::before,
.menu-shop > a:hover::before{
  transform: scale(1.25);
  color: #ea580c;
}
/********* Menu Icons END */

/* DIVI DEFAULT HEADER – ONE-LINE TOP MENU, MULTI-LINE DROPDOWNS */
@media (min-width: 981px){

  /* Header layout: logo left, menu right */
  #main-header .container{
    display: flex;
    align-items: center;
  }

  /* Logo protection */
  #main-header .logo_container{
    flex: 0 0 auto;
    padding-right: 40px;
  }

  /* Navigation fills remaining space */
  #et-top-navigation{
    flex: 1 1 auto;
    min-width: 200;
    display: flex;
    justify-content: flex-end;
  }

  /* Top-level menu: ONE LINE */
  #top-menu{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  #top-menu > li{
    white-space: nowrap;
	margin: 0 0px;
	padding-right: 12px !important;
	  
  }

  /* Reduce spacing between menu items */
  #top-menu > li > a{
    padding: 0 0px;
    padding-left: 0px;
    padding-right: 0px;
	letter-spacing: 0;
  }

  /* Dropdown menus: MULTI-LINE */
  #top-menu ul{
    white-space: normal;
    min-width: 200px;
    max-width: 320px;
  }

  #top-menu ul li a{
    white-space: normal;
    line-height: 1.4;
    padding: 4px 10px;

  }
	/*Primary Menu Hover Color*/
  #main-header #top-menu > li > a:hover {
    color: #ea580c;
  }
}

/*Custom Password protected page
 */ 
.custom-protected-wrapper {
  min-height: 60vh;
  background-image: linear-gradient(
    180deg,
    rgba(59,130,246,0.1) 0%,
    rgba(0,75,160,0.45) 50%,
    rgba(59,130,246,0.1) 100%
  ) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-protected-inner {
  max-width: 520px;
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  color: #000;
  font-size: 16px
}

.custom-protected-inner h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.custom-protected-inner input {
  width: 100%;
  padding: 14px;
margin-top: 0;
  margin: 16px 0;
  font-size: 16px;
}

.custom-protected-inner button {
  width: 100%;
  padding: 14px;
  background: #004ba0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
	margin-bottom: 10px;
}

