/*
Theme Name:           Flatsome
Theme URI:            http://flatsome.uxthemes.com
Author:               UX-Themes
Author URI:           https://uxthemes.com
Description:          Multi-Purpose Responsive WooCommerce Theme
Version:              3.20.5
Requires at least:    6.4
Requires PHP:         7.4
WC requires at least: 8.3
Text Domain:          flatsome
License:              https://themeforest.net/licenses
License URI:          https://themeforest.net/licenses
*/


/***************
All custom CSS should be added to Flatsome > Advanced > Custom CSS,
or in the style.css of a Child Theme.
***************/


/* TTRAISite Custom */
```css
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@400;500;600;700&display=swap');

:root {
  --primary: #0544ff;
  --primary-dark: #001ed9;
  --primary-light: #3877ff;
  --text: #1a1a1a;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-alt: #f8f8f8;
  --bg-dark: #1a1a1a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(5, 68, 255, 0.08);
  --shadow-lg: 0 12px 40px rgba(5, 68, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--text);
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: var(--text-light);
  margin-bottom: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo {
  height: 50px;
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.button, .ux-btn, input[type=submit], button {
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(5, 68, 255, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 68, 255, 0.4);
}

.button.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button.outline:hover {
  background: var(--primary);
  color: white;
}

.ux-btn {
  background: var(--primary);
  color: white;
}

.ux-btn:hover {
  background: var(--primary-dark);
}

input[type=submit] {
  background: var(--primary);
  color: white;
}

input[type=submit]:hover {
  background: var(--primary-dark);
}

section {
  padding: 80px 60px;
}

.section-light {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--bg-dark);
  color: white;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: white;
}

.section-dark p {
  color: #cccccc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.box, .ux-icon-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.box:hover, .ux-icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ux-icon-box {
  text-align: center;
}

.ux-icon-box svg, .ux-icon-box i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.product {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.add-to-cart {
  width: 100%;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.add-to-cart:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #cccccc;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #999999;
}

.fade-in {
  animation: fadeInUp 0.6s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-slow {
  animation: fadeIn 1s ease;
}

input[type=text],
input[type=email],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 68, 255, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.text-center {
  text-align: center;
}

.text-light {
  color: var(--text-light);
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-80 {
  margin-top: 80px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  nav {
    padding: 16px 30px;
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 14px;
  }

  section {
    padding: 50px 30px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .button, .ux-btn, input[type=submit] {
    padding: 12px 24px;
    font-size: 14px;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .container {
    padding: 0 16px;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .logo {
    font-size: 22px;
    height: 40px;
  }

  section {
    padding: 40px 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .button, .ux-btn, input[type=submit] {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 14px;
  }
}

