/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons > div {
    cursor: pointer;
    position: relative;
}

.nav-icons i {
    font-size: 1.3rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-icons i:hover {
    color: var(--secondary-color);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 1rem 0;
    animation: slideDown 0.3s ease;
}

.search-bar.active {
    display: block;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--accent-color);
}

.search-bar button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===================================
   Categories Section
   =================================== */
.categories {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image i {
    font-size: 3rem;
    color: var(--accent-color);
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===================================
   Products Section
   =================================== */
.featured-products,
.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 4rem;
    color: var(--border-color);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--secondary-color);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #f39c12;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
}

.discount {
    color: var(--success-color);
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 4rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    outline: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ===================================
   Products Page - Filters
   =================================== */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.filters-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-header h3 {
    color: var(--primary-color);
}

.clear-filters {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    cursor: pointer;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.color-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option input[type="checkbox"] {
    display: none;
}

.color-option input[type="checkbox"]:checked + .color-option::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.mobile-filter-toggle {
    display: none;
}

/* Products Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===================================
   Cart Page
   =================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image i {
    font-size: 3rem;
    color: var(--border-color);
}

.cart-item-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--bg-light);
}

.quantity-value {
    padding: 0.3rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.remove-btn:hover {
    transform: scale(1.2);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.empty-cart i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.empty-cart h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.total-row {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.coupon-section {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.coupon-section input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
}

.coupon-message {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
}

.coupon-message.success {
    background: #d4edda;
    color: #155724;
}

.coupon-message.error {
    background: #f8d7da;
    color: #721c24;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--accent-color);
}

.shipping-progress {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--success-color);
    transition: var(--transition);
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.recommended-section {
    margin-top: 3rem;
}

.recommended-section h2 {
    margin-bottom: 2rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-links-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h4 i {
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-section {
    padding: 4rem 0;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* ===
/ *   M o d a l   &   A n i m a t i o n s   -   A d d i t i o n a l   S t y l e s   * /  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       M o d a l  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . m o d a l   {  
         d i s p l a y :   n o n e ;  
         p o s i t i o n :   f i x e d ;  
         z - i n d e x :   2 0 0 0 ;  
         l e f t :   0 ;  
         t o p :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 7 ) ;  
         a n i m a t i o n :   f a d e I n   0 . 3 s   e a s e ;  
 }  
  
 . m o d a l . a c t i v e   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . m o d a l - c o n t e n t   {  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   2 r e m ;  
         b o r d e r - r a d i u s :   1 5 p x ;  
         m a x - w i d t h :   8 0 0 p x ;  
         w i d t h :   9 0 % ;  
         m a x - h e i g h t :   9 0 v h ;  
         o v e r f l o w - y :   a u t o ;  
         p o s i t i o n :   r e l a t i v e ;  
         a n i m a t i o n :   s l i d e U p   0 . 3 s   e a s e ;  
 }  
  
 . c l o s e - m o d a l   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 r e m ;  
         r i g h t :   1 r e m ;  
         f o n t - s i z e :   2 r e m ;  
         c u r s o r :   p o i n t e r ;  
         c o l o r :   # 6 6 6 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . c l o s e - m o d a l : h o v e r   {  
         c o l o r :   # e 7 4 c 3 c ;  
 }  
  
 . m o d a l - b o d y   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   2 r e m ;  
 }  
  
 . m o d a l - i m a g e   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   4 0 0 p x ;  
         b a c k g r o u n d :   # f 8 f 9 f a ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
 }  
  
 . m o d a l - i m a g e   i   {  
         f o n t - s i z e :   5 r e m ;  
         c o l o r :   # d d d ;  
 }  
  
 . m o d a l - d e t a i l s   h 2   {  
         c o l o r :   # 2 c 3 e 5 0 ;  
         m a r g i n - b o t t o m :   1 r e m ;  
 }  
  
 . m o d a l - d e t a i l s   . p r o d u c t - d e s c r i p t i o n   {  
         c o l o r :   # 6 6 6 ;  
         l i n e - h e i g h t :   1 . 8 ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . s i z e - s e l e c t o r ,  
 . c o l o r - s e l e c t o r   {  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . s i z e - s e l e c t o r   h 4 ,  
 . c o l o r - s e l e c t o r   h 4   {  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
         c o l o r :   # 2 c 3 e 5 0 ;  
 }  
  
 . s i z e - o p t i o n s - m o d a l   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 5 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . s i z e - b t n   {  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b o r d e r :   2 p x   s o l i d   # d d d ;  
         b a c k g r o u n d :   w h i t e ;  
         b o r d e r - r a d i u s :   5 p x ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . s i z e - b t n : h o v e r ,  
 . s i z e - b t n . a c t i v e   {  
         b o r d e r - c o l o r :   # 3 4 9 8 d b ;  
         b a c k g r o u n d :   # 3 4 9 8 d b ;  
         c o l o r :   w h i t e ;  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       A n i m a t i o n s  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 @ k e y f r a m e s   f a d e I n   {  
         f r o m   {   o p a c i t y :   0 ;   }  
         t o   {   o p a c i t y :   1 ;   }  
 }  
  
 @ k e y f r a m e s   f a d e I n U p   {  
         f r o m   {  
                 o p a c i t y :   0 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;  
         }  
         t o   {  
                 o p a c i t y :   1 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         }  
 }  
  
 @ k e y f r a m e s   s l i d e U p   {  
         f r o m   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 5 0 p x ) ;  
                 o p a c i t y :   0 ;  
         }  
         t o   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
                 o p a c i t y :   1 ;  
         }  
 }  
  
 @ k e y f r a m e s   s l i d e D o w n   {  
         f r o m   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( - 2 0 p x ) ;  
                 o p a c i t y :   0 ;  
         }  
         t o   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
                 o p a c i t y :   1 ;  
         }  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       U t i l i t y   C l a s s e s  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . t e x t - c e n t e r   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . m t - 1   {   m a r g i n - t o p :   1 r e m ;   }  
 . m t - 2   {   m a r g i n - t o p :   2 r e m ;   }  
 . m t - 3   {   m a r g i n - t o p :   3 r e m ;   }  
 . m b - 1   {   m a r g i n - b o t t o m :   1 r e m ;   }  
 . m b - 2   {   m a r g i n - b o t t o m :   2 r e m ;   }  
 . m b - 3   {   m a r g i n - b o t t o m :   3 r e m ;   }  
  
 . d i s c o u n t - a m o u n t   {  
         c o l o r :   # 2 7 a e 6 0 ;  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       R e s p o n s i v e   D e s i g n  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   {  
         . p r o d u c t s - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   2 5 0 p x   1 f r ;  
         }  
          
         . c a r t - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r   3 5 0 p x ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         / *   N a v i g a t i o n   * /  
         . n a v - m e n u   {  
                 p o s i t i o n :   f i x e d ;  
                 l e f t :   - 1 0 0 % ;  
                 t o p :   7 0 p x ;  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 b a c k g r o u n d :   w h i t e ;  
                 w i d t h :   1 0 0 % ;  
                 t e x t - a l i g n :   c e n t e r ;  
                 t r a n s i t i o n :   0 . 3 s ;  
                 b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;  
                 p a d d i n g :   2 r e m   0 ;  
         }  
          
         . n a v - m e n u . a c t i v e   {  
                 l e f t :   0 ;  
         }  
          
         . n a v - l i n k s   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   1 r e m ;  
         }  
          
         . m o b i l e - m e n u - t o g g l e   {  
                 d i s p l a y :   b l o c k ;  
         }  
          
         / *   H e r o   * /  
         . h e r o   {  
                 p a d d i n g :   4 r e m   2 r e m ;  
         }  
          
         . h e r o - t i t l e   {  
                 f o n t - s i z e :   2 r e m ;  
         }  
          
         . h e r o - s u b t i t l e   {  
                 f o n t - s i z e :   1 r e m ;  
         }  
          
         / *   P r o d u c t s   * /  
         . p r o d u c t s - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . f i l t e r s - s i d e b a r   {  
                 p o s i t i o n :   f i x e d ;  
                 l e f t :   - 1 0 0 % ;  
                 t o p :   0 ;  
                 w i d t h :   8 0 % ;  
                 m a x - w i d t h :   3 0 0 p x ;  
                 h e i g h t :   1 0 0 v h ;  
                 z - i n d e x :   1 5 0 0 ;  
                 t r a n s i t i o n :   0 . 3 s ;  
                 o v e r f l o w - y :   a u t o ;  
         }  
          
         . f i l t e r s - s i d e b a r . a c t i v e   {  
                 l e f t :   0 ;  
         }  
          
         . m o b i l e - f i l t e r - t o g g l e   {  
                 d i s p l a y :   b l o c k ;  
                 p o s i t i o n :   f i x e d ;  
                 b o t t o m :   2 0 p x ;  
                 r i g h t :   2 0 p x ;  
                 w i d t h :   6 0 p x ;  
                 h e i g h t :   6 0 p x ;  
                 b o r d e r - r a d i u s :   5 0 % ;  
                 b a c k g r o u n d :   # e 7 4 c 3 c ;  
                 c o l o r :   w h i t e ;  
                 b o r d e r :   n o n e ;  
                 b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ;  
                 c u r s o r :   p o i n t e r ;  
                 z - i n d e x :   1 0 0 0 ;  
         }  
          
         . p r o d u c t s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ;  
                 g a p :   1 r e m ;  
         }  
          
         / *   C a r t   * /  
         . c a r t - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . c a r t - s u m m a r y   {  
                 p o s i t i o n :   s t a t i c ;  
         }  
          
         . c a r t - i t e m   {  
                 g r i d - t e m p l a t e - c o l u m n s :   8 0 p x   1 f r ;  
                 g a p :   1 r e m ;  
         }  
          
         . c a r t - i t e m - i m a g e   {  
                 w i d t h :   8 0 p x ;  
                 h e i g h t :   8 0 p x ;  
         }  
          
         . c a r t - i t e m - a c t i o n s   {  
                 g r i d - c o l u m n :   1   /   - 1 ;  
                 f l e x - d i r e c t i o n :   r o w ;  
                 j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         }  
          
         / *   C o n t a c t   * /  
         . c o n t a c t - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . f o r m - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         / *   M o d a l   * /  
         . m o d a l - b o d y   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . m o d a l - i m a g e   {  
                 h e i g h t :   2 5 0 p x ;  
         }  
          
         / *   F o o t e r   * /  
         . f o o t e r - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 r e m ;  
         }  
          
         / *   N e w s l e t t e r   * /  
         . n e w s l e t t e r - f o r m   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
         . h e r o - t i t l e   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
          
         . s e c t i o n - t i t l e   {  
                 f o n t - s i z e :   1 . 8 r e m ;  
         }  
          
         . p r o d u c t s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . c a t e g o r y - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         }  
          
         . f e a t u r e s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . p r o d u c t s - t o o l b a r   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   1 r e m ;  
         }  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       P r i n t   S t y l e s  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 @ m e d i a   p r i n t   {  
         . n a v b a r ,  
         . f o o t e r ,  
         . n e w s l e t t e r ,  
         . f i l t e r s - s i d e b a r ,  
         . m o b i l e - f i l t e r - t o g g l e   {  
                 d i s p l a y :   n o n e ;  
         }  
 }  
 / *  
 A u t h e n t i c a t i o n  
 P a g e s  
 * /  
 