/*
Theme Name: GlowSkin Premium
Theme URI: https://example.com/glowskin
Author: Harsh Singh
Author URI: https://example.com
Description: A premium, fast, highly customizable WordPress theme optimized for WooCommerce, designed with a modern dewy blue-and-white aesthetic for skincare brands.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glowskin
Tags: e-commerce, two-columns, responsive-layout, custom-logo, custom-menu, translation-ready, accessibility-ready
*/

:root {
  /* Colors */
  --primary-color: #1B3917;
  --primary-rgb: 27, 57, 23;
  --accent-color: #8FA47F;
  --accent-rgb: 143, 164, 127;
  --text-color: #0A1D37;
  --text-rgb: 10, 29, 55;
  --text-muted: #6C7A89;
  --bg-color: #FFFFFF;
  --bg-light: #F5F7F4;
  --border-color: #E2E8F0;
  --shadow-color: rgba(117, 138, 103, 0.08);
  --error-color: #FF6B6B;
  --success-color: #2ECC71;
  --star-color: #FFB800;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.screen-reader-text:focus {
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  top: 5px;
  width: auto;
  z-index: 100000;
}
