main.product-page {
    padding-top: 80px;
    padding-bottom: 100px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 40px;
    margin-bottom: 30px;
}
.breadcrumbs a {
    color: var(--text-dark);
}
.breadcrumbs a:hover {
    color: var(--text-light);
}
.breadcrumbs span {
    color: var(--text-light);
    font-weight: 500;
}
.breadcrumbs svg {
    width: 18px;
    height: 18px;
    color: var(--text-dark);
}
.product-layout {
    padding-top: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.product-content {
    min-width: 0;
}
.product-gallery img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 50px;
}
.tab-navigation {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}
.tab-link {
    padding: 15px 5px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.tab-link:hover {
    color: var(--text-light);
}
.tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.prose {
    line-height: 1.8;
    color: var(--text-dark);
}
.prose h1, .prose h2, .prose h3 {
    color: var(--text-light);
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}
.prose ul {
    list-style-position: inside;
    padding-left: 1.2em;
}
.prose li {
    margin-bottom: 0.8em;
}
.prose a {
    color: var(--primary-light);
    text-decoration: underline;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}
.sidebar .sidebar-sticky {
    position: sticky;
    top: 120px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}
.purchase-section {
    margin-bottom: 25px;
}
.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}
.license-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.license-card {
    display: flex;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
}
.license-card:hover {
    border-color: var(--primary-light);
}
.license-card input[type="radio"] { display: none; }
.license-card:has(input:checked) {
    border-color: var(--primary);
    background-color: rgba(138, 99, 210, 0.1);
}
.license-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.license-name { font-weight: 600; }
.license-price { font-weight: 700; color: var(--text-light); }
#domain-input-wrapper {
    margin-bottom: 25px;
}
#domain-input-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
#domain-input {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
}
#domain-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 99, 210, 0.2);
}
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.addon-card {
    display: flex;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.addon-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}
.addon-card input[type="checkbox"] { display: none; }
.addon-card:has(input:checked) {
    border-color: var(--primary);
    background-color: rgba(138, 99, 210, 0.1);
}
.addon-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.addon-name { font-weight: 500; }
.addon-price { color: var(--text-dark); }
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    margin-bottom: 20px;
}
.total-price span {
    font-size: 1.1rem;
    font-weight: 600;
}
.total-price strong {
    font-size: 1.5rem;
    color: var(--primary-light);
}
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.product-actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}
.btn.disabled {
    background-color: var(--border-color);
    border-color: var(--border-color);
    color: var(--text-dark) !important;
    pointer-events: none;
    cursor: not-allowed;
}
.price-box {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.price-box.free { background-color: rgba(52, 211, 153, 0.1); color: #34D399; }
.price-box.soon { background-color: rgba(251, 191, 36, 0.1); color: #FBBF24; }
.free-product p, .coming-soon p { text-align: center; color: var(--text-dark); margin-bottom: 20px; }
.free-product .btn, .coming-soon .btn { width: 100%; padding: 14px; font-size: 1.1rem; }
.comments-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}
.comment-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.comment-author { font-weight: 600; color: var(--text-light); }
.comment-date { font-size: 0.85rem; color: var(--text-dark); }
.comment-body { color: var(--text-dark); line-height: 1.7; }
.comment-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 20px; }
.comment-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    margin-bottom: 15px;
    resize: vertical;
}
.comment-notice {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-light);
    text-align: center;
}
.comment-notice.highlight {
    background-color: rgba(138, 99, 210, 0.1);
    border: 1px solid var(--primary);
}
@media (max-width: 992px) {
    .product-layout { grid-template-columns: 1fr; }
    .sidebar .sidebar-sticky { position: static; }
}
.addon-name-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.info-tooltip svg {
    color: var(--text-dark);
    cursor: help;
    transition: color 0.2s ease;
}
.info-tooltip:hover svg {
    color: var(--primary-light);
}
.tooltip-content {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-dark);
    color: var(--text-dark);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 280px;
    font-size: 0.9rem;
    line-height: 1.6;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-weight: 400;
}
.tooltip-content::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--bg-dark) transparent;
}
.info-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}