/*!
Theme Name: trintora
Theme URI: http://underscores.me/
Author: Alttantire
Author URI: http://alttantire.com
Description: -
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trintora
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*==============================================================
TRINTORA + BOOTSTRAP NOTE
- Bootstrap global component stylesini bozmayacak şekilde düzenlendi.
- Form/btn görünümü Bootstrap sınıfları ile yönetilmeli:
  .btn, .btn-primary, .form-control, .form-select, .form-check-input vs.
==============================================================*/

/*--------------------------------------------------------------
# Generic (Normalize + Base)
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

:root{
	/* Brand / UI */
	--tt-primary: #0d6efd;
	--tt-secondary: #6c757d;

	/* Text */
	--tt-text: #0f172a;          /* slate-900 */
	--tt-muted: rgba(15, 23, 42, 0.65);

	/* Links */
	--tt-link: var(--tt-primary);
	--tt-link-hover: #0b5ed7;
	--tt-link-visited: #6f42c1;
	--tt-link-active: #0a58ca;

	/* Focus ring */
	--tt-focus-ring: rgba(13, 110, 253, 0.25);
	--tt-focus-outline: rgba(13, 110, 253, 0.55);
}


/* Document ================================================== */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Body ====================================================== */
body {
	margin: 0;
}

/* HTML5 ===================================================== */
main { display: block; }

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping ================================================== */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level ================================================= */
a { background-color: transparent; }

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b, strong { font-weight: bolder; }

code, kbd, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small { font-size: 80%; }

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }

/* Embedded =================================================== */
img { border-style: none; }

/* Forms (Normalize only) ===================================== */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button, input { overflow: visible; }
button, select { text-transform: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset { padding: 0.35em 0.75em 0.625em; }

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress { vertical-align: baseline; }
textarea { overflow: auto; }

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive =============================================== */
details { display: block; }
summary { display: list-item; }

/* Misc ======================================================= */
template { display: none; }
[hidden] { display: none; }

/* Box sizing ================================================= */
*,
*::before,
*::after { box-sizing: inherit; }
html { box-sizing: border-box; }

/*--------------------------------------------------------------
# Base (Bootstrap-friendly)
--------------------------------------------------------------*/

/* Typography ------------------------------------------------- */
:root{
	--tt-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
	'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

	--tt-text: #111827;
	--tt-muted: rgba(15, 23, 42, .65);
	--tt-primary: #0d6efd;
	--tt-dark: #0b1220;
}

body {
	color: var(--tt-text);
	font-family: var(--tt-font-sans);
	font-size: 1rem;
	line-height: 1.4;
	background: #fff;
}

/* Underscores default: body,button,input... font set ediyordu.
   Bootstrap ile çakışmaması için sadece font-family inherit bırakıyoruz. */
button,
input,
select,
optgroup,
textarea {
	font-family: inherit;
}

/* Headings */
h1,h2,h3,h4,h5,h6 { clear: both; }

p { margin-bottom: 1.25rem; }

dfn,cite,em,i { font-style: italic; }

blockquote { margin: 0 1.5em; }

address { margin: 0 0 1.5em; }

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,kbd,tt,var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,ins {
	background: #fff9c0;
	text-decoration: none;
}

big { font-size: 125%; }

/* Elements --------------------------------------------------- */
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,ol {
	margin: 0;
	padding: 0;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.25rem;
}

dt { font-weight: 700; }
dd { margin: 0 1.5em 1.5em; }

embed,iframe,object { max-width: 100%; }

img {
	height: auto;
	max-width: 100%;
}

figure { margin: 1em 0; }

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links ------------------------------------------------------ */

a{
	color: var(--tt-link);
	text-decoration: none;
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
}

a:visited{
	color: var(--tt-link);
}

a:hover{
	color: var(--tt-link-hover);
	text-decoration: underline;
}

a:active{
	color: var(--tt-link-active);
}

/* Klavye focus: modern ve net */
a:focus-visible{
	outline: 2px solid var(--tt-focus-outline);
	outline-offset: 3px;
	border-radius: 6px;
}

/* Mouse ile tıklayınca focus parlamasın (isteğe bağlı) */
a:focus:not(:focus-visible){
	outline: none;
}

/* Forms  */

:focus-visible {
	outline: 2px solid rgba(13,110,253,.35);
	outline-offset: 2px;
}


input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation ------------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a { width: 200px; }

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li { position: relative; }

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle { display: none; }
	.main-navigation ul { display: flex; }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages ------------------------------------------- */
.sticky { display: block; }

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) { display: none; }

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments --------------------------------------------------- */
.comment-content a { word-wrap: break-word; }
.bypostauthor { display: block; }

/* Widgets ---------------------------------------------------- */
.widget { margin: 0 0 1.5em; }
.widget select { max-width: 100%; }

/* Media ------------------------------------------------------ */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link { display: inline-block; }

/* Captions --------------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text { margin: 0.8075em 0; }
.wp-caption-text { text-align: center; }

/* Galleries -------------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }
.gallery-columns-7 { grid-template-columns: repeat(7, 1fr); }
.gallery-columns-8 { grid-template-columns: repeat(8, 1fr); }
.gallery-columns-9 { grid-template-columns: repeat(9, 1fr); }

.gallery-caption { display: block; }

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll ----------------------------------- */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility --------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus { outline: 0; }

/* Alignments ------------------------------------------------- */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*==============================================================
WooCommerce Breadcrumb
==============================================================*/

.woocommerce nav[aria-label="Breadcrumb"] {
	margin-bottom: 1rem;
}

.woocommerce .breadcrumb {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 0.95rem;
	font-weight: 600;
}

.woocommerce .breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color: rgba(15,23,42,.45);
	padding: 0 .5rem;
}

.woocommerce .breadcrumb-item a {
	color: var(--tt-text);
	text-decoration: none;
}

.woocommerce .breadcrumb-item a:hover {
	color: var(--tt-primary);
	text-decoration: underline;
}

.woocommerce .breadcrumb-item.active {
	color: var(--tt-muted);
}

/* Header */


.tt-navbar .navbar-nav .nav-link.active, .navbar-nav .nav-link {
	font-size: 1rem !important;
	color: #181d25;
	font-weight: 500;
	background: none;
	border: 0;
	display: block;
	padding: 0.5rem 1.125rem;
	position: relative;
	transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
}

.tt-navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
	text-decoration: none !important;
	color: #b02a37 !important;
}



.tt-header .tt-navbar{
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.tt-header.sticky-top .tt-navbar{
	box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

.tt-icon-btn{
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.tt-ico{
	font-size: 18px;
	line-height: 1;
}

.tt-cart-badge{
	font-size: 11px;
	padding: .35em .55em;
	box-shadow: 0 8px 20px rgba(13,110,253,.35);
}

.tt-header-search .form-control:focus{
	box-shadow: none;
}

.tt-header-search .input-group-text,
.tt-header-search .form-control{
	border-radius: 12px;
}

.tt-header-search .input-group-text{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.tt-header-search .form-control{
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}


/** Footer **/

.tt-footer {
	background-color: #1b1b1b;
}

.tt-footer .tt-footer-widget ul {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	flex-direction: column;
}

.tt-footer .tt-footer-widget ul li {
  	margin-bottom: 0.5rem !important;
}

.tt-footer .tt-footer-widget ul li a {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #aba7a7;
}

.tt-footer .tt-footer-widget h6.tt-footer-title {
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	color: #f2f2f2;
	margin-bottom: 20px;
}