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

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
}

.container {
    width: 480px;
    max-width: 100%;
    border: 1px solid black;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    border-bottom: 1px solid black;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    min-height: 47px;
}

.logo-space {
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image {
    height: 31px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Main content */
.main-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 65px);
}

/* Sidebar */
.sidebar {
    width: 100%;
    border-bottom: 1px solid black;
    padding: 8px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.categories-section {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    flex: 1;
}

.category {
    border: 1px solid black;
    padding: 6px 8px;
    background-color: white;
    cursor: pointer;
    font-size: 10px;
    text-align: center;
    min-width: 70px;
    white-space: nowrap;
}

.category:hover {
    background-color: #f0f0f0;
}

/* Cart button */
.cart-button {
    position: relative;
    border: 1px solid black;
    padding: 6px 8px;
    background-color: white;
    cursor: pointer;
    font-size: 10px;
    text-align: center;
    min-width: 50px;
    margin-left: 8px;
}

.cart-button:hover {
    background-color: #f0f0f0;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
}

.cart-count-badge.hidden {
    display: none;
}

/* Cart dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border: 1px solid black;
    background-color: white;
    z-index: 1000;
    display: none;
}

.cart-dropdown.show {
    display: block;
}

.cart-dropdown-content {
    padding: 10px;
}

.cart-items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
    font-size: 9px;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-icon {
    width: 12px;
    height: 12px;
    border: 1px solid black;
    background-color: #f8f8f8;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-weight: bold;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-price {
    color: #666;
}

.delete-item {
    width: 12px;
    height: 12px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

.delete-item:hover {
    background-color: #f0f0f0;
}

.cart-summary {
    font-size: 10px;
    margin-bottom: 8px;
    padding-top: 8px;
    border-top: 1px solid #ddd;
}

.cart-total-line {
    font-weight: bold;
    font-size: 11px;
}

.shipping-info {
    margin-top: 6px;
    font-size: 9px;
}

.free-shipping-message {
    color: #28a745;
    font-weight: bold;
}

.shipping-progress {
    color: #007bff;
}

.shipping-threshold {
    color: #6c757d;
}

.shipping-calculator {
    margin-top: 6px;
}

.shipping-input-section {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

#zip-code-input {
    flex: 1;
    padding: 4px 6px;
    font-size: 9px;
    border: 1px inset #ddd;
    font-family: inherit;
    background: white;
}

.calculate-shipping-btn {
    padding: 4px 8px;
    font-size: 9px;
    background: #f0f0f0;
    border: 1px outset #ccc;
    cursor: pointer;
    font-family: inherit;
}

.calculate-shipping-btn:hover {
    background: #e0e0e0;
}

.calculate-shipping-btn:active {
    border: 1px inset #ccc;
}

.shipping-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 9px;
}

.shipping-type-selector label {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.shipping-type-selector input[type="radio"] {
    margin: 0;
}

#country-select {
    flex: 1;
    padding: 4px 6px;
    font-size: 9px;
    border: 1px inset #ddd;
    font-family: inherit;
    background: white;
}

.shipping-options {
    font-size: 9px;
    margin-top: 4px;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #eee;
}

.shipping-option:last-child {
    border-bottom: none;
}

.shipping-option-name {
    font-weight: bold;
}

.shipping-option-cost {
    color: #007bff;
}

.shipping-option-transit {
    font-size: 8px;
    color: #6c757d;
}

.dropdown-checkout-button {
    width: 100%;
    padding: 6px 8px;
    font-size: 10px;
    font-weight: bold;
    border: 2px outset #333;
    background-color: #333;
    color: white;
    cursor: pointer;
    text-align: center;
}

.dropdown-checkout-button:active {
    border: 2px inset #333;
}

.dropdown-checkout-button:hover {
    background-color: #555;
}

.dropdown-checkout-button:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* Filter Section */
.filter-section {
    width: 100%;
    border-bottom: 1px solid black;
    background-color: #f9f9f9;
    padding: 8px;
}

.filter-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 10px;
}

/* Mobile: keep desktop look */
@media (max-width: 460px) {
    .filter-controls {
        gap: 6px;
    }
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 3px;
}

