:root { --color-bg:           #F5F1E8; --color-bg-secondary: #A8C3A0; --color-green:        #A8C3A0; --color-teal:         #AEE3E1; --color-indigo:       #2C2F6E; --color-gold:         #D4AF37; --color-gold-light:   #EBD077;
--color-text:         #2B2B2B; --color-heading:      #1F1F1F; --color-white:        #FFFFFF;
--color-cream:        #F5F1E8;
--color-muted:        #6B6B6B; --color-on-indigo:    #FFFFFF; --shadow-xs:  none;
--shadow-sm:  none;
--shadow-md:  0 20px 40px rgba(0,0,0,0.04);
--shadow-lg:  0 30px 60px rgba(0,0,0,0.06); --glow-gold:   0 0 60px rgba(188,173,145,0.08), 0 0 100px rgba(188,173,145,0.04);
--glow-white:  0 0 60px rgba(255,255,255,0.15), 0 0 100px rgba(255,255,255,0.08);
--glow-indigo: 0 0 60px rgba(23,23,23,0.05),   0 0 100px rgba(23,23,23,0.03); --font-primary:   'Inter', 'Montserrat', system-ui, sans-serif;
--font-secondary: 'Playfair Display', 'Cormorant Garamond', serif;
--font-mono:      'JetBrains Mono', monospace; --text-xs:   0.75rem; --text-sm:   0.875rem; --text-base: 1rem; --text-md:   1.125rem; --text-lg:   1.25rem; --text-xl:   1.5rem; --text-2xl:  1.875rem; --text-3xl:  2.25rem; --text-4xl:  3rem; --text-5xl:  3.75rem; --text-hero: clamp(2.5rem, 6vw, 5rem); --space-1:  0.25rem;
--space-2:  0.5rem;
--space-3:  0.75rem;
--space-4:  1rem;
--space-6:  1.5rem;
--space-8:  2rem;
--space-10: 2.5rem;
--space-12: 3rem;
--space-16: 4rem;
--space-20: 5rem;
--space-24: 6rem;
--space-32: 8rem;
--space-40: 10rem;
--space-48: 12rem;
--space-64: 16rem;  --radius-sm:   8px;
--radius-md:   16px;
--radius-lg:   24px; --radius-xl:   32px;
--radius-full: 9999px; --transition-fast:   all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
--transition-base:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow:   all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); --container-sm:   640px;
--container-md:   768px;
--container-lg:  1024px;
--container-xl:  1280px;
--container-2xl: 1440px; --z-below:  -1;
--z-base:    0;
--z-raised:  10;
--z-nav:     100;
--z-modal:   1000;
--z-toast:   2000;
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
font-size: 14px;
}
body {
font-family: var(--font-primary);
font-size: var(--text-base);
line-height: 1.75;
color: var(--color-text);
background-color: var(--color-bg);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
position: relative;
letter-spacing: 0.02em;
text-align: left;
} body::before {
content: '';
position: fixed;
inset: 0;
pointer-events: none;
z-index: var(--z-toast);
opacity: 0.032;
background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 300px 300px;
} h1, h2, h3, h4, h5, h6 {
font-family: var(--font-secondary);
color: var(--color-heading);
line-height: 1.25;
letter-spacing: 0.01em;
font-weight: 400;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }
p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }
a {
color: var(--color-indigo);
text-decoration: none;
transition: var(--transition-fast);
letter-spacing: 0.02em;
}
a:hover { opacity: 0.7; }
strong, b { font-weight: 700; }
em, i { font-style: italic; } img {
max-width: 100%;
height: auto;
display: block;
loading: lazy;
}
img[loading="lazy"] {
transition: var(--transition-slow);
} .angelic-glow {
position: relative;
box-shadow: var(--glow-gold);
transition: var(--transition-slow);
}
.angelic-glow::before {
content: '';
position: absolute;
inset: -2px;
border-radius: inherit;
background: radial-gradient(
ellipse 80% 50% at 50% 0%,
rgba(255, 255, 255, 0.55) 0%,
rgba(212, 175, 55, 0.12) 40%,
transparent 70%
);
pointer-events: none;
z-index: 1;
transition: var(--transition-slow);
}
.angelic-glow:hover {
box-shadow: var(--glow-gold), 0 20px 60px rgba(212,175,55,0.18);
transform: translateY(-4px);
}
.angelic-glow > * { position: relative; z-index: 2; } .angelic-glow--white {
box-shadow: var(--glow-white);
}
.angelic-glow--white::before {
background: radial-gradient(
ellipse 80% 50% at 50% 0%,
rgba(255, 255, 255, 0.80) 0%,
rgba(255, 255, 255, 0.20) 50%,
transparent 70%
);
} .container {
width: 100%;
max-width: var(--container-xl);
margin-inline: auto;
padding-inline: var(--space-6);
}
.container--narrow { max-width: var(--container-md); }
.container--wide   { max-width: var(--container-2xl); }
.grid {
display: grid;
gap: var(--space-6);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); } .section {
padding-block: var(--space-24);
position: relative;
overflow: hidden;
}
.section--sm { padding-block: var(--space-16); }
.section--lg { padding-block: var(--space-40); } .bg-cream   { background-color: var(--color-bg); }
.bg-green   { background-color: var(--color-green); }
.bg-teal    { background-color: var(--color-teal); }
.bg-indigo {
background-color: var(--color-indigo);
color: var(--color-on-indigo);
}
.bg-indigo h1, .bg-indigo h2, .bg-indigo h3,
.bg-indigo h4, .bg-indigo h5, .bg-indigo h6 {
color: var(--color-cream);
}
.bg-indigo p, .bg-indigo span, .bg-indigo li {
color: rgba(245, 241, 232, 0.90);
}
.bg-indigo a {
color: var(--color-gold);
}
.bg-indigo a:hover {
color: var(--color-gold-light);
}
.bg-gold {
background-color: var(--color-gold);
color: var(--color-indigo);
} .card {
background: transparent;
border-radius: 0;
padding: var(--space-8) 0;
box-shadow: none;
border: none;
border-top: 1px solid rgba(23, 23, 23, 0.1);
transition: var(--transition-slow);
}
.card:hover {
box-shadow: var(--shadow-md);
transform: translateY(-6px);
}
.card--cream { background: var(--color-bg); }
.card--glass {
background: rgba(255,255,255,0.55);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255,255,255,0.7);
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: var(--space-3) var(--space-8);
border-radius: var(--radius-lg);
font-family: var(--font-primary);
font-size: var(--text-sm);
font-weight: 600;
letter-spacing: 0.03em;
text-transform: uppercase;
cursor: pointer;
border: 2px solid transparent;
transition: var(--transition-slow);
text-decoration: none;
white-space: nowrap;
position: relative;
overflow: hidden;
}
.btn::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25) 0%, transparent 60%);
opacity: 0;
transition: var(--transition-fast);
}
.btn:hover::after { opacity: 1; } .btn--primary {
background: var(--color-indigo);
color: var(--color-white);
box-shadow: var(--shadow-sm), 0 0 0 0 rgba(44,47,110,0);
}
.btn--primary:hover {
background: #232655;
color: var(--color-white);
box-shadow: var(--shadow-md), 0 0 24px rgba(44,47,110,0.28);
transform: translateY(-2px);
} .btn--gold {
background: var(--color-gold);
color: var(--color-indigo);
box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
background: var(--color-gold-light);
color: var(--color-indigo);
box-shadow: var(--shadow-md), 0 0 24px rgba(212,175,55,0.35);
transform: translateY(-2px);
} .btn--outline {
background: transparent;
color: var(--color-indigo);
border-color: var(--color-indigo);
}
.btn--outline:hover {
background: var(--color-indigo);
color: var(--color-white);
transform: translateY(-2px);
} .btn--ghost {
background: transparent;
color: var(--color-text);
border-color: rgba(44,47,110,0.2);
}
.btn--ghost:hover {
border-color: var(--color-indigo);
color: var(--color-indigo);
} .btn--sm { padding: var(--space-2) var(--space-6); font-size: var(--text-xs); }
.btn--lg { padding: var(--space-4) var(--space-10); font-size: var(--text-md); border-radius: var(--radius-xl); } input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
select {
width: 100%;
padding: var(--space-3) var(--space-5);
font-family: var(--font-primary);
font-size: var(--text-base);
color: var(--color-text);
background: var(--color-white);
border: 1.5px solid rgba(44,47,110,0.15);
border-radius: var(--radius-lg);
outline: none;
transition: var(--transition-fast);
appearance: none;
}
input:focus, textarea:focus, select:focus {
border-color: var(--color-indigo);
box-shadow: 0 0 0 3px rgba(44,47,110,0.10);
}
input::placeholder, textarea::placeholder {
color: var(--color-muted);
opacity: 0.8;
}
label {
display: block;
font-size: var(--text-sm);
font-weight: 600;
color: var(--color-heading);
margin-bottom: var(--space-2);
letter-spacing: 0.01em;
} .site-header {
position: relative;
width: 100%;
z-index: var(--z-nav);
padding-block: var(--space-4);
background: transparent;
border-bottom: 1px solid rgba(0,0,0,0.04);
transition: var(--transition-base);
}
.site-header.scrolled {
position: fixed;
background: rgba(250,249,246,0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: var(--shadow-md);
padding-block: var(--space-4);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-8);
}
.site-logo {
font-family: var(--font-secondary);
font-size: var(--text-2xl);
font-weight: 300;
color: var(--color-indigo);
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
display: flex;
align-items: center;
gap: var(--space-2);
}
.site-logo:hover { color: var(--color-indigo); }
.site-logo .logo-accent { color: var(--color-gold); } .primary-nav ul {
display: flex;
align-items: center;
gap: var(--space-8);
list-style: none;
}
.primary-nav a {
font-size: var(--text-xs);
font-weight: 400;
color: var(--color-text);
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
position: relative;
padding-bottom: 2px;
transition: var(--transition-fast);
}
.primary-nav a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1.5px;
background: var(--color-gold);
border-radius: var(--radius-full);
transition: var(--transition-base);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
color: var(--color-indigo);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
width: 100%;
} .nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
width: 36px;
height: 36px;
cursor: pointer;
background: transparent;
border: none;
padding: 0;
position: relative;
z-index: 1001;
}
.nav-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--color-indigo);
border-radius: var(--radius-full);
transition: var(--transition-base);
} .hero {
min-height: 90vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: linear-gradient(
145deg,
var(--color-bg) 0%,
rgba(168,195,160,0.20) 40%,
rgba(174,227,225,0.15) 70%,
var(--color-bg) 100%
);
}
.hero__eyebrow {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-gold);
margin-bottom: var(--space-4);
display: flex;
align-items: center;
gap: var(--space-3);
}
.hero__eyebrow::before {
content: '';
display: block;
width: 32px;
height: 1.5px;
background: var(--color-gold);
border-radius: var(--radius-full);
}
.hero__title {
font-size: var(--text-hero);
color: var(--color-heading);
margin-bottom: var(--space-6);
max-width: 14ch;
}
.hero__title .highlight {
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-indigo) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero__desc {
font-size: var(--text-lg);
color: var(--color-muted);
max-width: 48ch;
margin-bottom: var(--space-10);
line-height: 1.8;
}
.hero__cta {
display: flex;
gap: var(--space-4);
flex-wrap: wrap;
} .section-header {
text-align: center;
margin-bottom: var(--space-16);
}
.section-header__label {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-gold);
margin-bottom: var(--space-3);
display: block;
}
.section-header__title {
margin-bottom: var(--space-4);
}
.section-header__desc {
font-size: var(--text-md);
color: var(--color-muted);
max-width: 60ch;
margin-inline: auto;
line-height: 1.8;
} .site-footer {
background: var(--color-teal);
color: var(--color-indigo);
padding-block: var(--space-20) var(--space-8);
position: relative;
overflow: hidden;
}
.site-footer::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 60%);
pointer-events: none;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: var(--space-12);
margin-bottom: var(--space-16);
}
.footer-brand .site-logo { color: var(--color-cream); }
.footer-brand p { color: rgba(245,241,232,0.70); margin-top: var(--space-4); font-size: var(--text-sm); line-height: 1.8; }
.footer-col h6 {
font-family: var(--font-primary);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--color-gold);
margin-bottom: var(--space-5);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul a {
color: rgba(245,241,232,0.75);
font-size: var(--text-sm);
transition: var(--transition-fast);
text-decoration: none;
}
.footer-col ul a:hover { color: var(--color-gold); }
.footer-bottom {
padding-top: var(--space-8);
border-top: 1px solid rgba(255,255,255,0.08);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(245,241,232,0.50); margin: 0; } .text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-gold    { color: var(--color-gold); }
.text-indigo  { color: var(--color-indigo); }
.text-cream   { color: var(--color-cream); }
.text-muted   { color: var(--color-muted); }
.font-serif   { font-family: var(--font-secondary); }
.font-sans    { font-family: var(--font-primary); }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.radius    { border-radius: var(--radius-lg); }
.radius-sm { border-radius: var(--radius-sm); }
.radius-xl { border-radius: var(--radius-xl); }
.pill      { border-radius: var(--radius-full); }
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border-width: 0;
} @keyframes float {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-16px); }
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
0%   { background-position: -200% center; }
100% { background-position:  200% center; }
}
@keyframes pulse-glow {
0%, 100% { box-shadow: var(--glow-gold); }
50%       { box-shadow: 0 0 60px rgba(212,175,55,0.35), 0 0 120px rgba(212,175,55,0.15); }
}
.animate-float   { animation: float 6s ease-in-out infinite; }
.animate-fadeIn  { animation: fadeIn 0.8s cubic-bezier(0.4,0,0.2,1) both; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; } .wave-divider {
position: relative;
margin: 0;
line-height: 0;
} .reveal {
opacity: 0;
transform: translateY(40px);
transition: all 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
will-change: opacity, transform;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }
.wave-divider svg {
display: block;
width: 100%;
} .badge {
display: inline-flex;
align-items: center;
padding: var(--space-1) var(--space-3);
border-radius: var(--radius-full);
font-size: var(--text-xs);
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.badge--gold   { background: rgba(212,175,55,0.12);  color: var(--color-gold); }
.badge--indigo { background: rgba(44,47,110,0.08);   color: var(--color-indigo); }
.badge--green  { background: rgba(168,195,160,0.30); color: #3d6b35; }
.badge--teal   { background: rgba(174,227,225,0.40); color: #1e6b69; } @media (max-width: 1024px) {
.footer-grid         { grid-template-columns: 1fr 1fr; }
.grid--4             { grid-template-columns: repeat(2, 1fr); }
.grid--3             { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
.primary-nav  { display: none; }
.nav-toggle   { display: flex; }
}
@media (max-width: 768px) {
:root {
--text-hero: clamp(2rem, 8vw, 3rem);
}
.container { padding-inline: var(--space-4); }
.footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
.footer-bottom { flex-direction: column; text-align: center; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.hero { min-height: 70vh; }
.section { padding-block: var(--space-16); }
}
@media (max-width: 480px) {
.btn--lg { width: 100%; }
.hero__cta { flex-direction: column; }
} .am-modal-overlay {
position: fixed;
inset: 0;
z-index: var(--z-modal);
background: rgba(245, 241, 232, 0.85); backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: var(--transition-slow);
}
.am-modal-overlay.is-active {
opacity: 1;
pointer-events: auto;
}
.am-modal {
background: var(--color-white);
width: 90%;
max-width: 480px;
border-radius: var(--radius-xl);
padding: var(--space-8);
position: relative;
box-shadow: var(--shadow-lg), var(--glow-gold);
transform: translateY(30px) scale(0.95);
transition: var(--transition-bounce);
opacity: 0;
}
.am-modal-overlay.is-active .am-modal {
transform: translateY(0) scale(1);
opacity: 1;
}
.am-modal__close {
position: absolute;
top: var(--space-4);
right: var(--space-4);
background: none;
border: none;
font-size: var(--text-xl);
color: var(--color-muted);
cursor: pointer;
transition: var(--transition-fast);
}
.am-modal__close:hover {
color: var(--color-indigo);
transform: rotate(90deg);
}
.am-modal__body {
text-align: center;
}
.am-modal__title {
color: var(--color-indigo);
margin-bottom: var(--space-6);
font-size: var(--text-lg);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.am-modal__content {
font-family: var(--font-secondary);
font-size: var(--text-2xl);
color: var(--color-text);
line-height: 1.4;
font-style: italic;
}  .am-starry-bg {
position: relative;
background: linear-gradient(135deg, #e4ebf5 0%, #d8e4f8 100%);
overflow: hidden;
}
.am-starry-bg::before,
.am-starry-bg::after {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image: 
radial-gradient(circle at center, rgba(255,255,255,0.8) 1px, transparent 1px),
radial-gradient(circle at center, rgba(255,255,255,0.8) 2px, transparent 2px),
radial-gradient(circle at center, rgba(255,255,255,0.5) 1px, transparent 1px);
background-size: 140px 140px, 90px 90px, 40px 40px;
background-position: 0 0, 40px 60px, 130px 20px;
opacity: 0.6;
animation: slowDrift 60s linear infinite;
}
.am-starry-bg::after {
background-image: 
radial-gradient(circle at center, rgba(255,255,255,0.9) 1px, transparent 1px),
radial-gradient(circle at center, rgba(255,255,255,0.4) 2px, transparent 2px);
background-size: 180px 180px, 110px 110px;
background-position: 20px 40px, 70px 90px;
opacity: 0.4;
animation: slowDrift 90s linear reverse infinite;
}
@keyframes slowDrift {
0% { background-position: 0 0, 40px 60px, 130px 20px; }
100% { background-position: -500px -500px, -460px -440px, -370px -480px; }
} .primary-nav--vibrant ul {
gap: var(--space-4);
}
.primary-nav--vibrant a {
text-transform: uppercase;
font-size: var(--text-sm);
letter-spacing: 0.05em;
color: var(--color-indigo);
font-weight: 500;
}
.primary-nav--vibrant li:not(:last-child)::after {
content: '•';
color: var(--color-gold);
margin-left: var(--space-4);
} .am-flip-card-wrapper {
perspective: 1200px;
width: 100%;
max-width: 420px;
aspect-ratio: 3/4;
cursor: pointer;
}
.am-flip-card {
width: 100%;
height: 100%;
position: relative;
transform-style: preserve-3d;
transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border-radius: var(--radius-xl);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.am-flip-card.is-flipped {
transform: rotateY(180deg);
}
.am-flip-card__front,
.am-flip-card__back {
position: absolute;
inset: 0;
backface-visibility: hidden;
border-radius: var(--radius-xl);
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: var(--space-8);
text-align: center;
}
.am-flip-card__front {
background: #111; }
.am-flip-card__back {
transform: rotateY(180deg);
background: #0f172a; }
.am-flip-card-overlay {
position: absolute;
inset: 0;
background: inherit;
filter: blur(4px) brightness(0.7);
transform: scale(1.1);
z-index: 0;
}
.am-flip-card-content {
position: relative;
z-index: 1;
color: white;
}
.am-flip-card-content h3 {
color: white;
font-family: var(--font-secondary);
letter-spacing: 2px;
text-transform: uppercase;
font-size: var(--text-2xl);
margin: 0; background: rgba(0,0,0,0.5);
padding: 1rem 2rem;
border-radius: 4px;
backdrop-filter: blur(4px);
}
.am-flip-card__back .am-flip-card-content {
font-size: var(--text-2xl);
font-family: var(--font-secondary);
font-style: italic;
line-height: 1.4;
text-shadow: 0 2px 10px rgba(0,0,0,0.8);
} .site-header {
position: sticky;
top: 0;
z-index: 100;
transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.site-header .header-inner {
transition: min-height 0.4s ease;
}
.site-header.scrolled {
background: rgba(255, 255, 255, 0.7) !important;
backdrop-filter: blur(15px) saturate(180%);
-webkit-backdrop-filter: blur(15px) saturate(180%);
box-shadow: 0 4px 60px rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.site-header.scrolled .header-inner {
min-height: 65px !important;
} .primary-nav--vibrant a {
position: relative;
padding-bottom: 4px;
transition: color 0.3s ease;
}
.primary-nav--vibrant a::after {
content: '';
position: absolute;
width: 60%;
height: 2px;
bottom: -4px;
left: 20%;
background-color: var(--color-gold);
transform: scaleX(0);
transform-origin: right center;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 2px;
}
.primary-nav--vibrant a:hover {
color: var(--color-gold) !important;
}
.primary-nav--vibrant a:hover::after {
transform: scaleX(1);
transform-origin: left center;
} .header-actions a {
transition: transform 0.3s ease, color 0.3s ease;
}
.header-actions a:hover {
transform: translateY(-2px);
color: var(--color-gold) !important;
}  body:not(.editor-styles-wrapper):not(.wp-admin) h1,
body:not(.editor-styles-wrapper):not(.wp-admin) h2,
.section-header__title {
background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-gold) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}
body:not(.editor-styles-wrapper):not(.wp-admin) .hero__title {
background: linear-gradient(to right, #ffffff, var(--color-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 4px 25px rgba(255,255,255,0.4);
} .am-flip-card-content h3 {
-webkit-text-fill-color: var(--color-gold) !important;
text-shadow: 0 2px 10px rgba(0,0,0,0.8);
} body::before, body::after {
content: '';
position: fixed;
width: 600px;
height: 600px;
border-radius: 50%;
z-index: -1;
filter: blur(120px) opacity(0.3);
animation: orb-breathe 15s infinite alternate ease-in-out;
pointer-events: none;
}
body::before {
top: -200px;
left: -200px;
background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}
body::after {
bottom: -200px;
right: -200px;
background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
animation-delay: -7s;
}
@keyframes orb-breathe {
0% { transform: scale(1); opacity: 0.1; }
100% { transform: scale(1.3); opacity: 0.4; }
} [data-animate] {
opacity: 0;
transform: translateY(30px) scale(0.98);
transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-animate].is-visible {
opacity: 1;
transform: translateY(0) scale(1);
} .btn--gold, .btn--primary {
position: relative;
z-index: 1;
overflow: hidden;
transition: all 0.4s ease;
}
.btn--gold::before, .btn--primary::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
transform: translateX(-100%);
transition: 0.6s;
z-index: -1;
}
.btn--gold:hover::before, .btn--primary:hover::before {
transform: translateX(100%);
}
.btn--gold:hover, .btn--primary:hover {
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
transform: translateY(-3px);
}  .top-bar-luxury {
background: var(--color-bg);
color: var(--color-text);
font-size: 0.65rem;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: var(--space-2) var(--space-4);
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(0,0,0,0.03);
font-weight: 400;
}
.top-bar-luxury a {
color: inherit;
text-decoration: none;
transition: opacity 0.3s ease;
}
.top-bar-luxury a:hover { opacity: 0.6; }
.top-bar-socials { display: flex; gap: var(--space-3); }
.top-bar-icon-wrap {
display: inline-flex;
align-items: center; justify-content: center;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 50%; width: 20px; height: 20px;
}
.top-bar-icon-wrap svg { width: 10px; height: 10px; } .primary-nav li { position: relative; }
.primary-nav .sub-menu {
position: absolute;
top: 100%; left: 0;
min-width: 240px;
background: var(--color-white);
border: 1px solid rgba(0,0,0,0.04);
box-shadow: 0 10px 40px rgba(0,0,0,0.03);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
padding: var(--space-4) 0;
z-index: 100;
}
.primary-nav li:hover > .sub-menu {
opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu li {
display: block; margin: 0;
}
.primary-nav .sub-menu a {
display: flex; align-items: center; justify-content: space-between;
padding: var(--space-2) var(--space-6);
font-size: 0.75rem;
text-transform: none; letter-spacing: 0.05em;
color: var(--color-text); font-weight: 400;
}
.primary-nav .sub-menu a::after { display: none; }
.primary-nav .sub-menu a:hover {
color: var(--color-indigo);
background: transparent;
}
.primary-nav .sub-menu li:hover > a { padding-left: calc(var(--space-6) + 4px); }  .luxury-products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-8);
}
@media(max-width: 1024px){ .luxury-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px){ .luxury-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px){ .luxury-products-grid { grid-template-columns: 1fr; } } .luxury-product-card {
display: flex; flex-direction: column;
text-align: center;
position: relative;
group: hover;
background: transparent;
}
.luxury-product-card .img-wrapper {
position: relative;
aspect-ratio: 1/1.1; 
background: var(--color-white); overflow: hidden;
margin-bottom: var(--space-4);
border-radius: 4px;
}
.luxury-product-card img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 1.2s ease;
}
.luxury-product-card:hover img { transform: scale(1.05); } .luxury-product-badge {
position: absolute; top: var(--space-3); left: var(--space-3);
background: #2C3E50; color: #FFF; font-size: 0.6rem; letter-spacing: 0.1em;
padding: 3px 8px; border-radius: 2px; z-index: 10;
} .luxury-product-title {
font-family: var(--font-primary);
font-size: 1rem; font-weight: 400;
color: var(--color-heading);
margin-bottom: var(--space-1);
line-height: 1.4;
}
.luxury-product-price {
font-size: 0.85rem; color: var(--color-text);
margin-bottom: var(--space-4);
}
.luxury-product-price del { opacity: 0.5; margin-right: 4px; }
.luxury-product-price .kdv { font-size: 0.75rem; color: var(--color-muted); opacity: 0.8; } .luxury-product-actions {
display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.btn-outline-minimal {
border: 1px solid rgba(0,0,0,0.1); background: transparent;
color: var(--color-text); font-size: 0.65rem; padding: 10px 16px;
letter-spacing: 0.1em; text-transform: uppercase;
transition: all 0.3s ease; cursor: pointer; border-radius: 4px;
}
.btn-outline-minimal:hover {
border-color: var(--color-indigo); color: var(--color-indigo);
}
.btn-icon-minimal {
width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.1);
border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
color: var(--color-text); transition: all 0.3s ease;
}
.btn-icon-minimal:hover {
border-color: var(--color-indigo); color: var(--color-indigo);
}  .ql-section {
padding-block: clamp(6rem, 12vw, 14rem);
position: relative;
overflow: hidden;
}
.ql-section-header { margin-bottom: clamp(3rem, 6vw, 6rem); }
.ql-section-header h2 {
font-family: var(--font-secondary);
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 300;
color: var(--color-heading);
margin-top: var(--space-4);
}
.ql-label {
display: inline-block;
font-size: 0.7rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--color-indigo);
font-weight: 500;
} .ql-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: var(--color-bg);
}
.ql-hero__bg {
position: absolute; inset: 0; z-index: 0;
}
.ql-hero__img {
width: 100%; height: 100%; object-fit: cover;
opacity: 0.6;
animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
0% { transform: scale(1); }
100% { transform: scale(1.08); }
}
.ql-hero__overlay {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(180deg, rgba(251,251,250,0.3) 0%, rgba(251,251,250,0.9) 100%);
}
.ql-hero__content {
position: relative; z-index: 2;
text-align: center;
max-width: 900px;
padding: var(--space-8);
}
.ql-hero__eyebrow {
display: block;
font-size: 0.75rem;
letter-spacing: 0.5em;
color: var(--color-gold);
margin-bottom: var(--space-8);
font-weight: 600;
}
.ql-hero__title {
font-family: var(--font-secondary);
font-size: clamp(3rem, 10vw, 7.5rem);
font-weight: 300;
color: var(--color-heading);
line-height: 1;
letter-spacing: 0.03em;
margin-bottom: var(--space-12);
}
.ql-hero__desc {
color: var(--color-text);
font-size: var(--text-md);
font-weight: 400;
line-height: 2;
max-width: 55ch;
margin: 0 auto var(--space-16);
letter-spacing: 0.03em;
}
.ql-hero__cta {
display: inline-flex;
align-items: center;
gap: var(--space-3);
color: var(--color-indigo);
text-decoration: none;
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
border: 1px solid rgba(44,47,110,0.2);
padding: var(--space-4) var(--space-10);
transition: all 0.5s ease;
}
.ql-hero__cta:hover {
background: rgba(44,47,110,0.05);
border-color: var(--color-indigo);
transform: translateY(-2px);
color: var(--color-indigo);
opacity: 1;
}
.ql-hero__scroll-hint {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.ql-hero__scroll-hint span {
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--color-muted);
}
.ql-hero__scroll-line {
width: 1px;
height: 60px;
background: linear-gradient(180deg, var(--color-muted), transparent);
animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
50% { opacity: 1; transform: scaleY(1); }
} .ql-story { background: var(--color-bg); }
.ql-story__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(3rem, 8vw, 8rem);
align-items: center;
}
.ql-story__image {
overflow: hidden;
aspect-ratio: 3/4;
}
.ql-story__image img {
width: 100%; height: 100%; object-fit: cover;
filter: grayscale(15%);
transition: transform 1.5s ease;
}
.ql-story__image:hover img { transform: scale(1.04); }
.ql-story__title {
font-family: var(--font-secondary);
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 300;
margin-bottom: var(--space-8);
margin-top: var(--space-4);
}
.ql-story__content p {
font-size: var(--text-md);
font-weight: 300;
line-height: 2;
color: var(--color-text);
margin-bottom: var(--space-6);
} .ql-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.75rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--color-indigo);
text-decoration: none;
border-bottom: 1px solid var(--color-indigo);
padding-bottom: 4px;
transition: all 0.4s ease;
margin-top: var(--space-8);
}
.ql-link:hover {
gap: 14px;
opacity: 0.7;
} .ql-quote-banner {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.ql-quote-banner__bg {
position: absolute; inset: 0;
}
.ql-quote-banner__bg img {
width: 100%; height: 100%; object-fit: cover;
opacity: 0.4;
transition: transform 12s ease;
}
.ql-quote-banner:hover .ql-quote-banner__bg img {
transform: scale(1.05);
}
.ql-quote-banner__overlay {
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(251,251,250,0.8), rgba(251,251,250,0.5));
}
.ql-quote-banner__content {
position: relative; z-index: 2;
text-align: center;
padding: var(--space-8);
}
.ql-quote-banner__content blockquote {
font-family: var(--font-secondary);
font-size: clamp(1.8rem, 4vw, 3.5rem);
font-weight: 300;
color: var(--color-heading);
line-height: 1.5;
max-width: 800px;
margin: 0 auto var(--space-8);
font-style: italic;
}
.ql-quote-banner__content cite {
display: block;
font-size: 0.75rem;
letter-spacing: 0.3em;
color: var(--color-muted);
text-transform: uppercase;
font-style: normal;
} .ql-services { background: var(--color-green); }
.ql-services__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-8);
}
.ql-service-card {
background: var(--color-bg);
overflow: hidden;
transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.ql-service-card:hover {
transform: translateY(-8px);
box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}
.ql-service-card__img {
aspect-ratio: 4/3;
overflow: hidden;
}
.ql-service-card__img img {
width: 100%; height: 100%; object-fit: cover;
filter: grayscale(10%);
transition: transform 1.2s ease;
}
.ql-service-card:hover .ql-service-card__img img {
transform: scale(1.06);
}
.ql-service-card__body {
padding: var(--space-8);
}
.ql-service-card__icon {
width: 48px; height: 48px;
border: 1px solid rgba(0,0,0,0.08);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin-bottom: var(--space-6);
color: var(--color-gold);
}
.ql-service-card__body h3 {
font-family: var(--font-secondary);
font-size: var(--text-xl);
font-weight: 400;
margin-bottom: var(--space-4);
}
.ql-service-card__body p {
font-size: var(--text-sm);
color: var(--color-muted);
line-height: 1.8;
margin-bottom: var(--space-4);
} .ql-affirmation { background: var(--color-bg); padding-block: clamp(5rem, 10vw, 10rem); }
.ql-affirmation-card {
width: 280px; aspect-ratio: 9/14;
margin: 0 auto;
cursor: pointer;
position: relative;
border-radius: 8px;
overflow: hidden;
background: var(--color-bg);
border: 1px solid rgba(44,47,110,0.1);
box-shadow: 0 20px 40px rgba(0,0,0,0.04);
transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.6s ease;
}
.ql-affirmation-card:hover {
transform: translateY(-12px) scale(1.02);
box-shadow: 0 40px 60px rgba(0,0,0,0.08);
}
.ql-affirmation-card__glow {
position: absolute; inset: 0;
background:
radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08), transparent 50%),
radial-gradient(circle at 70% 80%, rgba(44,47,110,0.05), transparent 50%);
animation: cardGlow 4s ease-in-out infinite alternate;
}
@keyframes cardGlow {
0% { opacity: 0.6; }
100% { opacity: 1; }
}
.ql-affirmation-card__inner {
position: relative; z-index: 2;
width: 100%; height: 100%;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
gap: var(--space-4);
}
.ql-affirmation-card__symbol {
font-size: 2.5rem;
color: var(--color-gold);
animation: float 4s ease-in-out infinite;
}
.ql-affirmation-card__text {
font-family: var(--font-secondary);
font-size: 1.25rem;
letter-spacing: 0.25em;
color: var(--color-indigo);
font-weight: 500;
text-align: center;
line-height: 1.8;
}
.ql-affirmation-card__hint {
font-size: 0.6rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-muted);
margin-top: var(--space-4);
} .ql-collection { background: var(--color-green); } .ql-testimonials {
background: var(--color-bg);
padding-block: clamp(6rem, 12vw, 14rem);
}
.ql-testimonials__slider {
position: relative;
max-width: 800px;
margin: 0 auto;
min-height: 200px;
}
.ql-testimonial {
display: none;
flex-direction: column;
align-items: center;
animation: fadeIn 0.8s ease both;
}
.ql-testimonial.is-active {
display: flex;
}
.ql-testimonial__quote-icon {
margin-bottom: var(--space-8);
}
.ql-testimonial__text {
font-family: var(--font-secondary);
font-size: clamp(1.2rem, 2.5vw, 1.8rem);
font-weight: 300;
font-style: italic;
line-height: 1.8;
color: var(--color-heading);
margin-bottom: var(--space-8);
}
.ql-testimonial__name {
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--color-muted);
}
.ql-testimonials__dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: var(--space-12);
}
.ql-dot {
width: 8px; height: 8px;
border-radius: 50%;
border: 1px solid var(--color-indigo);
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}
.ql-dot.is-active {
background: var(--color-indigo);
transform: scale(1.3);
} .ql-cta {
background: var(--color-bg-secondary);
padding-block: clamp(6rem, 12vw, 12rem);
}
.ql-cta h2 {
font-family: var(--font-secondary);
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 300;
color: var(--color-heading);
margin-bottom: var(--space-6);
background: none;
-webkit-text-fill-color: initial;
}
.ql-cta p {
color: var(--color-text);
font-size: var(--text-md);
font-weight: 300;
max-width: 50ch;
margin: 0 auto var(--space-12);
}
.ql-cta__btn {
display: inline-flex;
align-items: center;
gap: var(--space-3);
color: var(--color-indigo);
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
text-decoration: none;
border: 1px solid rgba(44,47,110,0.2);
padding: var(--space-4) var(--space-10);
transition: all 0.5s ease;
}
.ql-cta__btn:hover {
background: rgba(44,47,110,0.05);
border-color: var(--color-indigo);
color: var(--color-indigo);
opacity: 1;
} .am-modal-overlay {
position: fixed; inset: 0;
background: rgba(42,40,37,0.85);
backdrop-filter: blur(10px);
z-index: 9999;
display: none;
align-items: center; justify-content: center;
}
.am-modal-overlay.is-active { display: flex; }
.am-modal {
background: var(--color-bg);
max-width: 500px;
width: 90%;
padding: var(--space-16);
text-align: center;
position: relative;
animation: fadeIn 0.5s ease both;
}
.am-modal__close {
position: absolute; top: var(--space-4); right: var(--space-4);
background: none; border: none; font-size: 1.5rem;
cursor: pointer; color: var(--color-muted);
transition: color 0.3s ease;
}
.am-modal__close:hover { color: var(--color-indigo); }
.am-modal__title {
font-family: var(--font-secondary);
font-size: var(--text-2xl);
font-weight: 300;
margin-bottom: var(--space-8);
}
.am-modal__content {
font-size: var(--text-md);
font-style: italic;
color: var(--color-text);
line-height: 2;
} @media (max-width: 768px) {
.ql-story__grid { grid-template-columns: 1fr; }
.ql-services__grid { grid-template-columns: 1fr; }
.ql-hero__scroll-hint { display: none; }
.ql-affirmation-card { width: 240px; }
} .am-custom-form-wrapper {
background: #ffffff;
border-radius: 12px;
padding: clamp(20px, 5vw, 40px);
box-shadow: 0 20px 60px rgba(0,0,0,0.08);
border: 1px solid rgba(44,47,110,0.1);
position: relative;
overflow: hidden;
margin-top: 40px !important;
margin-bottom: 40px !important;
}
.am-custom-form-wrapper::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 6px;
background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.am-custom-form-wrapper .am-form-heading {
font-family: var(--font-secondary);
font-size: clamp(1.8rem, 4vw, 2.5rem);
color: var(--color-indigo);
margin-bottom: 5px;
text-align: center;
}
.am-custom-form-wrapper .am-form-desc {
text-align: center;
color: var(--color-muted);
font-size: 0.9rem;
margin-bottom: 30px;
}
.am-form input[type="text"], .am-form input[type="email"], .am-form textarea, .am-form select {
background: #fdfdfc !important;
transition: all 0.3s ease;
}
.am-form input:focus, .am-form textarea:focus, .am-form select:focus {
border-color: var(--color-gold) !important;
box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
outline: none;
}
.am-form button[type="submit"] {
background: var(--color-indigo) !important;
color: white !important;
padding: 18px 40px !important;
font-size: 1.1rem !important;
font-weight: 600 !important;
letter-spacing: 0.1em !important;
border-radius: 8px !important;
width: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease !important;
border: none;
cursor: pointer;
margin-top: 20px;
}
.am-form button[type="submit"]:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(44,47,110,0.25) !important;
}  .ql-page h1, .ql-page h2, .entry-content h1, .entry-content h2 {
color: var(--color-indigo);
}
.ql-page h3, .ql-page h4, .entry-content h3, .entry-content h4 {
color: var(--color-heading);
}
.ql-page h5, .ql-page h6, .entry-content h5, .entry-content h6 {
color: var(--color-heading);
}
.ql-page p, .ql-page li, .entry-content p, .entry-content li {
color: var(--color-text) !important;
}.woocommerce-page .site-main {
padding-top: 140px !important;
background: var(--color-bg) !important;
}
.woocommerce-page .container {
max-width: var(--container-xl) !important;
margin: 0 auto !important;
padding: 0 var(--space-6) var(--space-20) !important;
} .woocommerce-message,
.woocommerce-info,
.woocommerce-error {
border-radius: 12px !important;
border: none !important;
padding: 15px 25px !important;
font-size: var(--text-sm) !important;
box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
margin-bottom: 30px !important;
list-style: none !important;
}
.woocommerce-message { background: rgba(168,195,160,0.20) !important; color: var(--color-heading) !important; border-left: 4px solid var(--color-green) !important; }
.woocommerce-info    { background: rgba(174,227,225,0.25) !important; color: var(--color-heading) !important; border-left: 4px solid var(--color-teal) !important; }
.woocommerce-error   { background: rgba(220,53,69,0.08)  !important; color: #b02a37 !important; border-left: 4px solid #dc3545 !important; } .woocommerce ul.products {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 40px !important;
list-style: none !important;
padding: 0 !important;
margin: 40px 0 60px 0 !important;
clear: both !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
display: none !important;
}
.woocommerce ul.products li.product {
float: none !important;
width: auto !important;
margin: 0 !important;
padding: 0 !important;
list-style: none !important;
display: flex !important;
flex-direction: column !important;
}
@media (max-width: 991px) {
.woocommerce ul.products {
grid-template-columns: repeat(2, 1fr) !important;
gap: 30px !important;
}
}
@media (max-width: 640px) {
.woocommerce ul.products {
grid-template-columns: 1fr !important;
gap: 25px !important;
}
} .woocommerce-result-count {
float: left !important;
margin: 0 0 25px 0 !important;
font-size: 13px !important;
color: var(--color-muted) !important;
line-height: 44px !important;
}
.woocommerce-ordering {
float: right !important;
margin: 0 0 25px 0 !important;
}
.woocommerce-ordering select {
width: auto !important;
min-width: 220px !important;
padding: 12px 40px 12px 20px !important;
border-radius: var(--radius-full) !important;
border: 1px solid rgba(44,47,110,0.15) !important;
font-size: 12px !important;
background-color: var(--color-white) !important;
font-family: var(--font-primary) !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
font-weight: 500 !important;
cursor: pointer !important;
color: var(--color-indigo) !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%232C2F6E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
background-repeat: no-repeat !important;
background-position: right 20px center !important;
appearance: none !important;
-webkit-appearance: none !important;
}
.woocommerce-ordering select:focus {
outline: none !important;
border-color: var(--color-gold) !important;
} .woocommerce ul.products li.product article.card--product {
background: var(--color-white) !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
padding: 0 !important;
box-shadow: 0 10px 30px rgba(44,47,110,0.02) !important;
transition: transform 0.4s ease, box-shadow 0.4s ease !important;
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
overflow: hidden !important;
position: relative !important;
height: auto !important;
min-height: 100% !important;
}
.woocommerce ul.products li.product article.card--product:hover {
transform: translateY(-6px) !important;
box-shadow: 0 20px 40px rgba(44,47,110,0.07) !important;
}
.woocommerce ul.products li.product article.card--product .woocommerce-loop-product__link {
display: flex !important;
flex-direction: column !important;
flex-grow: 1 !important;
text-decoration: none !important;
color: inherit !important;
}
.woocommerce ul.products li.product article.card--product img {
border-radius: 20px 20px 0 0 !important;
width: 100% !important;
height: auto !important;
aspect-ratio: 1/1 !important;
object-fit: cover !important;
border: none !important;
padding: 0 !important;
margin: 0 !important;
display: block !important;
transition: transform 0.6s cubic-bezier(0.4,0,0.2,1) !important;
flex-shrink: 0 !important;
}
.woocommerce ul.products li.product article.card--product:hover img {
transform: scale(1.04) !important;
}
.woocommerce ul.products li.product article.card--product .woocommerce-loop-product__title {
font-family: var(--font-secondary) !important;
font-size: 1.15rem !important;
color: var(--color-heading) !important;
padding: 15px 15px 5px 15px !important;
margin: 0 !important;
text-align: center !important;
font-weight: 600 !important;
line-height: 1.4 !important;
}
.woocommerce ul.products li.product article.card--product .price {
display: block !important;
padding: 5px 15px 15px 15px !important;
font-size: 1.1rem !important;
font-weight: 700 !important;
color: var(--color-indigo) !important;
text-align: center !important;
font-family: var(--font-primary) !important;
margin-top: auto !important;
margin-bottom: 0 !important;
}
.woocommerce ul.products li.product article.card--product .price ins {
text-decoration: none !important;
}
.woocommerce ul.products li.product article.card--product .price del {
color: var(--color-muted) !important;
font-weight: 400 !important;
font-size: 0.9rem !important;
margin-right: 6px !important;
} .woocommerce ul.products li.product article.card--product .btn--primary,
.woocommerce ul.products li.product article.card--product .add_to_cart_button,
.woocommerce ul.products li.product article.card--product .button {
margin: auto 20px 20px 20px !important;
display: block !important;
text-align: center !important;
padding: 12px 20px !important;
border-radius: var(--radius-full) !important;
background: var(--color-indigo) !important;
color: var(--color-white) !important;
font-weight: 500 !important;
font-size: 11px !important;
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
text-decoration: none !important;
transition: all 0.3s ease !important;
border: none !important;
} .woocommerce ul.products li.product article.card--product a.added_to_cart {
display: none !important;
}
.woocommerce ul.products li.product article.card--product .btn--primary:hover,
.woocommerce ul.products li.product article.card--product .add_to_cart_button:hover,
.woocommerce ul.products li.product article.card--product .button:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
transform: translateY(-2px) !important;
box-shadow: 0 6px 15px rgba(212,175,55,0.2) !important;
} .woocommerce span.onsale {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
border-radius: var(--radius-full) !important;
font-size: 10px !important;
font-weight: 700 !important;
letter-spacing: 0.08em !important;
padding: 5px 12px !important;
box-shadow: none !important;
min-height: auto !important;
line-height: 1.5 !important;
top: 15px !important;
left: 15px !important;
right: auto !important;
} .single-product div.product {
background: #ffffff !important;
border-radius: 24px !important;
padding: clamp(25px, 5vw, 60px) !important;
box-shadow: 0 20px 50px rgba(0,0,0,0.02) !important;
border: 1px solid rgba(44,47,110,0.05) !important;
margin-top: 40px !important;
margin-bottom: 60px !important;
}
@media (min-width: 992px) {
.single-product div.product {
display: grid !important;
grid-template-columns: 1.05fr 0.95fr !important;
gap: 60px !important;
align-items: start !important;
}
.single-product div.product div.images,
.single-product div.product div.summary {
width: 100% !important;
float: none !important;
}
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .upsells {
grid-column: span 2 !important;
width: 100% !important;
}
}
.single-product .woocommerce-product-gallery {
border-radius: 20px !important;
overflow: hidden !important;
background: transparent !important;
padding: 0 !important;
border: none !important;
box-shadow: none !important;
}
.single-product .woocommerce-product-gallery img {
border-radius: 20px !important;
width: 100% !important;
height: auto !important;
}
.single-product .summary {
background: transparent !important;
padding: 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
border: none !important;
}
.single-product .product_title {
font-family: var(--font-secondary) !important;
font-size: clamp(2rem, 3.5vw, 2.75rem) !important;
color: var(--color-heading) !important;
margin-bottom: 15px !important;
line-height: 1.25 !important;
font-weight: 400 !important;
}
.single-product .summary .price {
color: var(--color-indigo) !important;
font-size: 2rem !important;
font-weight: 700 !important;
margin-bottom: 25px !important;
font-family: var(--font-primary) !important;
font-variant-numeric: lining-nums !important;
font-feature-settings: "lnum" 1 !important;
}
.single-product .summary .price del {
color: var(--color-muted) !important;
font-size: 1.2rem !important;
margin-right: 10px !important;
font-family: var(--font-primary) !important;
}
.single-product .woocommerce-product-details__short-description {
font-size: 1.05rem !important;
line-height: 1.8 !important;
color: var(--color-text) !important;
margin-bottom: 30px !important;
padding-bottom: 25px !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
} .single-product table.variations {
width: 100% !important;
border-collapse: collapse !important;
margin-bottom: 25px !important;
}
.single-product table.variations th {
text-align: left !important;
padding: 12px 0 !important;
width: 110px !important;
font-size: 12px !important;
text-transform: uppercase !important;
letter-spacing: 0.08em !important;
color: var(--color-heading) !important;
font-weight: 600 !important;
}
.single-product table.variations td {
padding: 12px 0 !important;
}
.single-product table.variations td select {
width: 100% !important;
max-width: 320px !important;
height: 48px !important;
padding: 0 15px !important;
border-radius: var(--radius-md) !important;
border: 1px solid rgba(44,47,110,0.15) !important;
background: #fff !important;
font-size: var(--text-sm) !important;
cursor: pointer !important;
} .single-product form.cart {
display: flex !important;
flex-wrap: wrap !important;
gap: 15px !important;
align-items: center !important;
margin-top: 30px !important;
margin-bottom: 30px !important;
}
.single-product .quantity {
display: inline-flex !important;
align-items: center !important;
}
.single-product .quantity .qty {
width: 75px !important;
height: 50px !important;
border-radius: var(--radius-full) !important;
border: 1px solid rgba(44,47,110,0.15) !important;
padding: 0 !important;
text-align: center !important;
font-size: var(--text-sm) !important;
font-weight: 600 !important;
color: var(--color-heading) !important;
background: #fff !important;
}
.single-product .quantity .qty:focus {
border-color: var(--color-gold) !important;
outline: none !important;
}
.single-product .single_add_to_cart_button {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
border-radius: var(--radius-full) !important;
padding: 0 35px !important;
height: 50px !important;
font-size: 13px !important;
font-weight: 600 !important;
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
border: none !important;
transition: all 0.3s ease !important;
box-shadow: 0 4px 15px rgba(44,47,110,0.15) !important;
flex-grow: 1 !important;
cursor: pointer !important;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
}
.single-product .single_add_to_cart_button:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
transform: translateY(-2px) !important;
box-shadow: 0 8px 25px rgba(212,175,55,0.2) !important;
} .single-product .product_meta {
border-top: 1px solid rgba(44,47,110,0.08) !important;
padding-top: 25px !important;
font-size: 12px !important;
color: var(--color-muted) !important;
line-height: 1.7 !important;
}
.single-product .product_meta > span {
display: block !important;
margin-bottom: 8px !important;
}
.single-product .product_meta a {
color: var(--color-indigo) !important;
font-weight: 500 !important;
text-decoration: none !important;
}
.single-product .product_meta a:hover {
color: var(--color-gold) !important;
} .woocommerce div.product .woocommerce-tabs {
margin-top: 60px !important;
clear: both !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
margin: 0 0 30px 0 !important;
padding: 0 !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
display: flex !important;
justify-content: center !important;
gap: 40px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
border: none !important;
background: transparent !important;
margin: 0 !important;
padding: 0 !important;
position: relative !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
color: var(--color-muted) !important;
font-weight: 600 !important;
font-size: 13px !important;
padding: 15px 0 !important;
text-transform: uppercase !important;
letter-spacing: 0.1em !important;
display: block !important;
position: relative !important;
transition: color 0.3s ease !important;
text-decoration: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
color: var(--color-indigo) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
content: '' !important;
position: absolute !important;
bottom: -1px !important;
left: 0 !important;
width: 100% !important;
height: 2px !important;
background: var(--color-gold) !important;
}
.woocommerce div.product .woocommerce-Tabs-panel {
background: var(--color-white) !important;
padding: 50px 60px !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 40px rgba(0,0,0,0.01) !important;
line-height: 1.8 !important;
text-align: left !important;
}
.woocommerce div.product .woocommerce-Tabs-panel h2 {
font-family: var(--font-secondary) !important;
color: var(--color-indigo) !important;
margin-bottom: 24px !important;
font-size: 1.75rem !important;
font-weight: 400 !important;
text-align: left !important;
}
.woocommerce div.product .woocommerce-Tabs-panel--description,
.woocommerce div.product #tab-description {
text-align: left !important;
}
.woocommerce div.product .woocommerce-Tabs-panel--description p,
.woocommerce div.product #tab-description p,
.woocommerce div.product .woocommerce-Tabs-panel--description div,
.woocommerce div.product #tab-description div,
.woocommerce div.product .woocommerce-Tabs-panel--description span,
.woocommerce div.product #tab-description span,
.woocommerce div.product .woocommerce-Tabs-panel--description li,
.woocommerce div.product #tab-description li,
.woocommerce div.product .woocommerce-Tabs-panel--description ul,
.woocommerce div.product #tab-description ul,
.woocommerce div.product .woocommerce-Tabs-panel--description blockquote,
.woocommerce div.product #tab-description blockquote {
text-align: left !important;
max-width: 100% !important;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
@media (max-width: 768px) {
.woocommerce div.product .woocommerce-Tabs-panel {
padding: 30px 24px !important;
}
} #reviews #comments ol.commentlist {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
#reviews #comments ol.commentlist li.comment {
margin-bottom: 30px !important;
padding-bottom: 30px !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
}
#reviews #comments ol.commentlist li.comment img.avatar {
float: left !important;
border-radius: 50% !important;
margin-right: 20px !important;
border: 1px solid rgba(0,0,0,0.05) !important;
}
#reviews #comments ol.commentlist li.comment .comment-text {
margin: 0 !important;
padding: 0 !important;
border: none !important;
}
#reviews #comments ol.commentlist li.comment .comment-text .meta {
font-size: 12px !important;
color: var(--color-muted) !important;
margin-bottom: 8px !important;
}
#reviews #comments ol.commentlist li.comment .comment-text .description {
font-size: var(--text-base) !important;
} #review_form #respond p.comment-form-rating {
margin-bottom: 20px !important;
}
#review_form #respond input[type="text"],
#review_form #respond input[type="email"],
#review_form #respond textarea {
width: 100% !important;
padding: 12px 18px !important;
border-radius: 8px !important;
border: 1px solid rgba(44,47,110,0.15) !important;
background: #fff !important;
font-size: var(--text-sm) !important;
margin-bottom: 15px !important;
}
#review_form #respond input[type="text"]:focus,
#review_form #respond input[type="email"]:focus,
#review_form #respond textarea:focus {
outline: none !important;
border-color: var(--color-gold) !important;
}
#review_form #respond input[type="submit"] {
background: var(--color-indigo) !important;
color: #fff !important;
border: none !important;
padding: 12px 35px !important;
border-radius: var(--radius-full) !important;
font-size: 12px !important;
text-transform: uppercase !important;
letter-spacing: 0.15em !important;
font-weight: 600 !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
}
#review_form #respond input[type="submit"]:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
} .woocommerce .related.products {
margin-top: 80px !important;
}
.woocommerce .related.products > h2 {
text-align: center !important;
font-family: var(--font-secondary) !important;
color: var(--color-indigo) !important;
font-size: 2.25rem !important;
font-weight: 400 !important;
margin-bottom: 40px !important;
} .woocommerce .star-rating {
font-size: 14px !important;
margin-bottom: 10px !important;
}
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
color: var(--color-gold) !important;
letter-spacing: 2px !important;
} .woocommerce-cart .woocommerce {
display: flex !important;
flex-direction: column !important;
gap: 40px !important;
}
.woocommerce-cart-form {
width: 100% !important;
}
.woocommerce-cart-form table.cart {
width: 100% !important;
background: var(--color-white) !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 30px rgba(0,0,0,0.01) !important;
border-collapse: collapse !important;
margin-bottom: 30px !important;
}
.woocommerce-cart-form table.cart th {
background: rgba(44,47,110,0.03) !important;
color: var(--color-indigo) !important;
font-family: var(--font-primary) !important;
font-weight: 600 !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
padding: 18px 20px !important;
text-align: left !important;
}
.woocommerce-cart-form table.cart td {
padding: 20px !important;
border-bottom: 1px solid rgba(44,47,110,0.06) !important;
vertical-align: middle !important;
}
.woocommerce-cart-form table.cart td.product-thumbnail img {
width: 80px !important;
height: 80px !important;
object-fit: cover !important;
border-radius: 10px !important;
}
.woocommerce-cart-form table.cart td.product-name a {
font-family: var(--font-secondary) !important;
font-size: 1.15rem !important;
color: var(--color-heading) !important;
font-weight: 500 !important;
text-decoration: none !important;
}
.woocommerce-cart-form table.cart td.product-name a:hover {
color: var(--color-gold) !important;
}
.woocommerce-cart-form table.cart td.product-price,
.woocommerce-cart-form table.cart td.product-subtotal {
font-size: 1.1rem !important;
font-weight: 500 !important;
color: var(--color-heading) !important;
}
.woocommerce-cart-form table.cart td.product-remove a.remove {
font-size: 1.5rem !important;
color: #dc3545 !important;
text-decoration: none !important;
line-height: 1 !important;
}
.woocommerce-cart-form table.cart td.product-remove a.remove:hover {
background: #dc3545 !important;
color: #fff !important;
} .woocommerce-cart-form table.cart td.actions {
background: rgba(44,47,110,0.01) !important;
text-align: right !important;
}
.woocommerce-cart-form table.cart td.actions .coupon {
float: left !important;
display: inline-flex !important;
gap: 10px !important;
}
.woocommerce-cart-form table.cart td.actions input[type="text"] {
height: 44px !important;
border-radius: var(--radius-full) !important;
border: 1px solid rgba(44,47,110,0.15) !important;
padding: 0 20px !important;
font-size: 12px !important;
min-width: 160px !important;
}
.woocommerce-cart-form table.cart td.actions input[type="submit"] {
height: 44px !important;
border-radius: var(--radius-full) !important;
padding: 0 25px !important;
font-size: 11px !important;
font-weight: 600 !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
cursor: pointer !important;
border: 1px solid var(--color-indigo) !important;
background: transparent !important;
color: var(--color-indigo) !important;
transition: all 0.3s ease !important;
}
.woocommerce-cart-form table.cart td.actions input[type="submit"]:hover {
background: var(--color-indigo) !important;
color: #fff !important;
}
.woocommerce-cart-form table.cart td.actions button[name="update_cart"] {
background: var(--color-indigo) !important;
color: #fff !important;
border: none !important;
height: 44px !important;
border-radius: var(--radius-full) !important;
padding: 0 30px !important;
font-size: 11px !important;
font-weight: 600 !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
}
.woocommerce-cart-form table.cart td.actions button[name="update_cart"]:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
} .cart-collaterals {
display: flex !important;
flex-wrap: wrap !important;
justify-content: space-between !important;
gap: 40px !important;
margin-top: 40px !important;
}
.cart-collaterals .cross-sells {
flex: 1 1 500px !important;
}
.cart-collaterals .cart_totals {
flex: 1 1 480px !important;
max-width: 480px !important;
background: var(--color-white) !important;
padding: 40px !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 40px rgba(0,0,0,0.01) !important;
margin-left: auto !important;
}
.cart_totals h2 {
font-family: var(--font-secondary) !important;
color: var(--color-indigo) !important;
font-size: 1.75rem !important;
margin-bottom: 25px !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
padding-bottom: 12px !important;
font-weight: 400 !important;
}
.cart_totals table.shop_table {
width: 100% !important;
margin-bottom: 30px !important;
border-collapse: collapse !important;
}
.cart_totals table.shop_table th {
text-align: left !important;
color: var(--color-muted) !important;
font-weight: 500 !important;
padding: 12px 0 !important;
border-bottom: 1px solid rgba(44,47,110,0.06) !important;
}
.cart_totals table.shop_table td {
text-align: right !important;
color: var(--color-heading) !important;
font-weight: 600 !important;
padding: 12px 0 !important;
border-bottom: 1px solid rgba(44,47,110,0.06) !important;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button {
background: var(--color-indigo) !important;
color: #fff !important;
border-radius: var(--radius-full) !important;
font-weight: 600 !important;
padding: 16px 30px !important;
transition: all 0.3s ease !important;
display: block !important;
text-align: center !important;
text-decoration: none !important;
font-size: 13px !important;
text-transform: uppercase !important;
letter-spacing: 0.1em !important;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
box-shadow: 0 8px 25px rgba(212,175,55,0.2) !important;
transform: translateY(-2px) !important;
} @media (max-width: 768px) {
.woocommerce-cart-form table.cart,
.woocommerce-cart-form table.cart thead,
.woocommerce-cart-form table.cart tbody,
.woocommerce-cart-form table.cart tr,
.woocommerce-cart-form table.cart td {
display: block !important;
width: 100% !important;
box-sizing: border-box !important;
}
.woocommerce-cart-form table.cart thead {
display: none !important;
}
.woocommerce-cart-form table.cart tr {
margin-bottom: 25px !important;
border: 1px solid rgba(44,47,110,0.08) !important;
border-radius: 16px !important;
padding: 20px !important;
background: #fff !important;
position: relative !important;
box-shadow: 0 4px 15px rgba(0,0,0,0.01) !important;
}
.woocommerce-cart-form table.cart td {
border: none !important;
padding: 12px 0 !important;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
text-align: right !important;
}
.woocommerce-cart-form table.cart td::before {
content: attr(data-title) ": " !important;
font-weight: 600 !important;
float: left !important;
color: var(--color-heading) !important;
text-transform: uppercase !important;
font-size: 11px !important;
letter-spacing: 0.05em !important;
}
.woocommerce-cart-form table.cart td.product-thumbnail {
display: block !important;
text-align: center !important;
border-bottom: 1px solid rgba(44,47,110,0.06) !important;
padding-bottom: 15px !important;
margin-bottom: 10px !important;
}
.woocommerce-cart-form table.cart td.product-thumbnail::before {
display: none !important;
}
.woocommerce-cart-form table.cart td.product-thumbnail img {
margin: 0 auto !important;
width: 100px !important;
height: 100px !important;
}
.woocommerce-cart-form table.cart td.product-remove {
position: absolute !important;
top: 15px !important;
right: 20px !important;
padding: 0 !important;
width: auto !important;
border: none !important;
}
.woocommerce-cart-form table.cart td.product-remove::before {
display: none !important;
}
.woocommerce-cart-form table.cart td.actions {
display: block !important;
text-align: center !important;
padding-top: 15px !important;
border-top: 1px solid rgba(44,47,110,0.06) !important;
}
.woocommerce-cart-form table.cart td.actions .coupon {
display: flex !important;
flex-direction: column !important;
gap: 10px !important;
width: 100% !important;
float: none !important;
}
.woocommerce-cart-form table.cart td.actions .coupon input[type="text"],
.woocommerce-cart-form table.cart td.actions .coupon input[type="submit"] {
width: 100% !important;
min-width: 0 !important;
box-sizing: border-box !important;
}
.woocommerce-cart-form table.cart td.actions button[name="update_cart"] {
width: 100% !important;
margin-top: 10px !important;
display: block !important;
}
.cart-collaterals .cart_totals {
max-width: 100% !important;
}
} .woocommerce-checkout .woocommerce {
display: block !important;
}
.woocommerce-checkout form.checkout {
display: grid !important;
grid-template-columns: 1.15fr 0.85fr !important;
gap: 0 50px !important;
align-items: start !important;
margin-top: 30px !important;
}
#customer_details {
grid-column: 1 !important;
grid-row: 1 / span 3 !important;
background: var(--color-white) !important;
padding: 40px !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 40px rgba(0,0,0,0.01) !important;
display: flex !important;
flex-direction: column !important;
gap: 30px !important;
}
#customer_details .col-1,
#customer_details .col-2 {
width: 100% !important;
float: none !important;
margin: 0 !important;
padding: 0 !important;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #ship-to-different-address h3,
.woocommerce-checkout form.checkout h3 {
font-family: var(--font-secondary) !important;
color: var(--color-indigo) !important;
font-size: 1.75rem !important;
margin-bottom: 25px !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
padding-bottom: 12px !important;
font-weight: 400 !important;
} .woocommerce-checkout .product-name h3,
.woocommerce-checkout .product-name a,
.woocommerce-checkout td.product-name,
.wc-block-components-checkout-order-summary-item__title,
.wc-block-components-checkout-order-summary-item__description,
.woocommerce-checkout table.shop_table .product-name {
font-size: 14px !important;
font-weight: 600 !important;
font-family: var(--font-primary), sans-serif !important;
color: var(--color-indigo) !important;
line-height: 1.4 !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
word-break: normal !important;
overflow-wrap: break-word !important;
word-wrap: break-word !important;
display: inline-block !important;
}
#order_review_heading {
grid-column: 2 !important;
grid-row: 1 !important;
margin-top: 0 !important;
}
#order_review {
grid-column: 2 !important;
grid-row: 2 !important;
background: var(--color-white) !important;
padding: 40px !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 40px rgba(0,0,0,0.01) !important;
}
.woocommerce-checkout #order_review table.shop_table {
width: 100% !important;
margin-bottom: 30px !important;
border-collapse: collapse !important;
}
.woocommerce-checkout #order_review table.shop_table th {
text-align: left !important;
color: var(--color-muted) !important;
font-weight: 500 !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
padding-bottom: 12px !important;
}
.woocommerce-checkout #order_review table.shop_table td {
padding: 12px 0 !important;
border-bottom: 1px solid rgba(44,47,110,0.06) !important;
}
.woocommerce-checkout #order_review table.shop_table .product-name {
font-size: var(--text-sm) !important;
color: var(--color-heading) !important;
}
.woocommerce-checkout #order_review table.shop_table .product-total {
text-align: right !important;
font-weight: 600 !important;
color: var(--color-heading) !important;
} .woocommerce-checkout #payment {
background: transparent !important;
border: none !important;
padding: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods {
list-style: none !important;
padding: 0 !important;
margin: 0 0 30px 0 !important;
border-bottom: 1px solid rgba(44,47,110,0.08) !important;
padding-bottom: 20px !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
margin-bottom: 15px !important;
font-weight: 500 !important;
display: flex !important;
align-items: center !important;
flex-wrap: wrap !important;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
margin: 0 !important;
cursor: pointer !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
display: inline-block !important;
margin-left: 10px !important;
cursor: pointer !important;
font-size: var(--text-sm) !important;
color: var(--color-heading) !important;
}
.woocommerce-checkout #payment .payment_box {
background: rgba(44,47,110,0.03) !important;
padding: 15px 20px !important;
border-radius: 8px !important;
font-size: var(--text-sm) !important;
color: var(--color-text) !important;
margin-top: 10px !important;
line-height: 1.6 !important;
width: 100% !important;
box-sizing: border-box !important;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
border-radius: var(--radius-full) !important;
border: none !important;
padding: 16px 30px !important;
font-weight: 600 !important;
font-size: 13px !important;
text-transform: uppercase !important;
letter-spacing: 0.1em !important;
width: 100% !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
box-shadow: 0 4px 15px rgba(44,47,110,0.15) !important;
}
.woocommerce #payment #place_order:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
box-shadow: 0 8px 25px rgba(212,175,55,0.2) !important;
transform: translateY(-2px) !important;
} .woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
width: 100% !important;
height: 48px !important;
padding: 0 15px !important;
border-radius: 8px !important;
border: 1px solid rgba(44,47,110,0.15) !important;
background: #fff !important;
font-size: var(--text-sm) !important;
box-sizing: border-box !important;
}
.woocommerce-checkout textarea {
height: 120px !important;
padding: 15px !important;
}
.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
outline: none !important;
border-color: var(--color-gold) !important;
}
.woocommerce-checkout .form-row {
margin-bottom: 20px !important;
}
.woocommerce-checkout .form-row label {
display: block !important;
font-weight: 500 !important;
font-size: 13px !important;
color: var(--color-heading) !important;
margin-bottom: 8px !important;
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
width: 48% !important;
float: left !important;
clear: none !important;
}
.woocommerce-checkout .form-row-last {
float: right !important;
}
.woocommerce-checkout .form-row-wide {
clear: both !important;
width: 100% !important;
}
.woocommerce-checkout .form-row::after {
content: "" !important;
display: table !important;
clear: both !important;
}
.woocommerce-checkout input[type="checkbox"] {
width: auto !important;
height: auto !important;
margin-right: 8px !important;
display: inline-block !important;
vertical-align: middle !important;
cursor: pointer !important;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox,
.woocommerce-checkout .checkbox {
display: inline-block !important;
cursor: pointer !important;
font-weight: normal !important;
font-size: var(--text-sm) !important;
color: var(--color-text) !important;
} .cart_totals ul#shipping_method,
#order_review ul#shipping_method {
list-style: none !important;
padding: 0 !important;
margin: 10px 0 !important;
text-align: right !important;
}
.cart_totals ul#shipping_method li,
#order_review ul#shipping_method li {
margin-bottom: 8px !important;
display: flex !important;
align-items: center !important;
justify-content: flex-end !important;
}
.cart_totals ul#shipping_method li input[type="radio"],
#order_review ul#shipping_method li input[type="radio"] {
margin: 0 0 0 10px !important;
order: 2 !important;
cursor: pointer !important;
}
.cart_totals ul#shipping_method li label,
#order_review ul#shipping_method li label {
margin: 0 !important;
order: 1 !important;
font-size: 13px !important;
cursor: pointer !important;
color: var(--color-text) !important;
}
.woocommerce-shipping-calculator {
margin-top: 15px !important;
text-align: right !important;
}
.shipping-calculator-button {
font-size: 12px !important;
color: var(--color-indigo) !important;
text-decoration: underline !important;
} .woocommerce-message a.button.wc-forward,
.woocommerce-info a.button.wc-forward,
.woocommerce-error a.button.wc-forward {
background: var(--color-indigo) !important;
color: #fff !important;
padding: 8px 16px !important;
border-radius: var(--radius-full) !important;
font-size: 11px !important;
text-transform: uppercase !important;
letter-spacing: 0.08em !important;
font-weight: 600 !important;
float: right !important;
margin-top: -4px !important;
text-decoration: none !important;
transition: all 0.3s ease !important;
}
.woocommerce-message a.button.wc-forward:hover,
.woocommerce-info a.button.wc-forward:hover,
.woocommerce-error a.button.wc-forward:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
}
@media (max-width: 600px) {
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
display: flex !important;
flex-direction: column !important;
gap: 15px !important;
align-items: flex-start !important;
}
.woocommerce-message a.button.wc-forward,
.woocommerce-info a.button.wc-forward,
.woocommerce-error a.button.wc-forward {
float: none !important;
align-self: flex-start !important;
margin-top: 0 !important;
}
}
@media (max-width: 1024px) {
.woocommerce-checkout form.checkout {
grid-template-columns: 1fr !important;
gap: 30px !important;
}
#customer_details {
grid-column: 1 !important;
grid-row: auto !important;
}
#order_review_heading {
grid-column: 1 !important;
grid-row: auto !important;
margin-top: 20px !important;
}
#order_review {
grid-column: 1 !important;
grid-row: auto !important;
}
}
@media (max-width: 600px) {
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
width: 100% !important;
float: none !important;
}
} .woocommerce-account .woocommerce {
display: flex !important;
gap: 40px !important;
}
@media (max-width: 768px) {
.woocommerce-account .woocommerce {
flex-direction: column !important;
}
}
.woocommerce-MyAccount-navigation {
width: 250px !important;
flex-shrink: 0 !important;
}
@media (max-width: 768px) {
.woocommerce-MyAccount-navigation {
width: 100% !important;
}
}
.woocommerce-MyAccount-navigation ul {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
.woocommerce-MyAccount-navigation ul li {
margin-bottom: 5px !important;
}
.woocommerce-MyAccount-navigation ul li a {
display: block !important;
padding: 12px 20px !important;
border-radius: 8px !important;
color: var(--color-text) !important;
font-size: var(--text-sm) !important;
font-weight: 500 !important;
transition: all 0.3s ease !important;
text-decoration: none !important;
background: rgba(44,47,110,0.02) !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
}
.woocommerce-MyAccount-content {
flex-grow: 1 !important;
background: var(--color-white) !important;
padding: 40px !important;
border-radius: 20px !important;
border: 1px solid rgba(44,47,110,0.05) !important;
box-shadow: 0 10px 40px rgba(0,0,0,0.01) !important;
}
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
font-family: var(--font-secondary) !important;
color: var(--color-indigo) !important;
font-size: 1.5rem !important;
margin-bottom: 20px !important;
font-weight: 400 !important;
} .woocommerce nav.woocommerce-pagination {
margin-top: 50px !important;
text-align: center !important;
}
.woocommerce nav.woocommerce-pagination ul {
display: inline-flex !important;
gap: 8px !important;
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li {
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
min-width: 44px !important;
height: 44px !important;
padding: 0 15px !important;
border-radius: var(--radius-full) !important;
border: 1px solid rgba(44,47,110,0.12) !important;
color: var(--color-text) !important;
font-weight: 500 !important;
transition: all 0.3s ease !important;
text-decoration: none !important;
background: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
border-color: var(--color-indigo) !important;
} .am-cart-drawer {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
z-index: 999999 !important;
visibility: hidden !important;
transition: visibility 0.4s ease !important;
}
.am-cart-drawer.is-open {
visibility: visible !important;
}
.am-cart-drawer-overlay {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
background: rgba(42, 40, 37, 0.5) !important;
backdrop-filter: blur(6px) !important;
opacity: 0 !important;
transition: opacity 0.4s ease !important;
}
.am-cart-drawer.is-open .am-cart-drawer-overlay {
opacity: 1 !important;
}
.am-cart-drawer-inner {
position: absolute !important;
top: 0 !important;
right: 0 !important;
width: 440px !important;
max-width: 100% !important;
height: 100% !important;
background: var(--color-white) !important;
box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08) !important;
transform: translateX(100%) !important;
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
display: flex !important;
flex-direction: column !important;
}
.am-cart-drawer.is-open .am-cart-drawer-inner {
transform: translateX(0) !important;
}
.am-cart-drawer-header {
padding: 24px 30px !important;
border-bottom: 1px solid rgba(44, 47, 110, 0.05) !important;
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
background: var(--color-white) !important;
}
.am-cart-drawer-header .drawer-title {
font-family: var(--font-secondary) !important;
font-size: 1.35rem !important;
color: var(--color-indigo) !important;
font-weight: 500 !important;
letter-spacing: 0.05em !important;
text-transform: uppercase !important;
}
.am-cart-drawer-close {
background: rgba(44, 47, 110, 0.03) !important;
border: 1px solid rgba(44, 47, 110, 0.05) !important;
width: 32px !important;
height: 32px !important;
border-radius: 50% !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 1.25rem !important;
line-height: 1 !important;
color: var(--color-indigo) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
padding: 0 !important;
}
.am-cart-drawer-close:hover {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
border-color: var(--color-indigo) !important;
transform: rotate(90deg) !important;
}
.am-cart-drawer-content {
flex-grow: 1 !important;
overflow-y: auto !important;
display: flex !important;
flex-direction: column !important;
} .am-cart-drawer-content .widget_shopping_cart_content {
display: flex !important;
flex-direction: column !important;
height: 100% !important;
flex-grow: 1 !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
overflow-y: auto !important;
flex-grow: 1 !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item {
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
padding: 24px 30px !important;
border-bottom: 1px solid rgba(44, 47, 110, 0.05) !important;
position: relative !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove {
position: absolute !important;
right: 30px !important;
top: 50% !important;
transform: translateY(-50%) !important;
width: 28px !important;
height: 28px !important;
border-radius: 50% !important;
background: rgba(44, 47, 110, 0.03) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
transition: all 0.3s ease !important;
text-indent: -9999px !important; overflow: hidden !important;
border: 1px solid rgba(44, 47, 110, 0.05) !important;
z-index: 2 !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove::before {
content: "✕" !important;
text-indent: 0 !important;
font-size: 11px !important;
font-weight: bold !important;
color: var(--color-indigo) !important;
display: block !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:hover {
background: #dc3545 !important;
border-color: #dc3545 !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:hover::before {
color: var(--color-white) !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item img {
width: 72px !important;
height: 72px !important;
object-fit: cover !important;
border-radius: 8px !important;
border: 1px solid rgba(44, 47, 110, 0.05) !important;
box-shadow: 0 4px 12px rgba(44, 47, 110, 0.04) !important;
transition: transform 0.3s ease !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:hover img {
transform: scale(1.05) !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove) {
display: flex !important;
align-items: center !important;
gap: 16px !important;
width: 100% !important;
padding-right: 40px !important; box-sizing: border-box !important;
font-family: var(--font-primary) !important;
font-size: 0.9rem !important;
font-weight: 600 !important;
color: var(--color-heading) !important;
text-decoration: none !important;
line-height: 1.4 !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:not(.remove):hover {
color: var(--color-gold) !important;
}
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity {
display: block !important;
font-family: var(--font-primary) !important;
font-size: 0.85rem !important;
color: var(--color-muted) !important;
margin-top: 4px !important;
margin-left: 88px !important; }
.am-cart-drawer-content ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity .amount {
font-weight: 600 !important;
color: var(--color-indigo) !important;
font-size: 0.9rem !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__total {
padding: 24px 30px !important;
border-top: 1px solid rgba(44, 47, 110, 0.05) !important;
background: var(--color-white) !important;
margin: 0 !important;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
font-family: var(--font-primary) !important;
font-size: 1.1rem !important;
color: var(--color-heading) !important;
font-variant-numeric: lining-nums !important;
font-feature-settings: "lnum" 1 !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__total strong {
font-weight: 500 !important;
color: var(--color-muted) !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
font-size: 0.9rem !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__total .amount {
font-weight: 700 !important;
color: var(--color-indigo) !important;
font-size: 1.25rem !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons {
padding: 0 30px 30px 30px !important;
background: var(--color-white) !important;
margin: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 12px !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons a.button {
width: 100% !important;
display: block !important;
text-align: center !important;
padding: 16px 24px !important;
border-radius: var(--radius-full) !important;
font-size: 11px !important;
font-weight: 600 !important;
letter-spacing: 0.15em !important;
text-transform: uppercase !important;
text-decoration: none !important;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
box-sizing: border-box !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons a.button.checkout {
background: var(--color-indigo) !important;
color: var(--color-white) !important;
border: 1px solid var(--color-indigo) !important;
box-shadow: 0 4px 15px rgba(44, 47, 110, 0.12) !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons a.button.checkout:hover {
background: var(--color-gold) !important;
color: var(--color-indigo) !important;
border-color: var(--color-gold) !important;
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2) !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons a.button:not(.checkout) {
background: transparent !important;
color: var(--color-indigo) !important;
border: 1px solid var(--color-indigo) !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__buttons a.button:not(.checkout):hover {
background: rgba(44, 47, 110, 0.03) !important;
transform: translateY(-2px) !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__empty-message {
padding: 80px 40px !important;
text-align: center !important;
color: var(--color-muted) !important;
font-family: var(--font-primary) !important;
font-size: 0.95rem !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
gap: 20px !important;
}
.am-cart-drawer-content .woocommerce-mini-cart__empty-message::before {
content: "✦" !important;
font-size: 2rem !important;
color: var(--color-gold) !important;
display: block !important;
margin-bottom: 10px !important;
animation: amPulse 2s infinite ease-in-out !important;
}
@keyframes amPulse {
0% { transform: scale(1); opacity: 0.7; }
50% { transform: scale(1.15); opacity: 1; }
100% { transform: scale(1); opacity: 0.7; }
}@font-face{font-family:'FontAwesome';src:url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/fonts/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0);src:url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/fonts/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0) format('embedded-opentype'),url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/fonts/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0) format('woff'),url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/fonts/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0) format('truetype'),url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/fonts/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.dhvc-form-container *,
.dhvc-form-container *:before,
.dhvc-form-container *:after{
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.dhvc-form-radio,
.dhvc-form-checkbox {
*zoom: 1;
}
.dhvc-form-checkbox:before,
.dhvc-form-checkbox:after,
.dhvc-form-radio:before,
.dhvc-form-radio:after,
.dhvc-form-rate:after,
.dhvc-form-rate:before{
display: table;
content: "";
}
.dhvc-form-opening{
overflow: hidden;
}
.dhvc-form-radio:after,
.dhvc-form-checkbox:after,
.dhvc-form-rate:after{
clear: both;
}
.dhvc-form-container * {
line-height: 1.42857;
}
.dhvc-form-container .wpb_row{
margin-bottom: 15px;
}
span.dhvc-form-error{
clear: both;
color: #d40707;
display: block;
float: none;
font-size: 12px;
width: 100%;
font-weight: normal;
padding-top:5px;
}
@media (max-width: 768px) {
.dhvc-form-container .wpb_row .wpb_column{
margin-bottom: 15px;
}
}
.dhvc-form-group{
position: relative;
}
.dhvc-form-group .dhvc-form-label,
.dhvc-form-group label{
display: inline-block;
font-weight: bold;
font-size: 14px;
line-height: 1.42857;
margin-bottom:5px;
}
.dhvc-form-group label .required{
color: #d40707 !important;
font-weight: normal;
font-size: 12px;
}
.dhvc-form-group .dhvc-form-control {
background-color: rgb(255, 255, 255);
background-image: none;
border: 1px solid rgb(204, 204, 204);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
display: block;
font-size: 14px;
height: 40px;
line-height: 1.42857;
padding: 6px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
-webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
width: 100%;
border-radius:0;
margin: 0;
}
.dhvc-form-group select[multiple].dhvc-form-control, 
.dhvc-form-group select[size].dhvc-form-control {
height: auto;
}
.dhvc-form-group textarea.dhvc-form-control {
height: auto;
min-height: 150px;
}
.dhvc-form-group input[type="file"] {
display: block;
font-size: 14px;
line-height: 1.42857;
padding: 0;
margin: 0;
}
.dhvc-form-group .dhvc-form-control:focus{
border-color: rgb(102, 175, 233);
outline: 0 none;
border-radius:0;
margin: 0;
}
.dhvc-form-group .dhvc-form-control[disabled],
.dhvc-form-group .dhvc-form-control[readonly] {
background-color: rgb(238, 238, 238);
cursor: not-allowed;
opacity: 1;
}
.dhvc-form-group .dhvc-form-help{
display: block;
font-size: 12px;
margin-top: 5px;
}
.dhvc-form-input,
.dhvc-form-select,
.dhvc-form-file,
.dhvc-form-textarea{
position: relative;	
}
.dhvc-form-group .dhvc-form-checkbox,
.dhvc-form-group .dhvc-form-radio{
display: block;
}
.dhvc-form-group .dhvc-form-checkbox label,
.dhvc-form-group .dhvc-form-radio label{
cursor: pointer;
display: inline-block;
font-weight: 400;
padding-left: 20px;
vertical-align: middle;
margin: 0 10px 0 0;
float: left;
}
.dhvc-form-group .dhvc-form-checkbox input,
.dhvc-form-group .dhvc-form-radio input{
float: left;
margin:4px 0 0 -20px;
line-height: normal;
border: none;
}
.dhvc-form-inner{
margin-bottom: 15px;
}
.dhvc-form-group .dhvc-form-checkbox input[type="checkbox"]{
}
.dhvc-form-group .dhvc-form-radio input[type="radio"]{
}
.dhvc-form-input.dhvc-form-has-add-on  .dhvc-form-control{
padding-right: 42.5px;
}
.dhvc-form-group .dhvc-form-add-on{
display: block;
height: 40px;
line-height: 40px;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 40px;
font-size: 14px;
font-style: normal;
font-weight: 400;
margin: 0;
padding: 0;
}
.dhvc-form-submit,
.dhvc-form-submit:hover,
.dhvc-form-submit:active,
.dhvc-form-submit:focus{
position: relative;
border: 0 none;
color: #fff;
float:right;
cursor: pointer;
height: 39px;
margin: 0;
outline: medium none;
overflow: hidden;
padding: 0 25px;
text-decoration: none;
background: #222;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
font-size: 14px;
font-weight: 700;
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);
opacity: 0.8;
box-shadow:none;
-moz-box-shadow:none;
-webkit-box-shadow:none;
}
.dhvc-form-submit:hover,
.dhvc-form-submit:active,
.dhvc-form-submit:focus{
-moz-opacity: 1;
-khtml-opacity: 1;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.dhvc-form-submit-label {
-moz-opacity: 1;
-khtml-opacity: 1;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.dhvc-form-submit-label-hidden{
-moz-opacity: 0;
-khtml-opacity: 0;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.dhvc-form-submit-spinner {
background: url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/images/default-loading.gif) no-repeat scroll center center rgba(0, 0, 0, 0);
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
display: none;
}
.dhvc-form-action{
}
.dhvc-form-action:before,
.dhvc-form-action:after{
display: table;
content: "";
}
.dhvc-form-action:after{
clear: both;
}
.dhvc-form-file{
}
.dhvc-form-group .dhvc-form-file label{
display: block;
margin: 0;
padding: 0;
position: relative;
}
.dhvc-form-group .dhvc-form-file label label{
background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
cursor: pointer;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.dhvc-form-group .dhvc-form-file .dhvc-form-control{
cursor: text;
background: none;
}
.dhvc-form-file-button{
background-color: #222;
bottom: 0;
color: #fff;
float: none;
font-size: 90%;
font-weight: 300;
overflow: hidden;
margin: 4px;
padding: 0 20px;
position: absolute;
right: 0;
top: 0;
z-index: 10;
cursor: pointer;
}
.dhvc-form-file-button i{
display: inline-block;
height: 40px;
line-height: 40px;
margin-top: -4px;
vertical-align: middle;
}
.dhvc-form-group .dhvc-form-file input[type=file]{
cursor: pointer;
opacity: 0;
padding: 0;
position: absolute;
left: 0;
bottom: 0;
appearance:none;
-moz-appearance:none; -webkit-appearance:none; background: none repeat scroll 0 0 #fff;
outline: medium none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
z-index: -1;
width: 100%;
height: 40px;
}
.dhvc-form-hidden{
display: none !important;
}
.dhvc-form-show{
display: block !important;
}
@media (min-width: 767px) {
.dhvc-form-horizontal .dhvc-form-label{
width: 33.33%;
float: left;
padding-top: 7px;
padding-right: 20px;
}
.dhvc-form-horizontal span.dhvc-form-error{
padding-left: 33.33%;
}
.dhvc-form-horizontal .dhvc-form-input,
.dhvc-form-horizontal .dhvc-form-textarea,
.dhvc-form-horizontal .dhvc-form-select,
.dhvc-form-horizontal .dhvc-form-file,
.dhvc-form-horizontal .dhvc-form-radio,
.dhvc-form-horizontal .dhvc-form-checkbox,
.dhvc-form-horizontal .dhvc-form-slider,
.dhvc-form-horizontal .dhvc-form-rate,
.dhvc-form-horizontal .dhvc-form-captcha{
float: left;
width: 66.67%;
}
}
.dhvc-form-flat {
}
.dhvc-form-flat .dhvc-form-input input,
.dhvc-form-flat .dhvc-form-file input[type=text],
.dhvc-form-flat .dhvc-form-captcha input, 
.dhvc-form-flat .dhvc-form-select select, 
.dhvc-form-flat .dhvc-form-textarea textarea {
appearance:none;
-moz-appearance:none; -webkit-appearance:none; background: none repeat scroll 0 0 #fff;
border-radius: 0;
border-style: solid;
border-width: 2px;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
color: #404040;
display: block;
height: 40px;
outline:none;
width: 100%;
}
.dhvc-form-flat .dhvc-form-select i {
font-size: 1.2em;
height: 40px;
line-height: 40px;
position: absolute;
right: 10px;
top: 0;
}
.dhvc-form-flat .dhvc-form-radio input[disabled] + i, 
.dhvc-form-flat .dhvc-form-checkbox input[disabled] + i,
.dhvc-form-flat .dhvc-form-select select[disabled] + i{
background: none repeat scroll 0 0 rgb(238, 238, 238);
cursor: not-allowed;
}
.dhvc-form-flat .dhvc-form-select select[multiple] {
height: auto;
}
.dhvc-form-flat .dhvc-form-select select[multiple] + i {
display: none;
}
.dhvc-form-flat .dhvc-form-radio label, 
.dhvc-form-flat .dhvc-form-checkbox label {
color: #404040;
cursor: pointer;
display: block;
font-size: 15px;
line-height: 27px;
margin-bottom: 4px;
padding-left: 22px;
position: relative;
}
.dhvc-form-flat .dhvc-form-radio input, 
.dhvc-form-flat .dhvc-form-checkbox input {
left: -9999px;
position: absolute;
}
.dhvc-form-flat .dhvc-form-radio i, 
.dhvc-form-flat .dhvc-form-checkbox i {
background: none repeat scroll 0 0 #fff;
border-style: solid;
border-width: 2px;
display: block;
height: 17px;
left: 0;
outline: medium none;
position: absolute;
top: 5px;
width: 17px;
}
.dhvc-form-flat .dhvc-form-radio i {
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
}
.dhvc-form-flat .dhvc-form-radio input + i:after, 
.dhvc-form-flat .dhvc-form-checkbox input + i:after {
opacity: 0;
position: absolute;
transition: opacity 0.1s ease 0s;
-moz-transition: opacity 0.1s ease 0s;
-webkit-transition: opacity 0.1s ease 0s;
}
.dhvc-form-flat .dhvc-form-radio input + i:after {
border-radius: 50%;
content: "";
height: 5px;
left: 4px;
top: 4px;
width: 5px;
}
.dhvc-form-flat .dhvc-form-checkbox input + i:after {
content: "\f00c";
font: 12px/16px FontAwesome;
height: 15px;
left: -1px;
text-align: center;
top: -2px;
width: 15px;
}
.dhvc-form-flat .dhvc-form-radio input:checked + i:after, 
.dhvc-form-flat .dhvc-form-checkbox input:checked + i:after {
opacity: 1;
}
.dhvc-form-flat .dhvc-form-radio, 
.dhvc-form-flat .dhvc-form-checkbox {
}
.dhvc-form-flat .dhvc-form-radio:after, 
.dhvc-form-flat .dhvc-form-checkbox:after {
clear: both;
content: "";
display: table;
}
.dhvc-form-flat .dhvc-form-radio label,
.dhvc-form-flat .dhvc-form-checkbox label {
cursor: pointer;
float: left;
font-size: 15px;
line-height: 27px;
margin-right: 30px;
}
.dhvc-form-flat .dhvc-form-input input, 
.dhvc-form-flat .dhvc-form-file input[type=text],
.dhvc-form-flat .dhvc-form-captcha input,
.dhvc-form-flat .dhvc-form-select select, 
.dhvc-form-flat .dhvc-form-textarea textarea, 
.dhvc-form-flat .dhvc-form-radio i, 
.dhvc-form-flat .dhvc-form-checkbox i {
border-color: #e5e5e5;
transition: border-color 0.3s ease 0s;
-moz-transition: border-color 0.3s ease 0s;
-webkit-transition: border-color 0.3s ease 0s;
}
.dhvc-form-flat .dhvc-form-input:hover input, 
.dhvc-form-flat .dhvc-form-captcha:hover input,
.dhvc-form-flat .dhvc-form-file:hover input[type=text],
.dhvc-form-flat .dhvc-form-select:hover select, 
.dhvc-form-flat .dhvc-form-textarea:hover textarea,
.dhvc-form-flat .dhvc-form-radio label:hover i,
.dhvc-form-flat .dhvc-form-checkbox label:hover i {
border-color: #909090;
}
.dhvc-form-flat .dhvc-form-radio input + i:after{
background-color:#222;
}
.dhvc-form-flat .dhvc-form-checkbox input + i:after{
color:#222;
}
.dhvc-form-flat .dhvc-form-input input:focus, 
.dhvc-form-flat .dhvc-form-captcha input:focus,
.dhvc-form-flat .dhvc-form-file:hover input[type=text]:focus,
.dhvc-form-flat .dhvc-form-select select:focus, 
.dhvc-form-flat .dhvc-form-textarea textarea:focus,
.dhvc-form-flat .dhvc-form-radio input:checked + i, 
.dhvc-form-flat .dhvc-form-checkbox input:checked + i {
border-color: #222;
}
.dhvc-form-flat .ui-slider {
background: none repeat scroll 0 0 #fff;
border: 3px solid #e5e5e5;
height: 3px;
margin: 10px 0 20px;
position: relative;
}
.dhvc-form-flat .ui-slider-handle {
background: none repeat scroll 0 0 #fff;
border: 2px solid #e5e5e5;
height: 18px;
margin: -8px 0 0 -8px;
outline: medium none;
position: absolute;
-moz-transition: border-color 0.3s ease 0s;
-webkit-transition: border-color 0.3s ease 0s;
transition: border-color 0.3s ease 0s;
width: 18px;
z-index: 20;
}
.dhvc-form-flat .ui-slider-range{
display: block;
font-size: 0.7em;
position: absolute;
z-index: 10;
top: -3px;
left: -3px;
border: 3px solid #909090;
}
.dhvc-form-flat .dhvc-form-rate{
float: right;
}
.dhvc-form-flat .dhvc-form-rate input{
left: -9999px;
position: absolute;
}
.dhvc-form-flat .dhvc-form-rate-star {
cursor: pointer;
display: block;
float: right;
font-size: 20px;
height: 17px;
line-height: 17px;
margin-top: 3px;
padding: 0 2px;
-moz-transition: color 0.3s ease 0s;
-webkit-transition: color 0.3s ease 0s;
transition: color 0.3s ease 0s;
color: #e5e5e5;
}
.dhvc-form-flat .dhvc-form-rate-star i{
line-height: 1;
}
.dhvc-form-flat .dhvc-form-rate input + .dhvc-form-rate-star:hover,
.dhvc-form-flat .dhvc-form-rate input + .dhvc-form-rate-star:hover ~ .dhvc-form-rate-star {
color: #fd7337;
}
.dhvc-form-flat .dhvc-form-rate input:checked ~ .dhvc-form-rate-star {
color: #fd7337;
}
.dhvc-form-captcha{
position: relative;
}
.dhvc-form-captcha .dhvc-form-captcha-img{
right: 4px;
position: absolute;
top:4px;
bottom:4px;
background:url(//www.isiksarsinsizi.com/wp-content/plugins/dhvc-form/assets/images/captcha-bg.png) repeat scroll 0 0 rgba(0, 0, 0, 0);
width: 100px;
}
.dhvc-form-captcha .dhvc-form-captcha-img:before{
border: 1px solid #e5e5e5;
bottom: 0;
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index:1;
}
.dhvc-form-flat .dhvc-form-input input:hover ~ .dhvc-form-captcha-img,
.dhvc-form-flat .dhvc-form-input input:focus ~ .dhvc-form-captcha-img{
border-color:#222;
}
.dhvc-form-captcha .dhvc-form-captcha-img img{
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
margin-top: -15px;
position: absolute;
top: 50%;
}
.dhvc-form-input  .minicolors-theme-bootstrap .minicolors-swatch{
bottom: 4px;
display: block;
height: auto;
left: 4px;
position: absolute;
right: 0;
top: 4px;
}
.dhvc-form-input .minicolors-theme-bootstrap .minicolors-swatch:before{
border: 1px solid #e5e5e5;
bottom: 0;
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
z-index:1;
}
.dhvc-form-message{
padding:0px 0 15px;
}
.dhvc-form-pop-overlay{
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
height: 100%;
left: 0;
position: fixed;
top: 0;
transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
width: 100%;
z-index: 1000;
display: none;
}
.dhvc-form-popup{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 2000;
overflow-x: hidden;
overflow-y: auto;
}
.dhvc-form-popup-container{
background: none repeat scroll 0 0 #fff;
margin: 40px auto 30px;
position: relative;
width: 600px;
overflow: hidden;
}
@media (max-width: 767px) {
.dhvc-form-popup-container{
background: none repeat scroll 0 0 #fff;
margin: 10px;
position: relative;
width: auto !important;
}
}
.dhvc-form-popup-header{
position: relative;
padding: 0 0 20px 0;
margin: 0;
}
.dhvc-form-popup-header h3{
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
font-size: 20px;
font-weight: normal;
padding: 20px;
}
.dhvc-form-popup-close{
color: #000;
font-size: 21px;
font-weight: 700;
line-height: 1;
-moz-opacity: 0.2;
-khtml-opacity: 0.2;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=20)";
filter: alpha(opacity=20);
opacity: 0.2;
border: 0 none;
cursor: pointer;
padding: 0;
position: absolute;
top: 6px;
right: 10px;
}
.dhvc-form-popup-close:hover{
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: 0.5;
}
.dhvc-form-popup-body{
margin: 0;
padding:0 20px 20px;
}
.dhvc-form-icon-pos-left .dhvc-form-add-on{
right:auto;
left:0;
}
.dhvc-form-icon-pos-left .dhvc-form-input.dhvc-form-has-add-on .dhvc-form-control{
padding-right: 6px;
padding-left:35px;
} .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}