/**
* 2010-2026 SwissGeek | Web Developer Freelance
*
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https:// opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https:// devdocs.prestashop.com/ for more information.
*
* @Module		sgkpaddock
* @Description	Front office overrides for the Panda theme (SunnyToo).
* @Version		2.1.0
* @Copyright	SwissGeek | Web Developer Freelance <https://swissgeek.dev/>
* @support		Support Requests <https://admin.swissgeek.dev/forms/ticket?styled=1&with_logo=1>
* @Blog			Breaking News <https://news.swissgeek.dev/> <https://news.prestageek.ch/>
* @Addons		Developments <https://prestageek.ch/> <https://add.swissgeek.dev/>
*
* @license		http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*				Valid for 1 website (or project) for each purchase of license International Registered 
*				Trademark & Property of SwissGeek. More information on <https://swissgeek.dev/license/>
*/

/* Panda : coins carrés, accent maison #e54d26, typo Arial, aucune :root --var.
   On scope tout sous .sgkpaddock pour ne rien casser ailleurs. */
.sgkpaddock{
  --sgk-accent:#e54d26;
  --sgk-font:Arial,Helvetica,sans-serif;
  --sgk-body:Arial,Helvetica,sans-serif;
}

/* Coins carrés partout (Panda applique border-radius:0) */
.sgkpaddock__badge,
.sgkpaddock__badge img,
.sgkpaddock__badge--square,
.sgkpaddock__badge--square img,
.sgkpaddock__card,
.sgkpaddock__btn,
.sgkpaddock__form input,
.sgkpaddock__form textarea,
.sgkpaddock__errors,
.sgkpaddock__pitch,
.sgkpaddock__form,
.sgkpaddock__program{border-radius:0!important}

/* Titres de section facon Panda : #444, majuscules, poids normal */
.sgkpaddock__title,
.sgkpaddock__programTitle{color:#444;text-transform:uppercase;font-weight:400}

/* Correctif "focus ring leak" Panda : button:focus{outline:5px auto ...}.
   On monte la specificite via un ancetre pour battre (0,1,1). */
.sgkpaddock .sgkpaddock__btn:focus{outline:none}
.sgkpaddock .sgkpaddock__btn:focus-visible{outline:2px solid var(--sgk-accent);outline-offset:-2px}

/* Panda reset global ul{list-style:none;padding-left:0} : on restaure nos listes */
.sgkpaddock .sgkpaddock__perks{list-style:none;padding-left:0} /* déjà stylée avec puces custom */
.sgkpaddock .sgkpaddock__errors ul{list-style:disc outside;padding-left:18px}

/* Champs de formulaire facon Panda */
.sgkpaddock__form input,
.sgkpaddock__form textarea{border:1px solid #d9d9d9}
.sgkpaddock__form input:focus,
.sgkpaddock__form textarea:focus{border-color:#666}
