<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
** Vaulten Store CSS Styles
** A modern, dark-themed e-commerce design
*/

/* CSS Reset &amp; Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #d7dbdc;
    background-color: #16181c;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #06c2f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #45d8ff;
}

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* Utility Classes */
.gradient {
    background: linear-gradient(to bottom, #16181c, #1a1d23);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.button-primary,
.button-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.button-primary {
    background-color: #06c2f6;
    color: #16181c;
}

.button-primary:hover {
    background-color: #45d8ff;
    color: #16181c;
}

.button-secondary {
    background-color: transparent;
    color: #d7dbdc;
    border: 1px solid #d7dbdc;
}

.button-secondary:hover {
    background-color: rgba(215, 219, 220, 0.1);
}

/* Announcement Bar */
#announcement-bar {
    background-color: #06c2f6;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#announcement-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

#announcement-button {
    background-color: white;
    color: black;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

#announcement-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Header &amp; Navigation */
.header-wrapper {
    background-color: #16181c;
    border-bottom: 1px solid rgba(215, 219, 220, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 58px; /* Account for the announcement bar */
    z-index: 900;
}

.header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-link {
    display: flex;
    align-items: center;
}

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

.header-menu {
    display: none;
}

.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.menu-item {
    color: #d7dbdc;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item:hover, .menu-item.active {
    color: #06c2f6;
}

.header-drawer {
    display: block;
}

.header-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header-menu-icon img {
    width: 24px;
    height: 24px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media queries for responsive design */
@media (min-width: 768px) {
    .header-menu {
        display: block;
    }

    .header-drawer {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    padding: 3rem 1.5rem;
    position: relative;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.hero-info {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d7dbdc;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

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

/* Categories Section */
.categories-section {
    padding: 4rem 1.5rem;
    background-color: #16181c;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.category-card {
    background-color: #1a1d23;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    border: 1px solid rgba(215, 219, 220, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(6, 194, 246, 0.3);
}

.category-content {
    flex: 1;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.category-description {
    color: #d7dbdc;
    font-size: 1rem;
    margin-bottom: 0;
}

.category-icon {
    margin-left: 1rem;
}

.category-icon img {
    width: 100px;
    height: auto;
}

/* Featured Products Section */
.featured-section, .bundles-section {
    padding: 4rem 1.5rem;
}

.section-header {
    max-width: 1280px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0a7ab;
    margin-bottom: 1.5rem;
}

.see-all-link {
    font-weight: 600;
    color: #06c2f6;
    display: inline-block;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.product-card {
    background-color: #1a1d23;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(215, 219, 220, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(6, 194, 246, 0.3);
}

.product-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.product-image-container {
    position: relative;
    padding-top: 100%; /* Makes it square */
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #06c2f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-price {
    font-size: 1rem;
    color: #a0a7ab;
    margin-bottom: 0;
}

.price-sale {
    color: #06c2f6;
    margin-right: 0.5rem;
}

.price-regular {
    text-decoration: line-through;
    color: #68717a;
}

.product-button {
    background-color: #16181c;
    color: white;
    border: 1px solid rgba(215, 219, 220, 0.3);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    border-radius: 4px;
}

.product-button:hover {
    background-color: #06c2f6;
    color: #16181c;
    border-color: #06c2f6;
}

/* Help Section */
.help-section {
    background-color: #06c2f6;
    padding: 4rem 1.5rem;
    color: #16181c;
}

.help-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.help-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #16181c;
}

.help-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.help-link {
    color: #16181c;
    text-decoration: underline;
    font-weight: 600;
}

.help-button {
    display: inline-block;
    background-color: #16181c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.help-button:hover {
    background-color: #2a2f36;
}

.help-image {
    margin-top: 2rem;
    max-width: 300px;
}

/* Media queries for responsive layouts */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-info {
        text-align: left;
        flex: 1;
        margin-bottom: 0;
        margin-right: 2rem;
    }

    .hero-logo {
        margin: 0 0 1.5rem 0;
    }

    .hero-image {
        flex: 1;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-content {
        flex-direction: row;
        text-align: left;
    }

    .help-text {
        flex: 2;
        margin-right: 2rem;
    }

    .help-image {
        flex: 1;
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer */
.footer {
    background-color: #16181c;
    padding: 4rem 1.5rem 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(215, 219, 220, 0.1);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-newsletter {
    margin-bottom: 3rem;
    text-align: center;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-subheading {
    font-size: 1rem;
    color: #a0a7ab;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-field {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(215, 219, 220, 0.3);
    background-color: #1a1d23;
    color: white;
    font-size: 1rem;
}

.newsletter-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    color: #68717a;
}

.newsletter-input:focus + .newsletter-label,
.newsletter-input:not(:placeholder-shown) + .newsletter-label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    background-color: #1a1d23;
    padding: 0 0.5rem;
}

.newsletter-button {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-region-label {
    font-size: 1rem;
    color: #a0a7ab;
    margin-bottom: 0.5rem;
}

.region-button {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: white;
    text-decoration: underline;
}

.payment-label {
    color: #a0a7ab;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.payment-item img {
    height: 24px;
    width: auto;
}

.footer-copyright {
    text-align: center;
    color: #68717a;
    border-top: 1px solid rgba(215, 219, 220, 0.1);
    padding-top: 2rem;
    font-size: 0.875rem;
}

/* Cart Page Styles */
.cart-page {
    padding: 4rem 1.5rem;
}

.cart-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cart-title {
    font-size: 2rem;
    margin-bottom: 0;
    color: white;
}

.continue-shopping {
    color: #06c2f6;
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.cart-empty-icon {
    max-width: 250px;
    margin: 0 auto 2rem;
}

.cart-empty-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.cart-login {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(215, 219, 220, 0.1);
}

.cart-login-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.login-link {
    text-decoration: underline;
}

.cart-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(215, 219, 220, 0.1);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cart-item-variant {
    color: #a0a7ab;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.cart-item-price {
    color: #d7dbdc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(215, 219, 220, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-decrease,
.quantity-increase {
    background-color: #1a1d23;
    border: none;
    color: white;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: white;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: #06c2f6;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(215, 219, 220, 0.1);
}

.cart-notes {
    margin-bottom: 2rem;
}

.cart-note-label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.cart-note-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(215, 219, 220, 0.3);
    background-color: #1a1d23;
    color: white;
    min-height: 100px;
    font-size: 1rem;
    resize: vertical;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.subtotal-label {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: white;
}

.subtotal-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.cart-taxes-note {
    text-align: right;
    font-size: 0.875rem;
    color: #a0a7ab;
    margin-bottom: 2rem;
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background-color: #06c2f6;
    color: #16181c;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: #45d8ff;
}

/* Product Page Styles */
.product-page {
    padding: 4rem 1.5rem;
}

.product-container {
    max-width: 1280px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
}

.gallery-main {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-button {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
}

.thumbnail-button.active {
    border-color: #06c2f6;
}

.thumbnail-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.product-variant-selector {
    margin-bottom: 2rem;
}

.variant-heading {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: white;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-option {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(215, 219, 220, 0.3);
    border-radius: 4px;
    background: none;
    color: #d7dbdc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-option.active {
    background-color: #06c2f6;
    color: #16181c;
    border-color: #06c2f6;
}

.product-pricing {
    margin-bottom: 2rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.product-shipping {
    font-size: 0.875rem;
    color: #a0a7ab;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-button,
.buy-now-button {
    flex: 1;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.add-to-cart-button {
    background-color: #1a1d23;
    color: white;
    border: 1px solid rgba(215, 219, 220, 0.3);
}

.add-to-cart-button:hover {
    background-color: #2a2f36;
}

.buy-now-button {
    background-color: #06c2f6;
    color: #16181c;
    border: none;
}

.buy-now-button:hover {
    background-color: #45d8ff;
}

.product-description {
    border-top: 1px solid rgba(215, 219, 220, 0.1);
    padding-top: 2rem;
}

.description-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.description-text {
    color: #d7dbdc;
    line-height: 1.7;
}

.feature-section {
    margin-top: 2rem;
}

.feature-heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-text {
    color: #d7dbdc;
}

.feature-list {
    margin: 1rem 0;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    color: #d7dbdc;
}

/* Enhanced User Experience, Features Sections, etc. */
.enhanced-experience-section,
.advanced-features-section,
.compatibility-section,
.shipping-section,
.specifications-section,
.faq-section,
.related-products-section {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(215, 219, 220, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #1a1d23;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(215, 219, 220, 0.1);
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card-text {
    color: #d7dbdc;
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-block;
    color: #06c2f6;
    font-weight: 600;
}

.section-description {
    color: #a0a7ab;
    margin-bottom: 2rem;
}

.wallet-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

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

.shipping-text {
    color: #d7dbdc;
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.specs-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    border-bottom: 1px solid rgba(215, 219, 220, 0.1);
    padding-bottom: 0.5rem;
}

.specs-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.specs-label {
    font-weight: 600;
    color: #a0a7ab;
}

.specs-value {
    text-align: right;
    color: white;
}

.compatibility-items,
.box-content-items {
    list-style-type: none;
    margin: 0;
}

.compatibility-items li,
.box-content-items li {
    margin-bottom: 0.5rem;
    color: #d7dbdc;
    position: relative;
    padding-left: 1.5rem;
}

.compatibility-items li:before,
.box-content-items li:before {
    content: "â€¢";
    color: #06c2f6;
    position: absolute;
    left: 0;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(215, 219, 220, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: #d7dbdc;
}

/* Policy Page Styles */
.policy-page {
    padding: 4rem 1.5rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.policy-last-updated {
    color: #a0a7ab;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.subsection-title {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: white;
}

.policy-section p {
    color: #d7dbdc;
    line-height: 1.7;
}

.policy-section ul {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    color: #d7dbdc;
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
    color: #d7dbdc;
    line-height: 1.7;
}

/* Media Queries */
@media (min-width: 768px) {
    .product-container {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .product-actions {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
</pre></body></html>