.filter-group label {
    font-weight: bold;
    white-space: nowrap;
}

.filter-group select {
    padding: 2px 4px;
    font-size: 9px;
    border: 1px solid black;
    background-color: white;
    min-width: 60px;
}

.checkbox-group {
    gap: 2px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
}

.clear-filters-btn {
    padding: 2px 6px;
    font-size: 9px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
}

.clear-filters-btn:hover {
    background-color: #f0f0f0;
}

.clear-filters-btn:active {
    background-color: #e0e0e0;
}

/* Product grid */
.product-grid {
    flex: 1;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-content: start;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 11px;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.product-card {
    border: 1px solid black;
    padding: 8px;
    background-color: white;
    width: 100%;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid black;
    background-color: #f8f8f8;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 9px;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-image:hover .image-nav {
    opacity: 1;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-nav-left {
    left: 5px;
}

.image-nav-right {
    right: 5px;
}

.nav-button {
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 10px;
    border: 2px outset #ddd;
    background-color: #e8e8e8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-button:active {
    border: 2px inset #ddd;
}

.nav-button:hover {
    background-color: #d8d8d8;
}

/* Modal overlay for enlarged images */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
}

.modal-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
}

.modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    z-index: 2001;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-close:hover {
    background-color: #333;
}

/* About page styles */
.about-content {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.about-section {
    width: 100%;
    max-width: 400px;
}

.about-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid black;
    padding-bottom: 8px;
}

.about-paragraph {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
    color: black;
}

.about-video {
    display: flex;
    justify-content: center;
    border: 1px solid black;
    background-color: #f8f8f8;
    padding: 10px;
}

.vertical-video {
    width: 400px;
    height: 500px;
    max-width: 100%;
    border: 1px solid black;
    background-color: black;
    margin: 20px auto;
    display: block;
}

.product-title {
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 4px;
    min-height: 20px;
    line-height: 1.2;
}

.product-description {
    font-size: 8px;
    margin-bottom: 4px;
    color: #666;
    line-height: 1.1;
    min-height: 16px;
}

.product-price {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 6px;
}

.purchase-button {
    width: 100%;
    padding: 4px 6px;
    font-size: 9px;
    border: 2px outset #ddd;
    background-color: #e8e8e8;
    cursor: pointer;
    margin-bottom: 6px;
}

.purchase-button:active {
    border: 2px inset #ddd;
}

.purchase-button:hover {
    background-color: #d8d8d8;
}

.barcode-space {
    height: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: #666;
    padding: 2px;
}

.barcode-space .barcode-image {
    max-width: 100%;
    height: auto;
    max-height: 20px;
    object-fit: contain;
}

/* Product Page Styles */
.product-page-content {
    padding: 8px;
    width: 100%;
}

.product-page * {
    border-radius: 0 !important;
}

.loading-message {
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

.error-message {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
}

.error-message h2 {
    font-size: 14px;
    margin-bottom: 8px;
}

.error-message p {
    font-size: 11px;
    margin-bottom: 12px;
}

.error-message button {
    padding: 6px 12px;
    font-size: 10px;
    border: 2px outset #ddd;
    background-color: #e8e8e8;
    cursor: pointer;
}

.back-button {
    font-size: 10px;
    padding: 4px 8px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
    margin-bottom: 12px;
}

.back-button:hover {
    background-color: #f0f0f0;
}

.product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
    align-items: stretch;
}

.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.media-card {
    border: 1px solid black;
    background-color: white;
    padding: 6px;
}

.main-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Makes it square (1:1 aspect ratio) */
    cursor: pointer;
    overflow: hidden;
    background-color: #fdfdfd;
}

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

.image-thumbnails {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 4px;
    background-color: #f7f7f7;
    justify-content: flex-start;
}

.thumbnail {
    width: 36px;
    height: 36px;
    border: 1px solid #bbb;
    cursor: pointer;
    object-fit: cover;
    image-rendering: pixelated;
    flex-shrink: 0;
}

.image-thumbnails .gif-thumbnail {
    border-style: dashed;
}

