/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #242323;
    background-color: white;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.gc-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gc-divider {
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    margin: 1rem 0;
    height: 4px;
}

/* Typography */
h1 {
    font-size: 1.875rem;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #242323;
}

h2 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #242323;
}

.gc-subtitle {
    text-align: center;
    color: #727272;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

/* Gift Card Section */
.gc-gift-card-section {
    margin-bottom: 3rem;
}

.gc-gift-card-container {
    background-color: #ebebeb;
    padding: 1.5rem;
    border-radius: 0.125rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gc-gift-card-container {
        flex-direction: row;
    }
}

.gc-gift-card-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gc-gift-card-image {
    width: 280px;
    height: 327px;
    object-fit: contain;
}

.gc-gift-card-content {
    flex: 1;
}

.gc-gift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.gc-gift-card-title {
    font-weight: 500;
    color: #242323;
}

.gc-gift-card-price {
    color: #242323;
}

.gc-gift-card-description {
    color: #727272;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.gc-gift-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gc-contact-button {
    background-color: #242323;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.gc-contact-button:hover {
    background-color: rgba(36, 35, 35, 0.9);
}

.gc-validity-period {
    color: #727272;
    font-size: 0.875rem;
}

/* Gift Packaging Section */
.gc-gift-packaging-section {
    background-color: #ebebeb;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gc-gift-packaging-section {
        flex-direction: row;
    }
}

.gc-gift-packaging-image {
    width: 280px;
    height: 357px;
    object-fit: contain;
}

.gc-gift-packaging-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .gc-gift-packaging-content {
        text-align: right;
    }
}

.gc-gift-packaging-title {
    font-size: 1.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #242323;
}

.gc-gift-packaging-description {
    color: #727272;
}