
:root {
  --primary-color: #2A2D34;
  --secondary-color: #BF9B30;
  --accent-color: #E85A4F;
  --background-light: #F4F4F4;
  --background-dark: #1A1A1A;
  --text-primary: #333333;
  --text-secondary: #777777;
  --success-color: #4CAF50;
  --warning-color: #FF9800;
  --error-color: #F44336;
  --border-color: #DDDDDD;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  margin-top: 0;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

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

ul {
  padding-left: 1.5rem;
}


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

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}


.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.button.primary:hover {
  background-color: #A88A29;
  color: white;
}

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

.button.secondary:hover {
  background-color: #22252A;
  color: white;
}

.button.alert {
  background-color: var(--error-color);
  color: white;
}

.button.alert:hover {
  background-color: #D32F2F;
  color: white;
}

.button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button.small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(191, 155, 48, 0.25);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-container label {
  margin-bottom: 0;
  line-height: 1.4;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.cookie-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  overflow-y: auto;
  padding: 1.5rem;
}

.cookie-settings-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--text-primary);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category label {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.5rem;
}

.cookie-category p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.site-header {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.logo {
  height: 40px;
  width: auto;
}

.main-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.main-nav .menu li {
  margin-left: 1.5rem;
}

.main-nav .menu a {
  color: var(--text-primary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav .menu a:hover,
.main-nav .menu a.active {
  color: var(--secondary-color);
}

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

.main-nav .menu a:hover::after,
.main-nav .menu a.active::after {
  width: 100%;
}

.menu-icon {
  display: inline-block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-icon::before {
  top: 0;
}

.menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon.active::before {
  transform: translateY(10px) rotate(45deg);
}

.menu-icon.active span {
  opacity: 0;
}

.menu-icon.active::after {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu .menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu .menu li:last-child {
  border-bottom: none;
}

.mobile-menu .menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.mobile-menu .menu a:hover,
.mobile-menu .menu a.active {
  background-color: var(--background-light);
  color: var(--secondary-color);
}

.cart-link {
  position: relative;
}

#cart-count,
#mobile-cart-count {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  position: relative;
  top: -1px;
}


.hero {
  padding: 4rem 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.feature-card {
  margin-bottom: 2rem;
}

.feature-card .card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .card-section {
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.product-specs {
  margin-bottom: 1.5rem;
}

.product-specs ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.product-specs li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.view-all-container {
  margin-top: 2rem;
}


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

.craftsmanship h2 {
  color: white;
}

.craftsmanship p {
  color: rgba(255, 255, 255, 0.8);
}

.craftsmanship-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.security-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.security-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.security-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}


.news-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.news-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.news-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 500;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: var(--accent-color);
}

.read-more::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}


.contact-form-section {
  background-color: var(--background-light);
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}


.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.875rem;
}


.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 0;
}


.security-overview {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.security-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-layer-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-layer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.layer-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.security-layer-card h3 {
  margin-bottom: 1.5rem;
}

.security-layer-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.security-layer-card li {
  margin-bottom: 0.5rem;
}

.security-layer-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.secure-element-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
  margin-bottom: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
}

.air-gap-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.air-gap-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.benefit-list {
  margin-bottom: 1.5rem;
}

.benefit-list li {
  margin-bottom: 0.5rem;
}

.code-block {
  background-color: var(--background-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.code-block pre {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
}

.code-block code {
  color: white;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.certification-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.certification-card h3 {
  margin-bottom: 1rem;
}

.certification-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.certification-note {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.certification-note p {
  margin-bottom: 0;
}

.expert-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.expert-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.expert-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: var(--secondary-color);
  line-height: 1;
}

.expert-info h4 {
  margin-bottom: 0.25rem;
}

.expert-info p {
  font-style: normal;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.expert-info p::before {
  display: none;
}

.cta-section {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}


.devices-intro-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tier-header {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.tier-header h3 {
  margin-bottom: 0.5rem;
}

.tier-header p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--background-light);
}

.technical-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technical-list {
  margin-bottom: 2rem;
}

.technical-list li {
  margin-bottom: 0.5rem;
}

.accordion {
  margin-bottom: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background-color: white;
  border: none;
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-color);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.accordion-button::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.accordion-button.active {
  background-color: var(--background-light);
}

.accordion-button.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  padding: 0 1.25rem 1.25rem;
  max-height: 500px;
}


.firmware-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.update-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  overflow: hidden;
}

.update-meta {
  padding: 1.5rem;
  background-color: var(--background-light);
  height: 100%;
}

.version {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.compatibility {
  margin-bottom: 1.5rem;
}

.compatibility p {
  margin-bottom: 0.5rem;
}

.compatibility ul {
  margin: 0;
  padding-left: 1.25rem;
}

.compatibility li {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.update-details {
  padding: 1.5rem;
}

.update-details h3 {
  margin-bottom: 1.5rem;
}

.changelog h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.changelog ul {
  margin-bottom: 1.5rem;
}

.changelog li {
  margin-bottom: 0.5rem;
}

.update-instructions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.toggle-instructions {
  display: inline-block;
  margin-bottom: 1rem;
}

.instructions-content {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.instructions-content h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.instructions-content ol {
  margin-bottom: 0;
}

.instructions-content li {
  margin-bottom: 0.5rem;
}

.process-steps {
  margin-bottom: 2rem;
}

.process-step {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  padding-top: 3.5rem;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step h3 {
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.blog-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


.contact-info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-card h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.contact-hours {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

.support-hours h3 {
  margin-bottom: 1rem;
}

.support-hours ul {
  margin-bottom: 1rem;
}

.support-hours li {
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

.map-container {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.cart-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.cart-container h2 {
  margin-bottom: 1.5rem;
}

.empty-cart-message {
  text-align: center;
  padding: 3rem 0;
}

.empty-cart-message i {
  font-size: 3rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.empty-cart-message p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cart-table th {
  font-weight: 500;
  color: var(--text-secondary);
}

.cart-item-info {
  display: flex;
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 1rem;
}

.cart-item-details h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cart-item-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: var(--border-color);
}

.quantity-input {
  width: 40px;
  height: 30px;
  text-align: center;
  margin: 0 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.remove-item {
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.remove-item:hover {
  color: var(--error-color);
}

.order-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.order-form-container h2 {
  margin-bottom: 1rem;
}

.order-form-container p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.order-summary {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 2rem;
}

.order-summary h2 {
  margin-bottom: 1.5rem;
}

.summary-content {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.payment-note {
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.payment-note i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.payment-note p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.continue-shopping {
  margin-top: 1.5rem;
  text-align: center;
}

.continue-shopping a {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.continue-shopping a:hover {
  color: var(--secondary-color);
}

.continue-shopping i {
  margin-right: 0.5rem;
}

.secure-checkout {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.secure-checkout-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.secure-checkout-header i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

.secure-checkout-header h3 {
  margin-bottom: 0;
}

.secure-checkout p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.security-feature {
  display: flex;
  align-items: center;
  background-color: var(--background-light);
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.security-feature i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.policy-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.policy-card h3 {
  margin-bottom: 1rem;
}

.policy-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.thank-you-section {
  padding: 4rem 0;
}

.thank-you-container {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: var(--success-color);
}

.thank-you-container h1 {
  margin-bottom: 1rem;
}

.thank-you-container .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.order-confirmation {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.order-confirmation p {
  margin-bottom: 0;
}

.next-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.next-steps h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps ol {
  margin-bottom: 0;
}

.next-steps li {
  margin-bottom: 0.75rem;
}

.security-reminder {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: left;
}

.security-reminder h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.security-reminder ul {
  margin-bottom: 0;
}

.security-reminder li {
  margin-bottom: 0.5rem;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.support-section {
  background-color: var(--background-light);
  padding: 4rem 0;
}

.support-option {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.support-option h3 {
  margin-bottom: 0.5rem;
}

.support-option p {
  color: var(--text-secondary);
  margin-bottom: 0;
}


.policy-navigation {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-navigation h3 {
  margin-bottom: 1.5rem;
}

.policy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-nav-list li {
  margin-bottom: 0.75rem;
}

.policy-nav-list a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.policy-nav-list a:hover {
  color: var(--secondary-color);
}

.policy-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-content section {
  padding: 0;
  margin-bottom: 3rem;
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background-color: var(--background-light);
  font-weight: 500;
}


.compliance-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 2rem;
}

.compliance-card h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.compliance-card ul {
  margin-bottom: 1.5rem;
}

.compliance-card li {
  margin-bottom: 0.5rem;
}

.standard-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.standard-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.standard-card h3 {
  margin-bottom: 1rem;
}

.standard-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.standards-note {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.standards-note p {
  margin-bottom: 0;
}

.supply-chain-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.updates-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.updates-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.updates-content p {
  margin-bottom: 1rem;
}

.updates-content ul {
  margin-bottom: 1.5rem;
}

.updates-content li {
  margin-bottom: 0.5rem;
}

.compliance-contact {
  background-color: var(--background-light);
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info .button {
  margin-top: 1rem;
}


.iti {
  width: 100%;
}


@media screen and (max-width: 1023px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .action-buttons .button {
    width: 100%;
  }
}

@media screen and (max-width: 639px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.35rem;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .cart-table th:nth-child(1),
  .cart-table td:nth-child(1) {
    display: none;
  }
  
  .cart-item-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cart-item-image {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}