.thumbnail.placeholder {
    width: 100%;
    min-height: 36px;
    border: 1px dashed #bbb;
    background-color: #f5f5f5;
    font-size: 9px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.thumbnail.placeholder:hover {
    border-color: #bbb;
}

.thumbnail.active {
    border: 2px solid black;
}

.thumbnail:hover {
    border-color: #666;
}

.gif-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #fff;
}

.gif-header {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gif-frame {
    border: 1px solid black;
    padding: 4px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gif {
    width: 100%;
    height: 200px;
    object-fit: cover;
    image-rendering: pixelated;
    background-color: #eaeaea;
}

.gif-caption {
    font-size: 8px;
    color: #444;
    text-align: center;
}

.gif-placeholder {
    width: 100%;
    min-height: 200px;
    border: 1px dashed #bbb;
    background-color: #f7f7f7;
    font-size: 9px;
    color: #555;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
}

.product-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.info-card {
    border: 1px solid black;
    background-color: white;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card h3 {
    font-size: 9px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-header {
    gap: 6px;
    grid-column: 1 / -1;
}

.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    font-size: 9px;
}

.product-meta-grid span {
    font-weight: bold;
    text-transform: uppercase;
}

.product-range-note {
    font-size: 9px;
    color: #333;
    background-color: #f4f4f4;
    border: 1px dashed #bbb;
    padding: 4px 6px;
}

.color-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.color-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border: 1px solid #c8c8c8;
    background-color: #fafafa;
    padding: 4px 6px;
    font-size: 9px;
    cursor: pointer;
}

.color-option input {
    margin-right: 6px;
}

.color-option .color-name {
    flex: 1;
}

.color-option .color-price {
    font-weight: bold;
}

.color-option.selected {
    border-color: black;
    background-color: #e6e6e6;
}

.inline-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-section {
    gap: 6px;
}

.price-breakdown {
    font-size: 9px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.premium-options,
.customization-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.customization-section.disabled {
    border-style: dashed;
    background-color: #f7f7f7;
    color: #555;
}

.customization-unavailable {
    font-size: 9px;
    line-height: 1.4;
}

.upgrade-option,
.engraving-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 4px 6px;
    border: 1px dashed #c8c8c8;
    background-color: #f8f8f8;
    font-size: 9px;
}

.upgrade-description {
    font-size: 8px;
    color: #555;
    margin-top: 2px;
    flex-basis: 100%;
}

.engraving-input input {
    width: 100%;
    padding: 4px 6px;
    font-size: 9px;
    border: 1px solid #ccc;
    background-color: white;
}

.engraving-input small {
    font-size: 8px;
    color: #666;
}

.product-description-section {
    grid-column: 1 / -1;
}

.product-description-section .short-description {
    font-size: 10px;
    font-weight: bold;
}

.purchase-card {
    grid-column: 1 / -1;
}

.purchase-card .purchase-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.purchase-note {
    font-size: 8px;
    color: #444;
    text-align: center;
}

/* Mobile: keep desktop layout */
@media (max-width: 520px) {
    /* Keep desktop look - no changes */
}

.product-page-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.product-page-price {
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.product-barcode {
    height: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.barcode-image {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.product-description-section h3,
.specifications-section h3 {
    font-size: 11px;
    font-weight: bold;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.short-description,
.long-description {
    font-size: 10px;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.long-description {
    color: #666;
}

.specs-grid {
    display: grid;
    gap: 4px;
}

.spec-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 9px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 2px;
}

.spec-label {
    font-weight: bold;
}

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

.purchase-section {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-to-cart-button {
    width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: bold;
    border: 2px outset #ddd;
    background-color: #e8e8e8;
    cursor: pointer;
}

.add-to-cart-button:active {
    border: 2px inset #ddd;
}

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

.stock-status {
    font-size: 9px;
    padding: 4px 6px;
    text-align: center;
    border: 1px solid;
}

.stock-status.in-stock {
    background-color: #e8f5e8;
    border-color: #4CAF50;
    color: #2e7d32;
}

.stock-status.out-of-stock {
    background-color: #ffeaea;
    border-color: #f44336;
    color: #c62828;
}

/* Clickable product title styles */
.clickable-title {
    cursor: pointer;
    text-decoration: underline;
}

.clickable-title:hover {
    color: #666;
}

/* Sale and Pricing Styles */
.sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #cc0000;
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 0;
    z-index: 10;
    text-transform: uppercase;
}

.product-pricing {
    margin-bottom: 6px;
}

.sale-price {
    font-size: 11px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 2px;
}

.original-price {
    font-size: 9px;
    color: #666;
    text-decoration: line-through;
}

.product-price {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 6px;
}

/* Product Page Sale Styles */
.product-sale-info {
    margin-bottom: 12px;
}

.sale-badge-large {
    background-color: #cc0000;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-page-sale-price {
    font-size: 18px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 4px;
}

.product-page-original-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.product-page-price {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-bottom: 12px;
}

/* Checkout Page Styles */
.checkout-content {
    padding: 15px;
    flex: 1;
    max-width: 100%;
}

.checkout-header {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.checkout-header h1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.checkout-header p {
    font-size: 11px;
    color: #666;
}

.checkout-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-section {
    border: 1px solid black;
    padding: 15px;
    background-color: #f9f9f9;
}

.checkout-section h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Order Summary */
.order-items {
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 11px;
    margin-bottom: 3px;
}

.order-item-details .price {
    font-size: 12px;
    font-weight: bold;
}

.order-totals {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 11px;
}

.final-total {
    font-weight: bold;
    font-size: 13px;
    border-top: 1px solid #ddd;
    padding-top: 5px;
    margin-top: 5px;
}

/* Shipping Information */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-type-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    background-color: white;
}

.shipping-option:hover {
    background-color: #f5f5f5;
}

.shipping-option input[type="radio"] {
    margin: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
}

.option-content strong {
    font-size: 11px;
    margin-bottom: 2px;
}

.option-content small {
    font-size: 9px;
    color: #666;
}

.shipping-input-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shipping-input-section label {
    font-size: 11px;
    font-weight: bold;
}

.shipping-input-section input,
.shipping-input-section select {
    padding: 6px;
    border: 1px solid black;
    font-size: 11px;
    background-color: white;
}

.shipping-rates {
    margin-top: 10px;
}

.shipping-notice {
    font-size: 10px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.shipping-rate-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    cursor: pointer;
    background-color: white;
}

.shipping-rate-option:hover {
    background-color: #f5f5f5;
}

.shipping-rate-option input[type="radio"] {
    margin: 0;
}

.option-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-name {
    font-size: 11px;
    font-weight: bold;
}

.option-cost {
    font-size: 11px;
    font-weight: bold;
    color: #007bff;
}

.option-transit {
    font-size: 9px;
    color: #666;
    margin-top: 2px;
}

.free-shipping-notice {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    font-size: 11px;
    text-align: center;
    font-weight: bold;
}

/* Action Buttons */
.checkout-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid black;
}

.btn-primary,
.btn-secondary {
    padding: 10px 15px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid black;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.btn-primary {
    background-color: black;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #333;
}

.btn-primary:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: white;
    color: black;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Empty Checkout */
.empty-checkout {
    text-align: center;
    padding: 40px 20px;
}

.empty-checkout h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.empty-checkout p {
    font-size: 11px;
    color: #666;
    margin-bottom: 20px;
}

.empty-checkout .btn-primary {
    max-width: 200px;
    margin: 0 auto;
}

/* Footer */
.footer {
    border-top: 1px solid #ddd;
    padding: 8px 10px;
    margin-top: auto;
    background-color: #f9f9f9;
    font-size: 9px;
    color: #888;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.copyright {
    font-size: 9px;
}

.contact {
    font-size: 9px;
}

.contact a {
    color: #666;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
    color: #333;
}

.policy-link {
    font-size: 9px;
}

.policy-link a {
    color: #666;
    text-decoration: none;
}

.policy-link a:hover {
    text-decoration: underline;
    color: #333;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Error styles */
.error {
    color: #dc3545;
    font-size: 10px;
    margin: 5px 0;
}

/* Policy page styles */
.policy-content {
    padding: 15px;
    background-color: white;
    flex-grow: 1;
    overflow-y: auto;
}

.policy-section {
    max-width: 100%;
}

.policy-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.policy-group {
    margin-bottom: 20px;
}

.policy-group h2 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.policy-group h3 {
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #555;
}

.policy-group p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.policy-group ul {
    font-size: 11px;
    line-height: 1.4;
    margin: 8px 0;
    padding-left: 20px;
}

.policy-group li {
    margin-bottom: 3px;
}

.no-returns-notice {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    margin: 10px 0;
    font-size: 12px;
    color: #d32f2f;
}

/* Lighters page styles */
.lighters-content {
    padding: 15px;
    background-color: white;
    flex-grow: 1;
    overflow-y: auto;
}

.lighters-section {
    max-width: 100%;
}

.lighters-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.content-group {
    margin-bottom: 20px;
}

.content-group h2 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.content-group h3 {
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #555;
}

.content-group p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.content-group ul {
    font-size: 11px;
    line-height: 1.4;
    margin: 8px 0;
    padding-left: 20px;
}

.content-group li {
    margin-bottom: 3px;
}

.content-group a {
    color: #333;
    text-decoration: none;
}

.content-group a:hover {
    text-decoration: underline;
}

/* Success Page Styles */
.success-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 400px;
}

.success-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.success-content h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.success-message {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.order-info {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.order-info h3 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #333;
}

.order-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-info li {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.order-info li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.order-details {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 11px;
}

.order-reference {
    color: #666;
    font-family: monospace;
}

.success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews Section Styles */
.reviews-section {
    margin-top: 20px;
    border-top: 1px solid black;
    padding-top: 15px;
}

.reviews-header {
    margin-bottom: 15px;
}

.reviews-header h2 {
    font-size: 14px;
    margin-bottom: 8px;
    color: black;
    font-weight: bold;
}

.rating-summary {
    border: 1px solid black;
    padding: 8px;
    background-color: #f0f0f0;
}

.average-rating {
    font-size: 11px;
    line-height: 1.2;
}

.rating-number {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.stars {
    color: black;
    font-size: 11px;
}

.review-count {
    font-size: 11px;
    color: black;
}

.reviews-tabs {
    border-bottom: 1px solid black;
    margin-bottom: 15px;
}

.tab-button {
    background: white;
    border: 1px solid black;
    border-bottom: none;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    margin-right: 2px;
}

.tab-button:hover {
    background-color: #f0f0f0;
}

.tab-button.active {
    background-color: #e0e0e0;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.reviews-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid black;
    background-color: white;
}

.review-item {
    padding: 8px;
    border-bottom: 1px solid #ccc;
    background-color: white;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    margin-bottom: 5px;
    font-size: 10px;
}

.reviewer-name {
    font-weight: bold;
    font-size: 11px;
    color: black;
}

.review-date {
    font-size: 10px;
    color: #666;
    margin-left: 8px;
}

.verified-badge {
    font-size: 9px;
    background-color: black;
    color: white;
    padding: 1px 3px;
    margin-left: 8px;
}

.review-source {
    font-size: 9px;
    background-color: #666;
    color: white;
    padding: 1px 3px;
    margin-left: 4px;
}

.review-rating {
    color: black;
    font-size: 11px;
    float: right;
}

.review-title {
    font-size: 11px;
    font-weight: bold;
    margin: 3px 0;
    color: black;
}

.review-text {
    font-size: 11px;
    line-height: 1.2;
    color: black;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 11px;
    border: 1px solid black;
    background-color: #f0f0f0;
}

/* Write Review Form */
.write-review-form {
    max-width: 400px;
    border: 1px solid black;
    padding: 10px;
    background-color: #f8f8f8;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    font-weight: bold;
    color: black;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 4px;
    border: 1px solid black;
    font-size: 11px;
    box-sizing: border-box;
    background-color: white;
}

.form-group textarea {
    resize: none;
    min-height: 60px;
}

.star-rating {
    margin-bottom: 8px;
}

.star {
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    margin-right: 2px;
}

.star:hover,
.star.active {
    color: black;
}

.submit-review-btn {
    background: white;
    border: 2px outset #ccc;
    padding: 6px 12px;
    font-size: 11px;
    cursor: pointer;
    margin-top: 8px;
}

.submit-review-btn:hover {
    background: #f0f0f0;
}

/* Trustpilot Section */
.trustpilot-widget {
    text-align: center;
    padding: 20px;
    border: 1px solid black;
    background-color: #f0f0f0;
}

.trustpilot-widget p {
    font-size: 11px;
    margin-bottom: 15px;
    color: black;
}

.trustpilot-reviews-widget {
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border: 1px solid black;
}

.trustpilot-placeholder {
    background-color: white;
    border: 1px solid black;
    padding: 15px;
}

.trustpilot-link {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid black;
}

.trustpilot-link:hover {
    background-color: #333;
}

/* Review Page Styles */
.review-page-container {
    padding: 20px;
    max-width: 500px;
}

.review-page-header {
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid black;
    padding: 15px;
    background-color: #f0f0f0;
}

.review-page-header h1 {
    font-size: 16px;
    margin-bottom: 8px;
    color: black;
}

.review-page-header p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.review-options {
    margin-bottom: 25px;
}

.review-option {
    border: 1px solid black;
    padding: 15px;
    margin-bottom: 10px;
    background-color: white;
}

.review-option h3 {
    font-size: 13px;
    margin-bottom: 5px;
    color: black;
}

.review-option p {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.3;
}

.trustpilot-review-btn {
    display: inline-block;
    background-color: #00b67a;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #00b67a;
}

.trustpilot-review-btn:hover {
    background-color: #00a064;
}

.website-review-btn {
    background: white;
    border: 2px outset #ccc;
    padding: 8px 15px;
    font-size: 11px;
    cursor: pointer;
}

.website-review-btn:hover {
    background: #f0f0f0;
}

.review-form-container {
    border: 1px solid black;
    padding: 15px;
    background-color: #f8f8f8;
}

.product-selection {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.product-selection h3 {
    font-size: 13px;
    margin-bottom: 8px;
    color: black;
}

.product-selection select {
    width: 100%;
    padding: 6px;
    border: 1px solid black;
    font-size: 11px;
    background-color: white;
}

.product-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: white;
    margin-bottom: 15px;
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.product-details h4 {
    font-size: 12px;
    margin-bottom: 3px;
    color: black;
}

.product-details p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.review-form-section h3 {
    font-size: 13px;
    margin-bottom: 15px;
    color: black;
}

.review-success {
    text-align: center;
    padding: 30px;
    border: 1px solid black;
    background-color: #f0f0f0;
}

.review-success h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

.review-success p {
    font-size: 11px;
    color: #666;
    margin-bottom: 20px;
}

.continue-shopping-btn {
    background: white;
    border: 2px outset #ccc;
    padding: 8px 15px;
    font-size: 11px;
    cursor: pointer;
}

.continue-shopping-btn:hover {
    background: #f0f0f0;
}

.form-group small {
    font-size: 10px;
    color: #666;
    display: block;
    margin-top: 3px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

/* Review Images */
.review-images {
    margin-top: 6px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.review-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: border-color 0.2s;
}

.review-image:hover {
    border-color: black;
}

/* Product Variant Selection & Customization Styles */
.product-options {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.option-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.option-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.option-label {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

/* Color Variant Selection */
.color-variants {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.color-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: white;
}

.color-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.color-option.selected {
    border-color: #007bff;
    background: #e7f3ff;
}

.color-option input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.color-option .color-label {
    font-weight: 500;
    color: #333;
}

.color-option .color-price {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

/* Premium Options */
.premium-options {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.premium-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.premium-option:hover {
    background: rgba(255, 193, 7, 0.1);
}

.premium-option:last-child {
    margin-bottom: 0;
}

.premium-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.premium-option .option-text {
    font-weight: 500;
    color: #333;
}

.premium-option .option-price {
    color: #28a745;
    font-weight: 600;
    margin-left: 5px;
}

/* Customization Options */
.customization-options {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.customization-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.customization-option:hover {
    background: rgba(40, 167, 69, 0.1);
}

.customization-option:last-child {
    margin-bottom: 0;
}

.customization-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.customization-option .option-text {
    font-weight: 500;
    color: #333;
}

.customization-option .option-price {
    color: #28a745;
    font-weight: 600;
    margin-left: 5px;
}

/* Disclaimer Styling */
.product-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 14px;
    color: #856404;
    display: none;
}

.product-disclaimer.visible {
    display: block;
}

.product-disclaimer strong {
    color: #533f03;
}

/* Price Display Updates */
.total-price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.base-price {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-breakdown {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Image Navigation Enhancements */
.main-image-container {
    position: relative;
    display: inline-block;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.image-nav:hover {
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

.image-nav.prev {
    left: 10px;
}

.image-nav.next {
    right: 10px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    border-color: #007bff;
}

.thumbnail.active {
    opacity: 1;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* GIF Toggle Button */
.gif-toggle {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.gif-toggle:hover {
    background: #138496;
    transform: translateY(-1px);
}

.gif-toggle.active {
    background: #28a745;
}

/* Add to Cart Button Enhancement */
.add-to-cart-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.add-to-cart-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Sales Disabled Notice */
.sales-disabled {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    margin: 20px 0;
}

/* Responsive Design - Keep desktop look on mobile */
@media (max-width: 768px) {
    /* Keep everything the same as desktop */
    .container {
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 480px) {
    /* Keep everything the same as desktop */
    .container {
        border-left: none;
        border-right: none;
    }
    
    /* Prevent iOS auto-zoom on input focus - but NOT for filter controls */
    .engraving-input input,
    .engraving-input textarea,
    #zip-code-input {
        font-size: 16px !important;
    }
    
    /* Adjust labels proportionally for form inputs only */
    .engraving-label,
    .option-label {
        font-size: 16px;
    }
    
    .engraving-input small {
        font-size: 14px;
    }
    
    /* Keep filter controls small */
    .filter-group select,
    .filter-group label,
    .filter-controls {
        font-size: 10px !important;
    }
    
    .filter-group select {
        padding: 2px 4px;
    }
}

/* GIF Gallery Styles */
.gif-gallery-section {
    padding: 15px;
    border-bottom: 1px solid black;
}

.gif-gallery-section h2 {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.variant-selector {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    font-size: 11px;
}

.variant-btn {
    padding: 6px 12px;
    font-size: 10px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    border-radius: 0;
    min-width: 60px;
}

.variant-btn:hover {
    background-color: #f0f0f0;
}

.variant-btn.active {
    background-color: black;
    color: white;
    border-color: black;
}

.gif-gallery-container {
    width: 100%;
    overflow-x: auto;
    background-color: white;
    padding: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gif-gallery-container::-webkit-scrollbar {
    display: none;
}

.gif-gallery {
    display: flex;
    gap: 15px;
    min-width: max-content;
    align-items: flex-start;
}

.gif-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 220px;
    position: relative;
}

.gif-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: -15px;
    position: relative;
    z-index: 1;
}

.gif-item-text {
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 17px 6px 6px 6px;
    border-radius: 0 0 4px 4px;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.gif-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    cursor: pointer;
}

.gif-item-text .product-name {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 9px;
}

.gif-item-text .product-price {
    color: #666;
    font-size: 9px;
    font-weight: bold;
}

/* Products Section */
.products-section {
    padding: 15px;
    border-bottom: 1px solid black;
}

.filters-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
    background-color: #fafafa;
    border: 1px solid #ddd;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
}

.filter-group label {
    font-weight: bold;
    white-space: nowrap;
}

.filter-group select {
    padding: 2px 4px;
    font-size: 9px;
    border: 1px solid black;
    background-color: white;
    min-width: 60px;
}

.clear-filters-btn {
    padding: 2px 6px;
    font-size: 9px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
}

.clear-filters-btn:hover {
    background-color: #f0f0f0;
}

/* Duplicate .product-grid removed - see line ~432 for main definition */

.product-info h3 {
    font-size: 11px;
    margin-bottom: 4px;
    font-weight: bold;
}

.product-description {
    font-size: 9px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-variants {
    margin-bottom: 6px;
}

.variant-option {
    font-size: 9px;
    color: #333;
    margin-bottom: 2px;
}

.view-product-btn {
    padding: 4px 8px;
    font-size: 9px;
    border: 1px solid black;
    background-color: #f0f0f0;
    cursor: pointer;
    width: 100%;
}

.view-product-btn:hover {
    background-color: #e0e0e0;
}

